diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2000-07-27 17:48:47 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2000-07-27 17:48:47 +0000 |
commit | 0aee5e1bb490617b1d84d5ad8e20571d26fc9986 (patch) | |
tree | 54f2adfe54ef20a76b24ae8e25c5bdb203d14a02 /Src/exec.c | |
parent | 31862868fa7979e4b58cb71c42ac1c63acb8c7fc (diff) | |
download | zsh-0aee5e1bb490617b1d84d5ad8e20571d26fc9986.tar.gz zsh-0aee5e1bb490617b1d84d5ad8e20571d26fc9986.tar.xz zsh-0aee5e1bb490617b1d84d5ad8e20571d26fc9986.zip |
12414: vared quotes separators when editing arrays
Diffstat (limited to 'Src/exec.c')
-rw-r--r-- | Src/exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/exec.c b/Src/exec.c index 027c11ca2..a3e28d45d 100644 --- a/Src/exec.c +++ b/Src/exec.c @@ -2744,7 +2744,7 @@ readoutput(int in, int qt) } addlinknode(ret, buf); } else { - char **words = spacesplit(buf, 0, 1); + char **words = spacesplit(buf, 0, 1, 0); while (*words) { if (isset(GLOBSUBST)) |