summaryrefslogtreecommitdiff
path: root/regnodes.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2012-10-11 09:27:18 -0700
committerFather Chrysostomos <sprout@cpan.org>2012-10-11 23:07:35 -0700
commitcccd1425414e6518c1fc8b7bcaccfb119320c513 (patch)
tree07046ba848168413f876cc7c6c83b663c8eae8cc /regnodes.h
parent26a745235f6f2b641f21239df4e7bfefc93119ca (diff)
downloadperl-cccd1425414e6518c1fc8b7bcaccfb119320c513.tar.gz
Define RXf_SPLIT and RXf_SKIPWHITE as 0
They are on longer used in core, and we need room for more flags. The only CPAN modules that use them check whether RXf_SPLIT is set (which no longer happens) before setting RXf_SKIPWHITE (which is ignored).
Diffstat (limited to 'regnodes.h')
-rw-r--r--regnodes.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/regnodes.h b/regnodes.h
index 42f245287e..d411b001b8 100644
--- a/regnodes.h
+++ b/regnodes.h
@@ -785,7 +785,7 @@ EXTCONST char * const PL_reg_name[] = {
EXTCONST char * PL_reg_extflags_name[];
#else
EXTCONST char * const PL_reg_extflags_name[] = {
- /* Bits in extflags defined: 11111111111111111111111011111111 */
+ /* Bits in extflags defined: 11011110111111111111111011111111 */
"MULTILINE", /* 0x00000001 */
"SINGLELINE", /* 0x00000002 */
"FOLD", /* 0x00000004 */
@@ -810,12 +810,12 @@ EXTCONST char * const PL_reg_extflags_name[] = {
"USE_INTUIT_NOML", /* 0x00200000 */
"USE_INTUIT_ML", /* 0x00400000 */
"INTUIT_TAIL", /* 0x00800000 */
- "SPLIT", /* 0x01000000 */
+ "UNUSED_BIT_24", /* 0x01000000 */
"COPY_DONE", /* 0x02000000 */
"TAINTED_SEEN", /* 0x04000000 */
"TAINTED", /* 0x08000000 */
"START_ONLY", /* 0x10000000 */
- "SKIPWHITE", /* 0x20000000 */
+ "UNUSED_BIT_29", /* 0x20000000 */
"WHITE", /* 0x40000000 */
"NULL", /* 0x80000000 */
};