From 5c93dedf4538426982f8832fa9103f09a78a01ad Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Wed, 4 Jan 2023 21:52:48 -0800 Subject: Add backtick to SHELL_CHARS. --- options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'options.c') diff --git a/options.c b/options.c index ded0e7a3..c9c82527 100644 --- a/options.c +++ b/options.c @@ -2518,7 +2518,7 @@ static char SPLIT_ARG_WHEN_OLD[1]; **/ char *safe_arg(const char *opt, const char *arg) { -#define SHELL_CHARS "!#$&;|<>(){}\"' \t\\" +#define SHELL_CHARS "!#$&;|<>(){}\"'` \t\\" #define WILD_CHARS "*?[]" /* We don't allow remote brace expansion */ BOOL is_filename_arg = !opt; char *escapes = is_filename_arg ? SHELL_CHARS : WILD_CHARS SHELL_CHARS; -- cgit v1.2.1