mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-25 17:41:19 +02:00
12415: fix bug in last patch when quoting metafied field separator.
This commit is contained in:
parent
0aee5e1bb4
commit
19b4ca246a
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2000-07-27 Peter Stephenson <pws@pwstephenson.fsnet.co.uk>
|
||||
|
||||
* 12415: Src/utils.c: fix bug in 12414 when quoting metafied field
|
||||
separator.
|
||||
|
||||
2000-07-27 Peter Stephenson <pws@cambridgesiliconradio.com>
|
||||
|
||||
* 12414: Doc/Zsh/mod_zle.yo, Src/exec.c, Src/utils.c,
|
||||
|
|
|
@ -1901,6 +1901,8 @@ findsep(char **s, char *sep, int quote)
|
|||
if (quote && *t == '\\' &&
|
||||
isep(t[1] == Meta ? (t[2] ^ 32) : t[1])) {
|
||||
chuck(t);
|
||||
if (*t == Meta)
|
||||
t++;
|
||||
continue;
|
||||
}
|
||||
if (*t == Meta) {
|
||||
|
|
Loading…
Reference in a new issue