| 16 |
|
|
| 17 |
5. Fixed several bugs concerned with partial matching of items that consist |
5. Fixed several bugs concerned with partial matching of items that consist |
| 18 |
of more than one character: |
of more than one character: |
| 19 |
|
|
| 20 |
(a) /^(..)\1/ did not partially match "aba" because checking references was |
(a) /^(..)\1/ did not partially match "aba" because checking references was |
| 21 |
done on an "all or nothing" basis. This also applied to repeated |
done on an "all or nothing" basis. This also applied to repeated |
| 22 |
references. |
references. |
| 23 |
|
|
| 24 |
(b) \R did not give a hard partial match if \r was found at the end of the |
(b) \R did not give a hard partial match if \r was found at the end of the |
| 25 |
subject. |
subject. |
| 26 |
|
|
| 27 |
(c) \X did not give a hard partial match after matching one or more |
(c) \X did not give a hard partial match after matching one or more |
| 28 |
characters at the end of the subject. |
characters at the end of the subject. |
| 29 |
|
|
| 30 |
(d) When newline was set to CRLF, a pattern such as /a$/ did not recognize |
(d) When newline was set to CRLF, a pattern such as /a$/ did not recognize |
| 31 |
a partial match for the string "\r". |
a partial match for the string "\r". |
| 32 |
|
|
| 33 |
(e) When newline was set to CRLF, the metacharacter "." did not recognize |
(e) When newline was set to CRLF, the metacharacter "." did not recognize |
| 34 |
a partial match for a CR character at the end of the subject string. |
a partial match for a CR character at the end of the subject string. |
| 35 |
|
|
| 36 |
|
6. If JIT is requested using /S++ or -s++ (instead of just /S+ or -s+) when |
| 37 |
|
running pcretest, the text "(JIT)" added to the output whenever JIT is |
| 38 |
|
actually used to run the match. |
| 39 |
|
|
| 40 |
|
7. Individual JIT compile options can be set in pcretest by following -s+[+] |
| 41 |
|
or /S+[+] with a digit between 1 and 7. |
| 42 |
|
|
| 43 |
|
8. OP_NOT now supports any UTF character not just single-byte ones. |
| 44 |
|
|
| 45 |
|
9. (*MARK) control verb is now supported by the JIT compiler. |
| 46 |
|
|
| 47 |
|
10. The command "./RunTest list" lists the available tests without actually |
| 48 |
|
running any of them. (Because I keep forgetting what they all are.) |
| 49 |
|
|
| 50 |
|
11. Add PCRE_INFO_MAXLOOKBEHIND. |
| 51 |
|
|
| 52 |
|
12. Applied a (slightly modified) user-supplied patch that improves performance |
| 53 |
|
when the heap is used for recursion (compiled with --disable-stack-for- |
| 54 |
|
recursion). Instead of malloc and free for each heap frame each time a |
| 55 |
|
logical recursion happens, frames are retained on a chain and re-used where |
| 56 |
|
possible. This sometimes gives as much as 30% improvement. |
| 57 |
|
|
| 58 |
|
|
| 59 |
Version 8.30 04-February-2012 |
Version 8.30 04-February-2012 |
| 60 |
----------------------------- |
----------------------------- |