summaryrefslogtreecommitdiff
path: root/regcomp.h
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2007-02-28 18:45:33 +0100
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-03-01 10:54:09 +0000
commite7707071e420c5a715c0621d0428dd393503e884 (patch)
treeb100855c405f6d78baace15a380385052daaf17d /regcomp.h
parent88431378e1356f3c89a703791b4d6c396872635a (diff)
downloadperl-e7707071e420c5a715c0621d0428dd393503e884.tar.gz
Re: New file: t/op/regexp_email.t
Message-ID: <9b18b3110702280845p7860ca08taf1aead39a178aa4@mail.gmail.com> p4raw-id: //depot/perl@30436
Diffstat (limited to 'regcomp.h')
-rw-r--r--regcomp.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/regcomp.h b/regcomp.h
index b07a63f781..72f415a0da 100644
--- a/regcomp.h
+++ b/regcomp.h
@@ -695,6 +695,7 @@ re.pm, especially to the documentation.
#define RE_DEBUG_EXTRA_OFFDEBUG 0x040000
#define RE_DEBUG_EXTRA_STATE 0x080000
#define RE_DEBUG_EXTRA_OPTIMISE 0x100000
+#define RE_DEBUG_EXTRA_BUFFERS 0x400000
/* combined */
#define RE_DEBUG_EXTRA_STACK 0x280000
@@ -732,6 +733,9 @@ re.pm, especially to the documentation.
if (re_debug_flags & RE_DEBUG_EXTRA_STATE) x )
#define DEBUG_STACK_r(x) DEBUG_r( \
if (re_debug_flags & RE_DEBUG_EXTRA_STACK) x )
+#define DEBUG_BUFFERS_r(x) DEBUG_r( \
+ if (re_debug_flags & RE_DEBUG_EXTRA_BUFFERS) x )
+
#define DEBUG_OPTIMISE_MORE_r(x) DEBUG_r( \
if ((RE_DEBUG_EXTRA_OPTIMISE|RE_DEBUG_COMPILE_OPTIMISE) == \
(re_debug_flags & (RE_DEBUG_EXTRA_OPTIMISE|RE_DEBUG_COMPILE_OPTIMISE)) ) x )