1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-01-21 00:01:26 +01:00

21661: fix glob bug introduced in 21655

This commit is contained in:
Peter Stephenson 2005-08-18 10:17:47 +00:00
parent b0ca393c47
commit d551b0f483
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2005-08-18 Peter Stephenson <pws@csr.com>
* 21661: Src/glob.c: variable in 21655 shouldn't be static.
2005-08-18 Peter Stephenson <pws@pwstephenson.fsnet.co.uk>
* 21655: Src/glob.c, Test/D04parameter.ztst: replacing multiple

View file

@ -2228,7 +2228,7 @@ igetmatch(char **sp, Patprog p, int fl, int n, char *replstr)
* ${...//#foo/bar} even though SUB_GLOBAL is set, since the match
* is anchored. It goes on the heap.
*/
static LinkList repllist = NULL;
LinkList repllist = NULL;
/* perform must-match test for complex closures */
if (p->mustoff)