Christian Couder [off-list ref] writes:
+#define TRAILER_ARG_STRING "$ARG"
No need to support users who may want to use a string that happens
to match this substring literally as part of the command line?
quoted hunk
struct trailer_item {
struct trailer_item *previous;
struct trailer_item *next;@@ -56,6 +60,13 @@ static inline int contains_only_spaces(const char *str)
return !*s;
}
+static inline void strbuf_replace(struct strbuf *sb, const char *a, const char *b)
Same comment about "inline" for an earlier patch applies.