summaryrefslogtreecommitdiff
path: root/op.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-08-12 22:46:12 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-08-12 22:46:12 +0000
commit712fbfc4b1b14bc0313767c1171eeb3d92ff14ea (patch)
tree5a2807645a588817ceccd451f28c08ab70e633e0 /op.h
parentdf31e76a69b7a45802309ecd521aaaf6d3b8dba5 (diff)
downloadperl-712fbfc4b1b14bc0313767c1171eeb3d92ff14ea.tar.gz
Not quite so relicy as thought in #11651 (op/concat #4 and #5
stopped working). p4raw-id: //depot/perl@11653
Diffstat (limited to 'op.h')
-rw-r--r--op.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/op.h b/op.h
index af8280b269..e92b1d8db4 100644
--- a/op.h
+++ b/op.h
@@ -263,6 +263,10 @@ struct pmop {
#define PMdf_USED 0x01 /* pm has been used once already */
#define PMdf_TAINTED 0x02 /* pm compiled from tainted pattern */
+#define PMdf_UTF8 0x04 /* pm compiled from utf8 data */
+#define PMdf_DYN_UTF8 0x08
+
+#define PMdf_CMP_UTF8 (PMdf_UTF8|PMdf_DYN_UTF8)
#define PMf_RETAINT 0x0001 /* taint $1 etc. if target tainted */
#define PMf_ONCE 0x0002 /* use pattern only once per reset */