about summary refs log tree commit diff
path: root/Src/Modules/parameter.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/Modules/parameter.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/Modules/parameter.c')
-rw-r--r--Src/Modules/parameter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Modules/parameter.c b/Src/Modules/parameter.c
index bc8918e0f..e46b14108 100644
--- a/Src/Modules/parameter.c
+++ b/Src/Modules/parameter.c
@@ -1098,7 +1098,7 @@ histwgetfn(Param pm)
     int i = addhistnum(curhist, -1, HIST_FOREIGN), iw;
     Histent he = quietgethistent(i, GETHIST_UPWARD);
 
-    ll = bufferwords(NULL);
+    ll = bufferwords(NULL, NULL, NULL);
     for (n = firstnode(ll); n; incnode(n))
 	pushnode(l, getdata(n));