diff options
author | Karl Williamson <khw@cpan.org> | 2016-02-15 20:32:32 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2016-02-18 20:26:50 -0700 |
commit | b271ede139c499b0a38fbeff3a5a032adcb54955 (patch) | |
tree | 12ddde844f4fb0fcba04d7315c1a9c913b0a4721 /regcomp.h | |
parent | 346aefe94ef87336bae3ae96d8047475e3361709 (diff) | |
download | perl-b271ede139c499b0a38fbeff3a5a032adcb54955.tar.gz |
regcomp.h: Not all ANYOF flags are in use.
So, it's better to not have a mask to include the unused ones.
Diffstat (limited to 'regcomp.h')
-rw-r--r-- | regcomp.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -553,7 +553,7 @@ struct regnode_ssc { * are cautioned about its shared nature */ #define ANYOF_SHARED_d_MATCHES_ALL_NON_UTF8_NON_ASCII_non_d_WARN_SUPER 0x80 -#define ANYOF_FLAGS_ALL (0xff) +#define ANYOF_FLAGS_ALL (0xff & ~0x10) #define ANYOF_LOCALE_FLAGS (ANYOFL_FOLD | ANYOF_MATCHES_POSIXL) |