René Scharfe <l....@web.de> writes:

> diff --git a/parse-options.c b/parse-options.c
> index 7db84227ab..3b874a83a0 100644
> --- a/parse-options.c
> +++ b/parse-options.c
> @@ -660,7 +660,8 @@ int parse_options(int argc, const char **argv, const char 
> *prefix,
>  static int usage_argh(const struct option *opts, FILE *outfile)
>  {
>       const char *s;
> -     int literal = (opts->flags & PARSE_OPT_LITERAL_ARGHELP) || !opts->argh;
> +     int literal = (opts->flags & PARSE_OPT_LITERAL_ARGHELP) ||
> +             !opts->argh || !!strpbrk(opts->argh, "()<>[]|");

Good that you did not include '-' in there, as that would have
broken a multi-word-placeholder.

All other changes in this patch looked sensible, too.

Reply via email to