my $Print = $perl->add_match_table('Print',
Description => "[[:Print:]] extended beyond ASCII",
- Initialize => $Space + $Graph - $gc->table('Control'),
+ Initialize => $Blank + $Graph - $gc->table('Control'),
);
$posix_equivalent{'Print'} = $Print;
$posix_equivalent{'Digit'} = $Digit;
# AHex was not present in early releases
+ # XXX TUS recommends Hex_Digit, not ASCII_Hex_Digit.
my $Xdigit = $perl->add_match_table('XDigit',
Description => '[0-9A-Fa-f]');
my $AHex = property_ref('ASCII_Hex_Digit');
Error('\p{Script=InGreek}'); # Bug #69018
Test_X("1100 $nobreak 1161"); # Bug #70940
+Expect(0, 0x2028, '\p{Print}', ""); # Bug # 71722
+Expect(0, 0x2029, '\p{Print}', ""); # Bug # 71722
=item B<C<\p{Print}>>
-This matches any character that is graphical or is space, but not a control.
+This matches any character that is graphical or blank, except controls.
=item B<C<\p{SpacePerl}>>