diff options
Diffstat (limited to 'Src')
-rw-r--r-- | Src/Zle/compctl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Src/Zle/compctl.c b/Src/Zle/compctl.c index 4cd9d9c65..b76cb64e7 100644 --- a/Src/Zle/compctl.c +++ b/Src/Zle/compctl.c @@ -1741,7 +1741,8 @@ static int addwhat; * This uses the instring variable exported from zle_tricky.c. */ -#define quotename(s, e) quotestring(s, e, instring) +#define quotename(s, e) \ +quotestring(s, e, instring == QT_NONE ? QT_BACKSLASH : instring) /* Hook functions */ |