diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-10-27 10:18:34 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-10-27 10:56:06 -0600 |
commit | 1978b668ca7817baf02fb20a49327ab82da3bcd4 (patch) | |
tree | f5cc50443a699b835bf2f950b668f5d150654e5c /t/re | |
parent | 4f03b4b68c373d6b483f2a44808498ec2c2bf9f7 (diff) | |
download | perl-1978b668ca7817baf02fb20a49327ab82da3bcd4.tar.gz |
PATCH: [perl #99928] Document that is not a bug
After consulting with Tom Christiansen, we decided that this is not a
bug. The CR-LF sequence is considered a unit by Unicode, and so should
be inseperable, even when separating the two would cause a pattern to
match that otherwise fails.
Diffstat (limited to 't/re')
-rw-r--r-- | t/re/re_tests | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/re/re_tests b/t/re/re_tests index e89e0ac6c8..1f8c80ab0c 100644 --- a/t/re/re_tests +++ b/t/re/re_tests @@ -1539,7 +1539,7 @@ abc\N{def - c - \\N{NAME} must be resolved by the lexer /s\xDF/ui \xDFs yT $& \xDFs # RT #99928 -/^\R\x0A$/ \x0D\x0A yT $& \x0D\x0A +/^\R\x0A$/ \x0D\x0A n - - /ff/i \x{FB00}\x{FB01} y $& \x{FB00} /ff/i \x{FB01}\x{FB00} y $& \x{FB00} |