diff options
Diffstat (limited to 'dump.c')
-rw-r--r-- | dump.c | 14 |
1 files changed, 10 insertions, 4 deletions
@@ -1542,6 +1542,9 @@ const struct flag_to_name gp_flags_imported_names[] = { {GVf_IMPORTED_CV, " CV"}, }; +/* NOTE: this structure is mostly duplicative of one generated by + * 'make regen' in regnodes.h - perhaps we should somehow integrate + * the two. - Yves */ const struct flag_to_name regexp_extflags_names[] = { {RXf_PMf_MULTILINE, "PMf_MULTILINE,"}, {RXf_PMf_SINGLELINE, "PMf_SINGLELINE,"}, @@ -1556,7 +1559,6 @@ const struct flag_to_name regexp_extflags_names[] = { {RXf_GPOS_FLOAT, "GPOS_FLOAT,"}, {RXf_NO_INPLACE_SUBST, "NO_INPLACE_SUBST,"}, {RXf_EVAL_SEEN, "EVAL_SEEN,"}, - {RXf_CANY_SEEN, "CANY_SEEN,"}, {RXf_CHECK_ALL, "CHECK_ALL,"}, {RXf_MATCH_UTF8, "MATCH_UTF8,"}, {RXf_USE_INTUIT_NOML, "USE_INTUIT_NOML,"}, @@ -1572,14 +1574,18 @@ const struct flag_to_name regexp_extflags_names[] = { {RXf_NULL, "NULL,"}, }; +/* NOTE: this structure is mostly duplicative of one generated by + * 'make regen' in regnodes.h - perhaps we should somehow integrate + * the two. - Yves */ const struct flag_to_name regexp_core_intflags_names[] = { {PREGf_SKIP, "SKIP,"}, - {PREGf_IMPLICIT, "IMPLICIT,"}, - {PREGf_NAUGHTY, "NAUGHTY,"}, + {PREGf_IMPLICIT, "IMPLICIT,"}, + {PREGf_NAUGHTY, "NAUGHTY,"}, {PREGf_VERBARG_SEEN, "VERBARG_SEEN,"}, {PREGf_CUTGROUP_SEEN, "CUTGROUP_SEEN,"}, - {PREGf_USE_RE_EVAL, "USE_RE_EVAL,"}, + {PREGf_USE_RE_EVAL, "USE_RE_EVAL,"}, {PREGf_NOSCAN, "NOSCAN,"}, + {PREGf_CANY_SEEN, "CANY_SEEN,"}, }; void |