* libc/minires.c (scanline): Accommodate ctype changes which disallow use of an

unadorned char argument to is* macros.
* regex/regcomp.c: Ditto, throughout.
* regex/regex2.h (ISWORD): Ditto.
This commit is contained in:
Christopher Faylor
2009-05-04 04:30:37 +00:00
parent b65ec404a7
commit b7a1552440
4 changed files with 17 additions and 10 deletions

View File

@ -131,4 +131,4 @@ struct re_guts {
/* misc utilities */
#define OUT (CHAR_MAX+1) /* a non-character value */
#define ISWORD(c) (isalnum(c) || (c) == '_')
#define ISWORD(c) (isalnum((unsigned)c) || (c) == '_')