summaryrefslogtreecommitdiff
path: root/pcre_internal.h
diff options
context:
space:
mode:
authorzherczeg <zherczeg@2f5784b3-3f2a-0410-8824-cb99058d5e15>2013-12-22 16:27:35 +0000
committerzherczeg <zherczeg@2f5784b3-3f2a-0410-8824-cb99058d5e15>2013-12-22 16:27:35 +0000
commitf928c7adccd8daa61e76c22130d79689ec41f21c (patch)
treecd7785129e501b2214ee32c6d3a895c5ea08a64d /pcre_internal.h
parent27e5192041ef241b4d3f559d067b81e431698a63 (diff)
downloadpcre-f928c7adccd8daa61e76c22130d79689ec41f21c.tar.gz
A new flag is set, when property checks are present in an XCLASS.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1414 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'pcre_internal.h')
-rw-r--r--pcre_internal.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/pcre_internal.h b/pcre_internal.h
index 0b9798c..6e01b90 100644
--- a/pcre_internal.h
+++ b/pcre_internal.h
@@ -1874,8 +1874,9 @@ table. */
/* Flag bits and data types for the extended class (OP_XCLASS) for classes that
contain characters with values greater than 255. */
-#define XCL_NOT 0x01 /* Flag: this is a negative class */
-#define XCL_MAP 0x02 /* Flag: a 32-byte map is present */
+#define XCL_NOT 0x01 /* Flag: this is a negative class */
+#define XCL_MAP 0x02 /* Flag: a 32-byte map is present */
+#define XCL_HASPROP 0x04 /* Flag: property checks are present. */
#define XCL_END 0 /* Marks end of individual items */
#define XCL_SINGLE 1 /* Single item (one multibyte char) follows */