| 15 |
I have a vague recollection that the change was concerned with compiling in |
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 |
different directories, but in the new build system, that is taken care of |
| 17 |
by the VPATH setting the Makefile. |
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 |
|
|