summaryrefslogtreecommitdiff
path: root/dump.c
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 /dump.c
parente3e400ec345b9fd8b4129bb36c3d0b73c95cadcd (diff)
downloadperl-0d331aaf61fba3b76c8d35852b94950c028661de.tar.gz
Rename RXf_CANY_SEEN to PREGf_CANY_SEEN and move from extflags to intflags
Diffstat (limited to 'dump.c')
-rw-r--r--dump.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/dump.c b/dump.c
index 9c2f5fcd9d..ab0f595844 100644
--- a/dump.c
+++ b/dump.c
@@ -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