1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-09-28 15:01:21 +02:00

string quoting in compctl used QT_NONE instead of QT_BACKSLASH

This commit is contained in:
Peter Stephenson 2006-10-16 17:02:05 +00:00
parent b5124578e1
commit b736a639dd
2 changed files with 7 additions and 1 deletions

@ -1,3 +1,8 @@
2006-10-16 Peter Stephenson <pws@csr.com>
* 22877: Src/Zle/compctl.c: string quoting used QT_NONE
instead of QT_BACKSLASH.
2006-10-16 Geoff Wing <gcw@zsh.org>
* unposted: Doc/Zsh/metafaq.yo, Etc/FAQ.yo: archive.progeny.com

@ -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 */