This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Fix \xa0 matching both [\s] [\S], et.al.
[perl5.git]
/
dist
/
B-Deparse
/
t
/
deparse.t
diff --git
a/dist/B-Deparse/t/deparse.t
b/dist/B-Deparse/t/deparse.t
index
89a4493
..
50baa90
100644
(file)
--- a/
dist/B-Deparse/t/deparse.t
+++ b/
dist/B-Deparse/t/deparse.t
@@
-247,7
+247,7
@@
my $foo;
$_ .= <ARGV> . <$foo>;
####
# \x{}
-my $foo = "Ab\x{100}\200\x{200}\
37
7Cd\000Ef\x{1000}\cA\x{2000}\cZ";
+my $foo = "Ab\x{100}\200\x{200}\
23
7Cd\000Ef\x{1000}\cA\x{2000}\cZ";
####
# s///e
s/x/'y';/e;