diff options
Diffstat (limited to 'Src/zsh.h')
-rw-r--r-- | Src/zsh.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Src/zsh.h b/Src/zsh.h index 1b1175cb2..77281aa75 100644 --- a/Src/zsh.h +++ b/Src/zsh.h @@ -218,7 +218,11 @@ enum { * Single quotes, but the default is not to quote unless necessary. * This is only useful as an argument to quotestring(). */ - QT_SINGLE_OPTIONAL + QT_SINGLE_OPTIONAL, + /* + * As QT_BACKSLASH, but a NULL string is shown as ''. + */ + QT_BACKSLASH_SHOWNULL }; #define QT_IS_SINGLE(x) ((x) == QT_SINGLE || (x) == QT_SINGLE_OPTIONAL) |