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
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e2cfb18
)
perluniprops: specify exact chars in PerlSpace
author
Karl Williamson
<public@khwilliamson.com>
Mon, 25 Apr 2011 00:06:14 +0000
(18:06 -0600)
committer
Karl Williamson
<public@khwilliamson.com>
Wed, 18 May 2011 17:15:08 +0000
(11:15 -0600)
lib/unicore/mktables
patch
|
blob
|
blame
|
history
diff --git
a/lib/unicore/mktables
b/lib/unicore/mktables
index
05f9b84
..
a2a9d0c
100644
(file)
--- a/
lib/unicore/mktables
+++ b/
lib/unicore/mktables
@@
-11552,8
+11552,8
@@
sub compile_perl() {
);
$XPerlSpace->add_alias('SpacePerl'); # A pre-existing synonym
my $PerlSpace = $perl->add_match_table('PerlSpace',
-
Description => '\s, restricted to ASCII
',
-
Initialize => $XPerlSpace & $ASCII,
+
Description => '\s, restricted to ASCII = [ \f\n\r\t]
',
+ Initialize => $XPerlSpace & $ASCII,
);