summaryrefslogtreecommitdiff
path: root/regnodes.h
diff options
context:
space:
mode:
authorYves Orton <yves.orton@booking.com>2014-01-30 18:07:36 +0800
committerYves Orton <yves.orton@booking.com>2014-01-31 01:45:34 +0800
commit0d331aaf61fba3b76c8d35852b94950c028661de (patch)
tree35935a21266f1e7f4ef0d2f1534a25a21f31da32 /regnodes.h
parente3e400ec345b9fd8b4129bb36c3d0b73c95cadcd (diff)
downloadperl-0d331aaf61fba3b76c8d35852b94950c028661de.tar.gz
Rename RXf_CANY_SEEN to PREGf_CANY_SEEN and move from extflags to intflags
Diffstat (limited to 'regnodes.h')
-rw-r--r--regnodes.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/regnodes.h b/regnodes.h
index 0af89b90f9..82b3f98d13 100644
--- a/regnodes.h
+++ b/regnodes.h
@@ -658,8 +658,8 @@ EXTCONST char * const PL_reg_extflags_name[] = {
"GPOS_FLOAT", /* 0x00004000 */
"NO_INPLACE_SUBST", /* 0x00008000 */
"EVAL_SEEN", /* 0x00010000 */
- "CANY_SEEN", /* 0x00020000 */
- "NOSCAN", /* 0x00040000 */
+ "UNUSED1", /* 0x00020000 */
+ "UNUSED2", /* 0x00040000 */
"CHECK_ALL", /* 0x00080000 */
"MATCH_UTF8", /* 0x00100000 */
"USE_INTUIT_NOML", /* 0x00200000 */
@@ -688,6 +688,8 @@ EXTCONST char * const PL_reg_intflags_name[] = {
"VERBARG_SEEN", /* 0x00000008 - PREGf_VERBARG_SEEN */
"CUTGROUP_SEEN", /* 0x00000010 - PREGf_CUTGROUP_SEEN */
"USE_RE_EVAL", /* 0x00000020 - PREGf_USE_RE_EVAL - compiled with "use re 'eval'" */
+ "NOSCAN", /* 0x00000040 - PREGf_NOSCAN */
+ "CANY_SEEN", /* 0x00000080 - PREGf_CANY_SEEN */
};
#endif /* DOINIT */