mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
Regex library is switched to use new ctype tools
to allow usage of many character sets at a time.
This commit is contained in:
@@ -140,6 +140,6 @@ struct re_guts {
|
||||
/* misc utilities */
|
||||
#undef OUT /* May be defined in windows */
|
||||
#define OUT (CHAR_MAX+1) /* a non-character value */
|
||||
#define ISWORD(c) (isalnum(c) || (c) == '_')
|
||||
#define ISWORD(s,c) (my_isalnum(s,c) || (c) == '_')
|
||||
|
||||
#endif /* __regex2_h__ */
|
||||
|
||||
Reference in New Issue
Block a user