| 115 |
|
|
| 116 |
14. If erroroffset was passed as NULL to pcre_compile, it provoked a |
14. If erroroffset was passed as NULL to pcre_compile, it provoked a |
| 117 |
segmentation fault instead of returning the appropriate error message. |
segmentation fault instead of returning the appropriate error message. |
| 118 |
|
|
| 119 |
15. In multiline mode when the newline sequence was set to "any", the pattern |
15. In multiline mode when the newline sequence was set to "any", the pattern |
| 120 |
^$ would give a match between the \r and \n of a subject such as "A\r\nB". |
^$ would give a match between the \r and \n of a subject such as "A\r\nB". |
| 121 |
This doesn't seem right; it now treats the CRLF combination as the line |
This doesn't seem right; it now treats the CRLF combination as the line |
| 122 |
ending, and so does not match in that case. It's only a pattern such as ^$ |
ending, and so does not match in that case. It's only a pattern such as ^$ |
| 123 |
that would hit this one: something like ^ABC$ would have failed after \r |
that would hit this one: something like ^ABC$ would have failed after \r |
| 124 |
and then tried again after \r\n. |
and then tried again after \r\n. |
| 125 |
|
|
| 126 |
16. Changed the comparison command for RunGrepTest from "diff -u" to "diff -ub" |
16. Changed the comparison command for RunGrepTest from "diff -u" to "diff -ub" |
| 127 |
in an attempt to make files that differ only in their line terminators |
in an attempt to make files that differ only in their line terminators |
| 128 |
compare equal. This works on Linux. |
compare equal. This works on Linux. |
| 129 |
|
|
| 130 |
|
|
| 131 |
Version 7.0 19-Dec-06 |
Version 7.0 19-Dec-06 |