diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2001-05-09 09:00:19 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2001-05-09 09:00:19 +0000 |
commit | b6a44fae76191765c2198916097f59904952d730 (patch) | |
tree | 35c3d13e4ea7bec8f0582db2f85e07c38d83e720 | |
parent | e859ee1a4b150d1b293982dd93b75498f15880f5 (diff) | |
download | zsh-b6a44fae76191765c2198916097f59904952d730.tar.gz zsh-b6a44fae76191765c2198916097f59904952d730.tar.xz zsh-b6a44fae76191765c2198916097f59904952d730.zip |
Back off 14140 (tokenize comma)
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Src/glob.c | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index ad718d4ea..67762161c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-05-09 Peter Stephenson <pws@csr.com> + + * unposted: back off 14140, since logically it implies tokenizing + braces from parameters, which opens a whole new kettle of worms. + 2001-05-09 Sven Wischnowsky <wischnow@zsh.org> * 14279: Doc/Zsh/compsys.yo: add description of how to add a diff --git a/Src/glob.c b/Src/glob.c index 9e9aa410a..5be79329b 100644 --- a/Src/glob.c +++ b/Src/glob.c @@ -2373,7 +2373,6 @@ tokenize(char *s) case '*': case '?': case '=': - case ',': for (t = ztokens; *t; t++) if (*t == *s) { if (bslash) |