diff options
author | Yves Orton <demerphq@gmail.com> | 2009-09-10 19:28:20 +0200 |
---|---|---|
committer | Yves Orton <demerphq@gmail.com> | 2009-09-10 19:28:20 +0200 |
commit | 2c2969659ae1c534e7f3fac9e7a7d186defd9943 (patch) | |
tree | 3ea479f5ab0da5eddba3922e1357279f21e41e7c /regcomp.h | |
parent | 831a7dd792d2967a0cfe83bb0272cf0a346df76d (diff) | |
download | perl-2c2969659ae1c534e7f3fac9e7a7d186defd9943.tar.gz |
add more positive gofs GPOS tests and fix some bugs too
Diffstat (limited to 'regcomp.h')
-rw-r--r-- | regcomp.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. */ |