summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2010-11-21 18:51:22 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2010-11-21 18:51:22 +0000
commit5f27c5877073e20515e674f9749251fb6710937d (patch)
tree1140f72b06aedba7dd587e0f6394f228d837dccc
parent6bd55b864efee297700d9aa850c31a98a1fdee85 (diff)
downloadpcre-5f27c5877073e20515e674f9749251fb6710937d.tar.gz
More documentation for (*NO_START_OPT).
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@577 2f5784b3-3f2a-0410-8824-cb99058d5e15
-rw-r--r--doc/pcrecallout.310
-rw-r--r--doc/pcrepattern.33
2 files changed, 7 insertions, 6 deletions
diff --git a/doc/pcrecallout.3 b/doc/pcrecallout.3
index b691a16..000e224 100644
--- a/doc/pcrecallout.3
+++ b/doc/pcrecallout.3
@@ -61,9 +61,9 @@ if the subject is not long enough, or, for unanchored patterns, if it has
been scanned far enough.
.P
You can disable these optimizations by passing the PCRE_NO_START_OPTIMIZE
-option to \fBpcre_exec()\fP or \fBpcre_dfa_exec()\fP. This slows down the
-matching process, but does ensure that callouts such as the example above are
-obeyed.
+option to \fBpcre_compile()\fP, \fBpcre_exec()\fP, or \fBpcre_dfa_exec()\fP,
+or by starting the pattern with (*NO_START_OPT). This slows down the matching
+process, but does ensure that callouts such as the example above are obeyed.
.
.
.SH "THE CALLOUT INTERFACE"
@@ -184,6 +184,6 @@ Cambridge CB2 3QH, England.
.rs
.sp
.nf
-Last updated: 29 September 2009
-Copyright (c) 1997-2009 University of Cambridge.
+Last updated: 21 November 2010
+Copyright (c) 1997-2010 University of Cambridge.
.fi
diff --git a/doc/pcrepattern.3 b/doc/pcrepattern.3
index 049afe6..de839e1 100644
--- a/doc/pcrepattern.3
+++ b/doc/pcrepattern.3
@@ -2502,7 +2502,8 @@ minimum length of matching subject, or that a particular character must be
present. When one of these optimizations suppresses the running of a match, any
included backtracking verbs will not, of course, be processed. You can suppress
the start-of-match optimizations by setting the PCRE_NO_START_OPTIMIZE option
-when calling \fBpcre_exec()\fP.
+when calling \fBpcre_compile()\fP or \fBpcre_exec()\fP, or by starting the
+pattern with (*NO_START_OPT).
.
.
.SS "Verbs that act immediately"