diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2010-05-27 18:57:34 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2010-05-27 18:57:34 +0000 |
commit | 147cedfb6fa2973f6ff6ce69d63d98096b4e2604 (patch) | |
tree | e263053dbf28f5ae4bd88743fc06e4856e6ff9a9 /Src/zsh.h | |
parent | 43ee0cd4fd3ea9f87fe0428d41dc4010bdd8e61d (diff) | |
download | zsh-147cedfb6fa2973f6ff6ce69d63d98096b4e2604.tar.gz zsh-147cedfb6fa2973f6ff6ce69d63d98096b4e2604.zip |
27965, 27966: Improve ${(q)...}: newline appears as $'\n;,
Diffstat (limited to 'Src/zsh.h')
-rw-r--r-- | Src/zsh.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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) |