diff options
author | Yves Orton <yves.orton@booking.com> | 2014-01-30 14:02:44 +0800 |
---|---|---|
committer | Yves Orton <yves.orton@booking.com> | 2014-01-31 01:45:34 +0800 |
commit | e3e400ec345b9fd8b4129bb36c3d0b73c95cadcd (patch) | |
tree | be82a1eac4b7b69c34290313737514197b275b72 /regexp.h | |
parent | e80e3195a56ee8ba20dc0e0f5d5381af5ec5ac33 (diff) | |
download | perl-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 */ |