diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-05-03 12:21:55 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-05-03 12:21:55 +0000 |
commit | 70e5b622fff4d3218106fb10f146200576b1f787 (patch) | |
tree | 76e8ee286e879f4e42e786717ab0fed2d5c1d2a6 /Src/Zle | |
parent | 0d6350d65a856b74000393dd4c4f5453e8801444 (diff) | |
download | zsh-70e5b622fff4d3218106fb10f146200576b1f787.tar.gz zsh-70e5b622fff4d3218106fb10f146200576b1f787.tar.xz zsh-70e5b622fff4d3218106fb10f146200576b1f787.zip |
new (z) parameter flag to do shell-word splitting on the value (11113)
Diffstat (limited to 'Src/Zle')
-rw-r--r-- | Src/Zle/zle_misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/zle_misc.c b/Src/Zle/zle_misc.c index a6adcc4fd..91b7317ed 100644 --- a/Src/Zle/zle_misc.c +++ b/Src/Zle/zle_misc.c @@ -549,7 +549,7 @@ copyprevshellword(char **args) int i; char *p = NULL; - l = bufferwords(&i); + l = bufferwords(NULL, NULL, &i); for (n = firstnode(l); n; incnode(n)) if (!i--) { |