summaryrefslogtreecommitdiff
path: root/regexp.h
diff options
context:
space:
mode:
authorYves Orton <yves.orton@booking.com>2014-01-30 14:02:44 +0800
committerYves Orton <yves.orton@booking.com>2014-01-31 01:45:34 +0800
commite3e400ec345b9fd8b4129bb36c3d0b73c95cadcd (patch)
treebe82a1eac4b7b69c34290313737514197b275b72 /regexp.h
parente80e3195a56ee8ba20dc0e0f5d5381af5ec5ac33 (diff)
downloadperl-e3e400ec345b9fd8b4129bb36c3d0b73c95cadcd.tar.gz
move RXf_NOSCAN from extflags to intflags as PREGf_NOSCAN
Includes some improvements to how we dump regexps so that when a regexp is for the standard perl engine we also show the intflags for the engine
Diffstat (limited to 'regexp.h')
-rw-r--r--regexp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/regexp.h b/regexp.h
index 477b075d58..aa1a2d032f 100644
--- a/regexp.h
+++ b/regexp.h
@@ -402,7 +402,7 @@ get_regex_charset_name(const U32 flags, STRLEN* const lenp)
#define RXf_CANY_SEEN (1<<(RXf_BASE_SHIFT+8))
/* Special */
-#define RXf_NOSCAN (1<<(RXf_BASE_SHIFT+9))
+#define RXf_UNUSED1 (1<<(RXf_BASE_SHIFT+9))
#define RXf_CHECK_ALL (1<<(RXf_BASE_SHIFT+10))
/* UTF8 related */