diff options
Diffstat (limited to 'regnodes.h')
-rw-r--r-- | regnodes.h | 6 |
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 */ |