summaryrefslogtreecommitdiff
path: root/pcre.h.in
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2012-10-28 11:40:08 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2012-10-28 11:40:08 +0000
commitb81e462579107686b1f08784433142ba74ba6571 (patch)
treeec76e082a81c80ba04cb440da43d058bb663ed91 /pcre.h.in
parent4f7aeaa0c6850f884e65cb33d60713ea8b38bd16 (diff)
downloadpcre-b81e462579107686b1f08784433142ba74ba6571.tar.gz
Update comments.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1184 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'pcre.h.in')
-rw-r--r--pcre.h.in16
1 files changed, 8 insertions, 8 deletions
diff --git a/pcre.h.in b/pcre.h.in
index f568e3c..873911c 100644
--- a/pcre.h.in
+++ b/pcre.h.in
@@ -116,15 +116,15 @@ compiling). */
#define PCRE_NOTEOL 0x00000100 /* Exec, DFA exec */
#define PCRE_UNGREEDY 0x00000200 /* Compile */
#define PCRE_NOTEMPTY 0x00000400 /* Exec, DFA exec */
-/* The next two are also used in exec and DFA exec */
-#define PCRE_UTF8 0x00000800 /* Compile (same as PCRE_UTF16 and PCRE_UTF32) */
-#define PCRE_UTF16 0x00000800 /* Compile (same as PCRE_UTF8 and PCRE_UTF32) */
-#define PCRE_UTF32 0x00000800 /* Compile (same as PCRE_UTF8 and PCRE_UTF16) */
+/* The next three are all used in compile, exec and DFA exec */
+#define PCRE_UTF8 0x00000800 /* Same as PCRE_UTF16 and PCRE_UTF32 */
+#define PCRE_UTF16 0x00000800 /* Same as PCRE_UTF8 and PCRE_UTF32 */
+#define PCRE_UTF32 0x00000800 /* Same as PCRE_UTF8 and PCRE_UTF16 */
#define PCRE_NO_AUTO_CAPTURE 0x00001000 /* Compile */
-/* The next two are also used in exec and DFA exec */
-#define PCRE_NO_UTF8_CHECK 0x00002000 /* Compile (same as PCRE_NO_UTF16_CHECK and PCRE_NO_UTF32_CHECK) */
-#define PCRE_NO_UTF16_CHECK 0x00002000 /* Compile (same as PCRE_NO_UTF8_CHECK and PCRE_NO_UTF32_CHECK) */
-#define PCRE_NO_UTF32_CHECK 0x00002000 /* Compile (same as PCRE_NO_UTF8_CHECK and PCRE_NO_UTF16_CHECK) */
+/* The next three are all used in compile, exec and DFA exec */
+#define PCRE_NO_UTF8_CHECK 0x00002000 /* Same as PCRE_NO_UTF16_CHECK and PCRE_NO_UTF32_CHECK */
+#define PCRE_NO_UTF16_CHECK 0x00002000 /* Same as PCRE_NO_UTF8_CHECK and PCRE_NO_UTF32_CHECK */
+#define PCRE_NO_UTF32_CHECK 0x00002000 /* Same as PCRE_NO_UTF8_CHECK and PCRE_NO_UTF16_CHECK */
#define PCRE_AUTO_CALLOUT 0x00004000 /* Compile */
#define PCRE_PARTIAL_SOFT 0x00008000 /* Exec, DFA exec */
#define PCRE_PARTIAL 0x00008000 /* Backwards compatible synonym */