summaryrefslogtreecommitdiff
path: root/regcomp.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-08-04 18:09:38 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-08-04 18:09:38 +0000
commitcce850e4f65d092b5704ab42116f11f5188dd74e (patch)
tree86420e16cde9c0ee15805f5242bff7029ae0921c /regcomp.h
parent01485f8b60f6cb9da6ceaaafc3abd52c6f690081 (diff)
downloadperl-cce850e4f65d092b5704ab42116f11f5188dd74e.tar.gz
Continuation of #11575: SANY_SEEN completely deprecated,
plus more tests that unearthed a bug in @a = ($utf8 =~ /\C/g), plus a fix for the bug. p4raw-id: //depot/perl@11577
Diffstat (limited to 'regcomp.h')
-rw-r--r--regcomp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/regcomp.h b/regcomp.h
index b00edf03cf..bbe3a41399 100644
--- a/regcomp.h
+++ b/regcomp.h
@@ -309,8 +309,8 @@ struct regnode_charclass_class { /* has [[:blah:]] classes */
#define REG_SEEN_LOOKBEHIND 2
#define REG_SEEN_GPOS 4
#define REG_SEEN_EVAL 8
-#define REG_SEEN_SANY 16
-#define REG_SEEN_CANY 32
+#define REG_SEEN_CANY 16
+#define REG_SEEN_SANY REG_SEEN_CANY /* src bckwrd cmpt */
START_EXTERN_C