summaryrefslogtreecommitdiff
path: root/regexp.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-02-18 22:11:20 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-02-18 22:11:20 +0000
commit3baa4c62cda542368be1e7e1f7af8bd8257c2ff4 (patch)
tree36c534fdd1b4be5046f1c67dcdf0be0722f4dc97 /regexp.h
parent5da9da9e9f46681684e0c487fd55df8db6f9de67 (diff)
downloadperl-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.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/regexp.h b/regexp.h
index 3c71060a40..33ace4066e 100644
--- a/regexp.h
+++ b/regexp.h
@@ -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 */