diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-12-27 10:59:13 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-12-28 10:38:55 -0700 |
commit | 954a2af6addd8488c7883730be028bcdc14b202e (patch) | |
tree | 824256fd8d284c7a35d383abdeeaeb4b9dd4898c /regcomp.h | |
parent | c81eddd4019656a9d3dd5eb32bc00b9ca72f26d9 (diff) | |
download | perl-954a2af6addd8488c7883730be028bcdc14b202e.tar.gz |
Free up regex ANYOF bit.
This uses a regnode type, of which we have many available, to free up
a bit in the ANYOF regnode flag field, of which we have none, and are
trying to have the same bit do double duty. This will enable us to
remove some of that double duty in the next commit.
Diffstat (limited to 'regcomp.h')
-rw-r--r-- | regcomp.h | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -340,10 +340,6 @@ struct regnode_charclass_class { #define ANYOF_CLASS ANYOF_LOCALE #define ANYOF_LARGE ANYOF_CLASS /* Same; name retained for back compat */ -/* Should this character class warn if matched against a character above - * Unicode */ -#define ANYOF_WARN_SUPER 0x08 - /* EOS, meaning that it can match an empty string too, is used for the * synthetic start class only. */ #define ANYOF_EOS 0x10 |