1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-23 16:40:24 +02:00

10564: typo in _wanted

10565: maximum function depth configure option
10566: patgetglobflags has a second argument now
This commit is contained in:
Clint Adams 2000-04-07 02:27:44 +00:00
parent d2330ba055
commit 18870148c5
6 changed files with 113 additions and 7 deletions

View file

@ -698,6 +698,8 @@ parsecomplist(char *instr)
static Complist
parsepat(char *str)
{
long assert;
patcompstart();
/*
* Check for initial globbing flags, so that they don't form
@ -707,7 +709,7 @@ parsepat(char *str)
(isset(KSHGLOB) && *str == '@' && str[1] == Inpar &&
str[2] == Pound)) {
str += (*str == Inpar) ? 2 : 3;
if (!patgetglobflags(&str))
if (!patgetglobflags(&str, &assert))
return NULL;
}