diff options
author | Yves Orton <demerphq@gmail.com> | 2006-07-15 20:56:03 +0200 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2006-07-15 21:59:43 +0000 |
commit | ab3bbdeb874c2a82798e2c9cc4b61acf5866b410 (patch) | |
tree | d7f35959899ec0f8a908e66bcfc7046d6191108c /ext/re | |
parent | 9acf5c354e13d8fc6d84c97a85840d7d803d8c62 (diff) | |
download | perl-ab3bbdeb874c2a82798e2c9cc4b61acf5866b410.tar.gz |
Updated escaping code. utf8 regex debug output improvements
Message-Id: <9b18b3110607150956o6273a16clb1518911d1945d4@mail.gmail.com>
p4raw-id: //depot/perl@28582
Diffstat (limited to 'ext/re')
-rw-r--r-- | ext/re/re.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/re/re.pm b/ext/re/re.pm index 08abfa194e..51545acbcd 100644 --- a/ext/re/re.pm +++ b/ext/re/re.pm @@ -233,6 +233,7 @@ my %flags = ( EXTRA => 0xFF0000, TRIE_MORE => 0x010000, OFFSETS_DEBUG => 0x020000, + STATE => 0x040000, ); $flags{ALL} = $flags{COMPILE} | $flags{EXECUTE}; $flags{All} = $flags{all} = $flags{DUMP} | $flags{EXECUTE}; |