about summary refs log tree commit diff
path: root/Src/subst.c
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2001-10-08 08:13:11 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2001-10-08 08:13:11 +0000
commitcc0d931682835347316144a3889fbf35e6d6459b (patch)
treed44ca57420c50af42aee06df6fc525dec16c95cc /Src/subst.c
parentb109834dc2d3e86ac4bed09a7957d6ba9d2f517a (diff)
downloadzsh-cc0d931682835347316144a3889fbf35e6d6459b.tar.gz
zsh-cc0d931682835347316144a3889fbf35e6d6459b.tar.xz
zsh-cc0d931682835347316144a3889fbf35e6d6459b.zip
15931: EXIT traps from exit in subshell; 15965: glob -> zglob
Diffstat (limited to 'Src/subst.c')
-rw-r--r--Src/subst.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/subst.c b/Src/subst.c
index 4ed6e5e45..885799534 100644
--- a/Src/subst.c
+++ b/Src/subst.c
@@ -233,7 +233,7 @@ globlist(LinkList list, int nountok)
     badcshglob = 0;
     for (node = firstnode(list); !errflag && node; node = next) {
 	next = nextnode(node);
-	glob(list, node, nountok);
+	zglob(list, node, nountok);
     }
     if (badcshglob == 1)
 	zerr("no match", NULL, 0);