| 1 |
ChangeLog for PCRE |
ChangeLog for PCRE |
| 2 |
------------------ |
------------------ |
| 3 |
|
|
| 4 |
Version 7.2 19-June-07 |
Version 7.3 05-Jul-07 |
| 5 |
|
--------------------- |
| 6 |
|
|
| 7 |
|
1. In the rejigging of the build system that eventually resulted in 7.1, the |
| 8 |
|
line "#include <pcre.h>" was included in pcre_internal.h. The use of angle |
| 9 |
|
brackets there is not right, since it causes compilers to look for an |
| 10 |
|
installed pcre.h, not the version that is in the source that is being |
| 11 |
|
compiled (which of course may be different). I have changed it back to: |
| 12 |
|
|
| 13 |
|
#include "pcre.h" |
| 14 |
|
|
| 15 |
|
I have a vague recollection that the change was concerned with compiling in |
| 16 |
|
different directories, but in the new build system, that is taken care of |
| 17 |
|
by the VPATH setting the Makefile. |
| 18 |
|
|
| 19 |
|
2. The pattern .*$ when run in not-DOTALL UTF-8 mode with newline=any failed |
| 20 |
|
when the subject happened to end in the byte 0x85 (e.g. if the last |
| 21 |
|
character was \x{1ec5}). *Character* 0x85 is one of the "any" newline |
| 22 |
|
characters but of course it shouldn't be taken as a newline when it is part |
| 23 |
|
of another character. The bug was that, for an unlimited repeat of . in |
| 24 |
|
not-DOTALL UTF-8 mode, PCRE was advancing by bytes rather than by |
| 25 |
|
characters when looking for a newline. |
| 26 |
|
|
| 27 |
|
3. A small performance improvement in the DOTALL UTF-8 mode .* case. |
| 28 |
|
|
| 29 |
|
4. Debugging: adjusted the names of opcodes for different kinds of parentheses |
| 30 |
|
in debug output. |
| 31 |
|
|
| 32 |
|
5. Arrange to use "%I64d" instead of "%lld" for long printing in the pcrecpp |
| 33 |
|
unittest when running under MinGW. |
| 34 |
|
|
| 35 |
|
|
| 36 |
|
|
| 37 |
|
Version 7.2 19-Jun-07 |
| 38 |
--------------------- |
--------------------- |
| 39 |
|
|
| 40 |
1. If the fr_FR locale cannot be found for test 3, try the "french" locale, |
1. If the fr_FR locale cannot be found for test 3, try the "french" locale, |
| 101 |
pcrecpp::RE("a*").FullMatch("aaa") matches, while |
pcrecpp::RE("a*").FullMatch("aaa") matches, while |
| 102 |
pcrecpp::RE("a*?").FullMatch("aaa") does not, and |
pcrecpp::RE("a*?").FullMatch("aaa") does not, and |
| 103 |
pcrecpp::RE("a*?\\z").FullMatch("aaa") does again. |
pcrecpp::RE("a*?\\z").FullMatch("aaa") does again. |
| 104 |
|
|
| 105 |
12. If \p or \P was used in non-UTF-8 mode on a character greater than 127 |
12. If \p or \P was used in non-UTF-8 mode on a character greater than 127 |
| 106 |
it matched the wrong number of bytes. |
it matched the wrong number of bytes. |
| 107 |
|
|
| 108 |
|
|
| 109 |
Version 7.1 24-Apr-07 |
Version 7.1 24-Apr-07 |