diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2000-07-27 22:02:45 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2000-07-27 22:02:45 +0000 |
commit | 19b4ca246ab3346a37e2d8045ad51385f0cf25f2 (patch) | |
tree | 3eae7aa6891c8a5758b525664523d3ab8240333f /Src/utils.c | |
parent | 0aee5e1bb490617b1d84d5ad8e20571d26fc9986 (diff) | |
download | zsh-19b4ca246ab3346a37e2d8045ad51385f0cf25f2.tar.gz zsh-19b4ca246ab3346a37e2d8045ad51385f0cf25f2.tar.xz zsh-19b4ca246ab3346a37e2d8045ad51385f0cf25f2.zip |
12415: fix bug in last patch when quoting metafied field separator.
Diffstat (limited to 'Src/utils.c')
-rw-r--r-- | Src/utils.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Src/utils.c b/Src/utils.c index 48218326b..689680f1c 100644 --- a/Src/utils.c +++ b/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) { |