about summary refs log tree commit diff
path: root/Src/subst.c
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>2000-02-17 14:44:51 +0000
committerTanaka Akira <akr@users.sourceforge.net>2000-02-17 14:44:51 +0000
commit493876e0c7669b1185af83e99a7a3345793d628c (patch)
tree056c614ff6b4236df596057c86ef086885c0d043 /Src/subst.c
parent9aa1735b63b733f062f4061975d8fa65252dee18 (diff)
downloadzsh-493876e0c7669b1185af83e99a7a3345793d628c.tar.gz
zsh-493876e0c7669b1185af83e99a7a3345793d628c.tar.xz
zsh-493876e0c7669b1185af83e99a7a3345793d628c.zip
zsh-workers/9777
Diffstat (limited to 'Src/subst.c')
-rw-r--r--Src/subst.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/subst.c b/Src/subst.c
index 711ec167a..f92fd7d32 100644
--- a/Src/subst.c
+++ b/Src/subst.c
@@ -212,14 +212,14 @@ stringsubst(LinkList list, LinkNode node, int ssub)
 
 /**/
 mod_export void
-globlist(LinkList list)
+globlist(LinkList list, int nountok)
 {
     LinkNode node, next;
 
     badcshglob = 0;
     for (node = firstnode(list); !errflag && node; node = next) {
 	next = nextnode(node);
-	glob(list, node);
+	glob(list, node, nountok);
     }
     if (badcshglob == 1)
 	zerr("no match", NULL, 0);