| 40 |
|
|
| 41 |
(f) \g{name} is another synonym - part of Perl 5.10's unification of |
(f) \g{name} is another synonym - part of Perl 5.10's unification of |
| 42 |
reference syntax. |
reference syntax. |
| 43 |
|
|
| 44 |
|
(g) (?| introduces a group in which the numbering of parentheses in each |
| 45 |
|
alternative starts with the same number. |
| 46 |
|
|
| 47 |
|
(h) \h, \H, \v, and \V match horizontal and vertical whitespace. |
| 48 |
|
|
| 49 |
7. Added two new calls to pcre_fullinfo(): PCRE_INFO_OKPARTIAL and |
7. Added two new calls to pcre_fullinfo(): PCRE_INFO_OKPARTIAL and |
| 50 |
PCRE_INFO_JCHANGED. |
PCRE_INFO_JCHANGED. |
| 59 |
bit of new cunning has reduced the workspace needed for groups with |
bit of new cunning has reduced the workspace needed for groups with |
| 60 |
alternatives. The 1000-alternative test pattern now uses 12 bytes of |
alternatives. The 1000-alternative test pattern now uses 12 bytes of |
| 61 |
workspace instead of running out of the 4096 that are available. |
workspace instead of running out of the 4096 that are available. |
| 62 |
|
|
| 63 |
|
10. Inserted some missing (unsigned int) casts to get rid of compiler warnings. |
| 64 |
|
|
| 65 |
|
11. Applied patch from Google to remove an optimization that didn't quite work. |
| 66 |
|
The report of the bug said: |
| 67 |
|
|
| 68 |
|
pcrecpp::RE("a*").FullMatch("aaa") matches, while |
| 69 |
|
pcrecpp::RE("a*?").FullMatch("aaa") does not, and |
| 70 |
|
pcrecpp::RE("a*?\\z").FullMatch("aaa") does again. |
| 71 |
|
|
| 72 |
|
|
| 73 |
Version 7.1 24-Apr-07 |
Version 7.1 24-Apr-07 |