1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-11-19 21:44:11 +01:00

Make X{$~foo}Y where $foo contains commas behave as expected

This commit is contained in:
Peter Stephenson 2001-05-02 09:53:32 +00:00
parent ca29f22a86
commit 6a0c6b1b27
2 changed files with 5 additions and 0 deletions

@ -1,3 +1,7 @@
2001-05-02 Peter Stephenson <pws@csr.com>
* 14140: Src/glob.c: v='A,B'; print X{$~v}Y now prints XAY XBY.
2001-05-02 Sven Wischnowsky <wischnow@zsh.org>
* 14198: Src/Zle/computil.c: remove quotes when looking at

@ -2373,6 +2373,7 @@ tokenize(char *s)
case '*':
case '?':
case '=':
case ',':
for (t = ztokens; *t; t++)
if (*t == *s) {
if (bslash)