Documentation update.
This commit is contained in:
parent
a5da70b28c
commit
f7e077c746
|
@ -1,4 +1,4 @@
|
||||||
.TH PCRE2JIT 3 "05 June 2016" "PCRE2 10.22"
|
.TH PCRE2JIT 3 "30 March 2017" "PCRE2 10.30"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
PCRE2 - Perl-compatible regular expressions (revised API)
|
PCRE2 - Perl-compatible regular expressions (revised API)
|
||||||
.SH "PCRE2 JUST-IN-TIME COMPILER SUPPORT"
|
.SH "PCRE2 JUST-IN-TIME COMPILER SUPPORT"
|
||||||
|
@ -152,7 +152,7 @@ below for a discussion of JIT stack usage.
|
||||||
The error code PCRE2_ERROR_MATCHLIMIT is returned by the JIT code if searching
|
The error code PCRE2_ERROR_MATCHLIMIT is returned by the JIT code if searching
|
||||||
a very large pattern tree goes on for too long, as it is in the same
|
a very large pattern tree goes on for too long, as it is in the same
|
||||||
circumstance when JIT is not used, but the details of exactly what is counted
|
circumstance when JIT is not used, but the details of exactly what is counted
|
||||||
are not the same. The PCRE2_ERROR_RECURSIONLIMIT error code is never returned
|
are not the same. The PCRE2_ERROR_DEPTHLIMIT error code is never returned
|
||||||
when JIT matching is used.
|
when JIT matching is used.
|
||||||
.
|
.
|
||||||
.
|
.
|
||||||
|
@ -413,6 +413,6 @@ Cambridge, England.
|
||||||
.rs
|
.rs
|
||||||
.sp
|
.sp
|
||||||
.nf
|
.nf
|
||||||
Last updated: 05 June 2016
|
Last updated: 30 March 2017
|
||||||
Copyright (c) 1997-2016 University of Cambridge.
|
Copyright (c) 1997-2017 University of Cambridge.
|
||||||
.fi
|
.fi
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH PCRE2LIMITS 3 "26 October 2016" "PCRE2 10.23"
|
.TH PCRE2LIMITS 3 "30 March 2017" "PCRE2 10.30"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
PCRE2 - Perl-compatible regular expressions (revised API)
|
PCRE2 - Perl-compatible regular expressions (revised API)
|
||||||
.SH "SIZE AND OTHER LIMITATIONS"
|
.SH "SIZE AND OTHER LIMITATIONS"
|
||||||
|
@ -30,15 +30,6 @@ integer type, usually defined as size_t. Its maximum value (that is
|
||||||
~(PCRE2_SIZE)0) is reserved as a special indicator for zero-terminated strings
|
~(PCRE2_SIZE)0) is reserved as a special indicator for zero-terminated strings
|
||||||
and unset offsets.
|
and unset offsets.
|
||||||
.P
|
.P
|
||||||
Note that when using the traditional matching function, PCRE2 uses recursion to
|
|
||||||
handle subpatterns and indefinite repetition. This means that the available
|
|
||||||
stack space may limit the size of a subject string that can be processed by
|
|
||||||
certain patterns. For a discussion of stack issues, see the
|
|
||||||
.\" HREF
|
|
||||||
\fBpcre2stack\fP
|
|
||||||
.\"
|
|
||||||
documentation.
|
|
||||||
.P
|
|
||||||
All values in repeating quantifiers must be less than 65536.
|
All values in repeating quantifiers must be less than 65536.
|
||||||
.P
|
.P
|
||||||
The maximum length of a lookbehind assertion is 65535 characters.
|
The maximum length of a lookbehind assertion is 65535 characters.
|
||||||
|
@ -76,6 +67,6 @@ Cambridge, England.
|
||||||
.rs
|
.rs
|
||||||
.sp
|
.sp
|
||||||
.nf
|
.nf
|
||||||
Last updated: 26 October 2016
|
Last updated: 30 March 2017
|
||||||
Copyright (c) 1997-2016 University of Cambridge.
|
Copyright (c) 1997-2017 University of Cambridge.
|
||||||
.fi
|
.fi
|
||||||
|
|
Loading…
Reference in New Issue