1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-30 05:40:58 +01:00

zsh-workers/9777

This commit is contained in:
Tanaka Akira 2000-02-17 14:44:51 +00:00
parent 9aa1735b63
commit 493876e0c7
5 changed files with 22 additions and 17 deletions

View file

@ -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);