summaryrefslogtreecommitdiff
path: root/regcomp.h
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2009-09-10 19:28:20 +0200
committerYves Orton <demerphq@gmail.com>2009-09-10 19:28:20 +0200
commit2c2969659ae1c534e7f3fac9e7a7d186defd9943 (patch)
tree3ea479f5ab0da5eddba3922e1357279f21e41e7c /regcomp.h
parent831a7dd792d2967a0cfe83bb0272cf0a346df76d (diff)
downloadperl-2c2969659ae1c534e7f3fac9e7a7d186defd9943.tar.gz
add more positive gofs GPOS tests and fix some bugs too
Diffstat (limited to 'regcomp.h')
-rw-r--r--regcomp.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/regcomp.h b/regcomp.h
index cd6a71a0ec..198961c2c3 100644
--- a/regcomp.h
+++ b/regcomp.h
@@ -729,6 +729,7 @@ re.pm, especially to the documentation.
#define RE_DEBUG_EXTRA_STATE 0x080000
#define RE_DEBUG_EXTRA_OPTIMISE 0x100000
#define RE_DEBUG_EXTRA_BUFFERS 0x400000
+#define RE_DEBUG_EXTRA_GPOS 0x800000
/* combined */
#define RE_DEBUG_EXTRA_STACK 0x280000
@@ -784,6 +785,8 @@ re.pm, especially to the documentation.
#define DEBUG_TRIE_r(x) DEBUG_r( \
if (re_debug_flags & (RE_DEBUG_COMPILE_TRIE \
| RE_DEBUG_EXECUTE_TRIE )) x )
+#define DEBUG_GPOS_r(x) DEBUG_r( \
+ if (re_debug_flags & RE_DEBUG_EXTRA_GPOS) x )
/* initialization */
/* get_sv() can return NULL during global destruction. */