From 493876e0c7669b1185af83e99a7a3345793d628c Mon Sep 17 00:00:00 2001 From: Tanaka Akira Date: Thu, 17 Feb 2000 14:44:51 +0000 Subject: zsh-workers/9777 --- Src/exec.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Src/exec.c') 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) { -- cgit 1.4.1