summaryrefslogtreecommitdiff
path: root/op.h
diff options
context:
space:
mode:
authorStephen McCamant <smcc@mit.edu>1999-03-23 09:47:04 -0800
committerGurusamy Sarathy <gsar@cpan.org>1999-03-25 06:17:27 +0000
commit293d3ffa4862e7bfbef41f6f8f5e54959b0fc5e3 (patch)
treea3bcff7990ff4df00f842888a7fa8b1ab4bb3df5 /op.h
parentbd0865ece2a76bf5829c6928d282480f2e4e0d90 (diff)
downloadperl-293d3ffa4862e7bfbef41f6f8f5e54959b0fc5e3.tar.gz
Compiler needs to know about utf8 SVOP tr///s
Message-ID: <14072.16859.154428.241373@fre-76-120.reshall.berkeley.edu> p4raw-id: //depot/perl@3164
Diffstat (limited to 'op.h')
-rw-r--r--op.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/op.h b/op.h
index 2c5abab37c..67e636f79e 100644
--- a/op.h
+++ b/op.h
@@ -311,7 +311,7 @@ struct loop {
#define OA_PMOP (6 << 8)
#define OA_SVOP (7 << 8)
#define OA_GVOP (8 << 8)
-#define OA_PVOP (9 << 8)
+#define OA_PVOP_OR_SVOP (9 << 8)
#define OA_LOOP (10 << 8)
#define OA_COP (11 << 8)
#define OA_BASEOP_OR_UNOP (12 << 8)