mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-12 11:01:15 +02:00
15965: glob -> zglob
This commit is contained in:
parent
7668a03cb2
commit
d177e890b6
3 changed files with 3 additions and 3 deletions
|
@ -1755,7 +1755,7 @@ execcmd(Estate state, int input, int output, int how, int last1)
|
||||||
if (!(cflags & BINF_NOGLOB))
|
if (!(cflags & BINF_NOGLOB))
|
||||||
while (!checked && !errflag && args && nonempty(args) &&
|
while (!checked && !errflag && args && nonempty(args) &&
|
||||||
has_token((char *) peekfirst(args)))
|
has_token((char *) peekfirst(args)))
|
||||||
glob(args, firstnode(args), 0);
|
zglob(args, firstnode(args), 0);
|
||||||
else if (!unglobbed) {
|
else if (!unglobbed) {
|
||||||
for (node = firstnode(args); node; incnode(node))
|
for (node = firstnode(args); node; incnode(node))
|
||||||
untokenize((char *) getdata(node));
|
untokenize((char *) getdata(node));
|
||||||
|
|
|
@ -920,7 +920,7 @@ gmatchcmp(Gmatch a, Gmatch b)
|
||||||
|
|
||||||