Documentation minor text fixes.
This commit is contained in:
parent
794470b51d
commit
c99f0738c5
|
@ -4,7 +4,7 @@ Change Log for PCRE2
|
||||||
Version 10.39-RC1 xx-xxx-2021
|
Version 10.39-RC1 xx-xxx-2021
|
||||||
-----------------------------
|
-----------------------------
|
||||||
|
|
||||||
1. Fix incorrect detection of alternatives in first character search.
|
1. Fix incorrect detection of alternatives in first character search in JIT.
|
||||||
|
|
||||||
|
|
||||||
Version 10.38 01-October-2021
|
Version 10.38 01-October-2021
|
||||||
|
|
|
@ -2899,7 +2899,7 @@ breaks):
|
||||||
(?(DEFINE) (?<byte> 2[0-4]\d | 25[0-5] | 1\d\d | [1-9]?\d) )
|
(?(DEFINE) (?<byte> 2[0-4]\d | 25[0-5] | 1\d\d | [1-9]?\d) )
|
||||||
\b (?&byte) (\.(?&byte)){3} \b
|
\b (?&byte) (\.(?&byte)){3} \b
|
||||||
</pre>
|
</pre>
|
||||||
The first part of the pattern is a DEFINE group inside which a another group
|
The first part of the pattern is a DEFINE group inside which another group
|
||||||
named "byte" is defined. This matches an individual component of an IPv4
|
named "byte" is defined. This matches an individual component of an IPv4
|
||||||
address (a number less than 256). When matching takes place, this part of the
|
address (a number less than 256). When matching takes place, this part of the
|
||||||
pattern is skipped because DEFINE acts like a false condition. The rest of the
|
pattern is skipped because DEFINE acts like a false condition. The rest of the
|
||||||
|
|
|
@ -8739,7 +8739,7 @@ CONDITIONAL GROUPS
|
||||||
(?(DEFINE) (?<byte> 2[0-4]\d | 25[0-5] | 1\d\d | [1-9]?\d) )
|
(?(DEFINE) (?<byte> 2[0-4]\d | 25[0-5] | 1\d\d | [1-9]?\d) )
|
||||||
\b (?&byte) (\.(?&byte)){3} \b
|
\b (?&byte) (\.(?&byte)){3} \b
|
||||||
|
|
||||||
The first part of the pattern is a DEFINE group inside which a another
|
The first part of the pattern is a DEFINE group inside which another
|
||||||
group named "byte" is defined. This matches an individual component of
|
group named "byte" is defined. This matches an individual component of
|
||||||
an IPv4 address (a number less than 256). When matching takes place,
|
an IPv4 address (a number less than 256). When matching takes place,
|
||||||
this part of the pattern is skipped because DEFINE acts like a false
|
this part of the pattern is skipped because DEFINE acts like a false
|
||||||
|
|
|
@ -2930,7 +2930,7 @@ breaks):
|
||||||
(?(DEFINE) (?<byte> 2[0-4]\ed | 25[0-5] | 1\ed\ed | [1-9]?\ed) )
|
(?(DEFINE) (?<byte> 2[0-4]\ed | 25[0-5] | 1\ed\ed | [1-9]?\ed) )
|
||||||
\eb (?&byte) (\e.(?&byte)){3} \eb
|
\eb (?&byte) (\e.(?&byte)){3} \eb
|
||||||
.sp
|
.sp
|
||||||
The first part of the pattern is a DEFINE group inside which a another group
|
The first part of the pattern is a DEFINE group inside which another group
|
||||||
named "byte" is defined. This matches an individual component of an IPv4
|
named "byte" is defined. This matches an individual component of an IPv4
|
||||||
address (a number less than 256). When matching takes place, this part of the
|
address (a number less than 256). When matching takes place, this part of the
|
||||||
pattern is skipped because DEFINE acts like a false condition. The rest of the
|
pattern is skipped because DEFINE acts like a false condition. The rest of the
|
||||||
|
|
Loading…
Reference in New Issue