summaryrefslogtreecommitdiff
path: root/regcomp.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2016-02-15 20:32:32 -0700
committerKarl Williamson <khw@cpan.org>2016-02-18 20:26:50 -0700
commitb271ede139c499b0a38fbeff3a5a032adcb54955 (patch)
tree12ddde844f4fb0fcba04d7315c1a9c913b0a4721 /regcomp.h
parent346aefe94ef87336bae3ae96d8047475e3361709 (diff)
downloadperl-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/regcomp.h b/regcomp.h
index 44c2c1c8de..07e098a880 100644
--- a/regcomp.h
+++ b/regcomp.h
@@ -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)