diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2008-11-18 10:07:31 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2008-11-18 10:07:31 +0000 |
commit | 14231691e15744c0aac39224e9aa0d84835313fe (patch) | |
tree | 27682b81236d64e641f4bb476ff710dc84e968c4 /Src/lex.c | |
parent | 0d0e497c693939633fda6cfa0c3269258b8e97ec (diff) | |
download | zsh-14231691e15744c0aac39224e9aa0d84835313fe.tar.gz zsh-14231691e15744c0aac39224e9aa0d84835313fe.tar.xz zsh-14231691e15744c0aac39224e9aa0d84835313fe.zip |
26061: fix clash between process subst and numeric glob
26062: additional compmatch change, missed from 26047
Diffstat (limited to 'Src/lex.c')
-rw-r--r-- | Src/lex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/lex.c b/Src/lex.c index f5999d798..b66630acc 100644 --- a/Src/lex.c +++ b/Src/lex.c @@ -33,7 +33,7 @@ /* tokens */ /**/ -mod_export char ztokens[] = "#$^*()$=|{}[]`<>?~`,'\"\\\\"; +mod_export char ztokens[] = "#$^*()$=|{}[]`<>>?~`,'\"\\\\"; /* parts of the current token */ @@ -1160,7 +1160,7 @@ gettokstr(int c, int sub) lexstop = 0; goto brk; } - add(Outang); + add(OutangProc); if (skipcomm()) { peek = LEXERR; goto brk; |