about summary refs log tree commit diff
path: root/Src/exec.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/exec.c
parent9aa1735b63b733f062f4061975d8fa65252dee18 (diff)
downloadzsh-493876e0c7669b1185af83e99a7a3345793d628c.tar.gz
zsh-493876e0c7669b1185af83e99a7a3345793d628c.tar.xz
zsh-493876e0c7669b1185af83e99a7a3345793d628c.zip
zsh-workers/9777
Diffstat (limited to 'Src/exec.c')
-rw-r--r--Src/exec.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Src/exec.c b/Src/exec.c
index cfcc9b9d8..5e530ae9a 100644
--- a/Src/exec.c
+++ b/Src/exec.c
@@ -1419,7 +1419,7 @@ addvars(Estate state, Wordcode pc, int export)
 		return;
 	    }
 	    if (isset(GLOBASSIGN) || !isstr)
-		globlist(vl);
+		globlist(vl, 0);
 	    if (errflag) {
 		state->pc = opc;
 		return;
@@ -1520,7 +1520,7 @@ execsubst(LinkList strs)
 	prefork(strs, esprefork);
 	if (esglob) {
 	    LinkList ostrs = strs;
-	    globlist(strs);
+	    globlist(strs, 0);
 	    strs = ostrs;
 	}
     }
@@ -1644,7 +1644,7 @@ execcmd(Estate state, int input, int output, int how, int last1)
 	    if (!(cflags & BINF_NOGLOB))
 		while (!checked && !errflag && args && nonempty(args) &&
 		       has_token((char *) peekfirst(args)))
-		    glob(args, firstnode(args));
+		    glob(args, firstnode(args), 0);
 	    else if (!unglobbed) {
 		for (node = firstnode(args); node; incnode(node))
 		    untokenize((char *) getdata(node));
@@ -1927,7 +1927,7 @@ execcmd(Estate state, int input, int output, int how, int last1)
 
     if ((esglob = !(cflags & BINF_NOGLOB)) && args) {
 	LinkList oargs = args;
-	globlist(args);
+	globlist(args, 0);
 	args = oargs;
     }
     if (errflag) {