summaryrefslogtreecommitdiff
path: root/regexp.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2007-12-29 11:49:09 +0000
committerNicholas Clark <nick@ccl4.org>2007-12-29 11:49:09 +0000
commita1cf41cd41cfa3d3c737acde06e0d3bbd02dd08d (patch)
treed68ef962ad9f90c392193f167f6498bdb56bfe5f /regexp.h
parent866c78d1cf6feeffe34601c244c137d8b30ec2e4 (diff)
downloadperl-a1cf41cd41cfa3d3c737acde06e0d3bbd02dd08d.tar.gz
Note to future self about moving the regexp flag bits around.
p4raw-id: //depot/perl@32759
Diffstat (limited to 'regexp.h')
-rw-r--r--regexp.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/regexp.h b/regexp.h
index 623a4bbb10..60606a5158 100644
--- a/regexp.h
+++ b/regexp.h
@@ -245,7 +245,9 @@ and check for NULL.
#define RXf_WHITE 0x00000400 /* Pattern is /\s+/ */
#define RXf_NULL 0x40000000 /* Pattern is // */
-/* 0x1F800 of extflags is used by (RXf_)PMf_COMPILETIME */
+/* 0x1F800 of extflags is used by (RXf_)PMf_COMPILETIME
+ * If you change these you need to change the equivalent flags in op.h, and
+ * vice versa. */
#define RXf_PMf_LOCALE 0x00000800 /* use locale */
#define RXf_PMf_MULTILINE 0x00001000 /* /m */
#define RXf_PMf_SINGLELINE 0x00002000 /* /s */