1
0
mirror of https://github.com/zsh-users/zsh synced 2024-07-08 19:55:44 +00:00

18600: bug matching against [[:xdigit:]]

This commit is contained in:
Peter Stephenson 2003-06-03 18:02:07 +00:00
parent cba898f217
commit 4018e3c149
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2003-06-03 Peter Stephenson <pws@csr.com>
* 18600: Src/pattern.c: bug matching against [[:xdigit:]].
2003-05-30 Oliver Kiddle <opk@zsh.org>
* 18587: Src/Modules/langinfo.c: fix bug where only the beginning

View File

@ -2247,6 +2247,7 @@ patmatchrange(char *range, int ch)
case PP_XDIGIT:
if (isxdigit(ch))
return 1;
break;
case PP_RANGE:
range++;
r1 = STOUC(UNMETA(range));