about summary refs log tree commit diff
path: root/Src/Zle/zle_misc.c
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2000-05-03 12:21:55 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2000-05-03 12:21:55 +0000
commit70e5b622fff4d3218106fb10f146200576b1f787 (patch)
tree76e8ee286e879f4e42e786717ab0fed2d5c1d2a6 /Src/Zle/zle_misc.c
parent0d6350d65a856b74000393dd4c4f5453e8801444 (diff)
downloadzsh-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/zle_misc.c')
-rw-r--r--Src/Zle/zle_misc.c2
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--) {