diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-03-20 09:59:26 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-03-20 12:16:12 -0600 |
commit | bb3f3ed29b0f43dce867b7564d9573e5222f0366 (patch) | |
tree | dc8b59afb49978b52f88ede588e5b27f00defa62 | |
parent | 97298f37feef668825e0b2c5f656f7ffdd8fd681 (diff) | |
download | perl-bb3f3ed29b0f43dce867b7564d9573e5222f0366.tar.gz |
regcomp.c: Add element to structure
-rw-r--r-- | regcomp.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -143,6 +143,7 @@ typedef struct RExC_state_t { I32 recurse_count; /* Number of recurse regops */ I32 in_lookbehind; I32 contains_locale; + I32 override_recoding; #if ADD_TO_REGEXEC char *starttry; /* -Dr: where regtry was called. */ #define RExC_starttry (pRExC_state->starttry) @@ -192,6 +193,7 @@ typedef struct RExC_state_t { #define RExC_recurse_count (pRExC_state->recurse_count) #define RExC_in_lookbehind (pRExC_state->in_lookbehind) #define RExC_contains_locale (pRExC_state->contains_locale) +#define RExC_override_recoding (pRExC_state->override_recoding) #define ISMULT1(c) ((c) == '*' || (c) == '+' || (c) == '?') |