Skip to content

Commit 3c63476

Browse files
Sync autogenerated files #noupdate
1 parent 5a6b32c commit 3c63476

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

doc/html/NON-AUTOTOOLS-BUILD.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ example.
171171
src/config.h) . Compile src/pcre2test.c; don't forget -DHAVE_CONFIG_H if
172172
necessary, but do NOT define PCRE2_CODE_UNIT_WIDTH. Then link with the
173173
appropriate library/ies. If you compiled an 8-bit library, pcre2test also
174-
needs the pcre2posix wrapper library.
174+
needs the pcre2posix wrapper library when linking.
175175

176176
(9) Run pcre2test on the testinput files in the testdata directory, and check
177177
that the output matches the corresponding testoutput files. There are

doc/html/pcre2api.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1374,7 +1374,7 @@ <h2><a name="SEC19" href="#TOC1">CHECKING BUILD-TIME OPTIONS</a></h2>
13741374
<pre>
13751375
PCRE2_CONFIG_JITTARGET
13761376
</pre>
1377-
The <i>where</i> argument should point to a buffer that is at least 48 code
1377+
The <i>where</i> argument should point to a buffer that is at least 64 code
13781378
units long. (The exact length required can be found by calling
13791379
<b>pcre2_config()</b> with <b>where</b> set to NULL.) The buffer is filled with a
13801380
string that contains the name of the architecture for which the JIT compiler is
@@ -4614,7 +4614,7 @@ <h2><a name="SEC43" href="#TOC1">AUTHOR</a></h2>
46144614
</p>
46154615
<h2><a name="SEC44" href="#TOC1">REVISION</a></h2>
46164616
<p>
4617-
Last updated: 19 July 2025
4617+
Last updated: 05 October 2025
46184618
<br>
46194619
Copyright &copy; 1997-2024 University of Cambridge.
46204620
<br>

doc/html/pcre2build.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,8 @@ <h2><a name="SEC5" href="#TOC1">UNICODE AND UTF SUPPORT</a></h2>
157157
0x10ffff in the strings that they handle. Unicode support also gives access to
158158
the Unicode properties of characters, using pattern escapes such as \P, \p,
159159
and \X. Only the general category properties such as <i>Lu</i> and <i>Nd</i>,
160-
script names, and some bi-directional properties are supported. Details are
161-
given in the
160+
script names, and some bi-directional and binary properties are supported.
161+
Details are given in the
162162
<a href="pcre2pattern.html"><b>pcre2pattern</b></a>
163163
documentation.
164164
</p>
@@ -172,8 +172,8 @@ <h2><a name="SEC6" href="#TOC1">DISABLING THE USE OF \C</a></h2>
172172
<p>
173173
The \C escape sequence, which matches a single code unit, even in a UTF mode,
174174
can cause unpredictable behaviour because it may leave the current matching
175-
point in the middle of a multi-code-unit character. The application can lock it
176-
out by setting the PCRE2_NEVER_BACKSLASH_C option when calling
175+
point in the middle of a multi-code-unit character. The application can lock
176+
it out by setting the PCRE2_NEVER_BACKSLASH_C option when calling
177177
<b>pcre2_compile()</b>. There is also a build-time option
178178
<pre>
179179
--enable-never-backslash-C
@@ -516,7 +516,7 @@ <h2><a name="SEC18" href="#TOC1">PCRE2TEST OPTION FOR LIBREADLINE SUPPORT</a></h
516516
If your environment has not been set up so that an appropriate library is
517517
automatically included, you may need to add something like
518518
<pre>
519-
LIBS="-ncurses"
519+
LIBS="-lncurses"
520520
</pre>
521521
immediately before the <b>configure</b> command.
522522
</p>

doc/pcre2.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1364,7 +1364,7 @@ CHECKING BUILD-TIME OPTIONS
13641364

13651365
PCRE2_CONFIG_JITTARGET
13661366

1367-
The where argument should point to a buffer that is at least 48 code
1367+
The where argument should point to a buffer that is at least 64 code
13681368
units long. (The exact length required can be found by calling
13691369
pcre2_config() with where set to NULL.) The buffer is filled with a
13701370
string that contains the name of the architecture for which the JIT
@@ -4410,11 +4410,11 @@ AUTHOR
44104410

44114411
REVISION
44124412

4413-
Last updated: 19 July 2025
4413+
Last updated: 05 October 2025
44144414
Copyright (c) 1997-2024 University of Cambridge.
44154415

44164416

4417-
PCRE2 10.47-DEV 19 July 2025 PCRE2API(3)
4417+
PCRE2 10.47-DEV 05 October 2025 PCRE2API(3)
44184418
------------------------------------------------------------------------------
44194419

44204420

@@ -4538,8 +4538,8 @@ UNICODE AND UTF SUPPORT
45384538
0x10ffff in the strings that they handle. Unicode support also gives
45394539
access to the Unicode properties of characters, using pattern escapes
45404540
such as \P, \p, and \X. Only the general category properties such as Lu
4541-
and Nd, script names, and some bi-directional properties are supported.
4542-
Details are given in the pcre2pattern documentation.
4541+
and Nd, script names, and some bi-directional and binary properties are
4542+
supported. Details are given in the pcre2pattern documentation.
45434543

45444544
Pattern escapes such as \d and \w do not by default make use of Unicode
45454545
properties. The application can request that they do by setting the
@@ -4906,7 +4906,7 @@ PCRE2TEST OPTION FOR LIBREADLINE SUPPORT
49064906
If your environment has not been set up so that an appropriate library
49074907
is automatically included, you may need to add something like
49084908

4909-
LIBS="-ncurses"
4909+
LIBS="-lncurses"
49104910

49114911
immediately before the configure command.
49124912

0 commit comments

Comments
 (0)