summaryrefslogtreecommitdiff
path: root/doc/pcre_compile.3
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2010-05-18 15:47:01 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2010-05-18 15:47:01 +0000
commit8f8b41c565c70ab99dd21a81f71a512958f867b5 (patch)
treebb68328d748e596f734ebd085e4b3f648452ab61 /doc/pcre_compile.3
parent85b995f30cc9bf0bb04f5b3b3707a216a56b6bdf (diff)
downloadpcre-8f8b41c565c70ab99dd21a81f71a512958f867b5.tar.gz
Added PCRE_UCP and related stuff to make \w etc use Unicode properties.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@518 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'doc/pcre_compile.3')
-rw-r--r--doc/pcre_compile.33
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/pcre_compile.3 b/doc/pcre_compile.3
index e64288a..f0861d7 100644
--- a/doc/pcre_compile.3
+++ b/doc/pcre_compile.3
@@ -55,11 +55,12 @@ The option bits are:
PCRE_NO_UTF8_CHECK Do not check the pattern for UTF-8
validity (only relevant if
PCRE_UTF8 is set)
+ PCRE_UCP Use Unicode properties for \ed, \ew, etc.
PCRE_UNGREEDY Invert greediness of quantifiers
PCRE_UTF8 Run in UTF-8 mode
.sp
PCRE must be built with UTF-8 support in order to use PCRE_UTF8 and
-PCRE_NO_UTF8_CHECK.
+PCRE_NO_UTF8_CHECK, and with UCP support if PCRE_UCP is used.
.P
The yield of the function is a pointer to a private data structure that
contains the compiled pattern, or NULL if an error was detected. Note that