diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-02-18 22:11:20 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-02-18 22:11:20 +0000 |
commit | 3baa4c62cda542368be1e7e1f7af8bd8257c2ff4 (patch) | |
tree | 36c534fdd1b4be5046f1c67dcdf0be0722f4dc97 /regexp.h | |
parent | 5da9da9e9f46681684e0c487fd55df8db6f9de67 (diff) | |
download | perl-3baa4c62cda542368be1e7e1f7af8bd8257c2ff4.tar.gz |
Misapplied regex optimizations when \C is present.
Fixes 20001230.002.
What still remains broken is that the submatches that
have \C in them get their UTF8 flag on because their
parent SV has it on. This will result in malformed
UTF8 if a \C happened to match a non-ASCII byte.
p4raw-id: //depot/perl@8836
Diffstat (limited to 'regexp.h')
-rw-r--r-- | regexp.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -54,6 +54,7 @@ typedef struct regexp { #define ROPT_CHECK_ALL 0x00100 #define ROPT_LOOKBEHIND_SEEN 0x00200 #define ROPT_EVAL_SEEN 0x00400 +#define ROPT_SANY_SEEN 0x00800 /* 0xf800 of reganch is used by PMf_COMPILETIME */ |