mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-05 11:01:13 +02:00
16487: Src/glob.c: bug in 16486 when a qualifier in a set
consisted only of flags which were handled globally.
This commit is contained in:
parent
13b57311de
commit
803131605b
2 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
||||||
2002-01-22 Peter Stephenson <pws@csr.com>
|
2002-01-22 Peter Stephenson <pws@csr.com>
|
||||||
|
|
||||||
|
* 16487: Src/glob.c: bug in 16486 when a qualifier in a set
|
||||||
|
consisted only of flags which were handled globally.
|
||||||
|
|
||||||
* 16486: Doc/Zsh/expn.yo, Src/glob.c, Src/pattern.c: support
|
* 16486: Doc/Zsh/expn.yo, Src/glob.c, Src/pattern.c: support
|
||||||
(#q...) EXTENDED_GLOB syntax for qualifiers. May be chained,
|
(#q...) EXTENDED_GLOB syntax for qualifiers. May be chained,
|
||||||
ignored by pattern matching code.
|
ignored by pattern matching code.
|
||||||
|
|
|
@ -1537,7 +1537,7 @@ zglob(LinkList list, LinkNode np, int nountok)
|
||||||
newquals->next = quals;
|
newquals->next = quals;
|
||||||
quals = qn;
|
quals = qn;
|
||||||
}
|
}
|
||||||
} else
|
} else if (newquals)
|
||||||
quals = newquals;
|
quals = newquals;
|
||||||
}
|
}
|
||||||
q = parsepat(str);
|
q = parsepat(str);
|
||||||
|
|
Loading…
Reference in a new issue