diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2006-12-03 21:07:17 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2006-12-03 21:07:17 +0000 |
commit | 34381548da094d1be0b06f802d131f960b061ffe (patch) | |
tree | 5a3b835aa9ac335f190ac430ebd00a86cd9f19e4 /Src/exec.c | |
parent | ac05bc6e026aebc0fa40ec942501026ebd489919 (diff) | |
download | zsh-34381548da094d1be0b06f802d131f960b061ffe.tar.gz zsh-34381548da094d1be0b06f802d131f960b061ffe.tar.xz zsh-34381548da094d1be0b06f802d131f960b061ffe.zip |
Incomplete improvements for $'...' in completion
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 f4119bcd8..d65c0a91e 100644 --- a/Src/exec.c +++ b/Src/exec.c @@ -2905,7 +2905,7 @@ gethere(char *str, int typ) qt = 1; break; } - quotesubst(str); + str = quotesubst(str); untokenize(str); if (typ == REDIR_HEREDOCDASH) { strip = 1; |