summaryrefslogtreecommitdiff
path: root/regen/mk_PL_charclass.pl
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2015-02-20 11:10:05 -0700
committerKarl Williamson <khw@cpan.org>2015-02-21 12:48:04 -0700
commit779cf272a07d560ad97de0fec1722d5e3f10e351 (patch)
tree118b49e4a562b0939c92b81bdcf7ec797595830e /regen/mk_PL_charclass.pl
parent687ffedd21ab291b3c138bcffbe99168f79d3e26 (diff)
downloadperl-779cf272a07d560ad97de0fec1722d5e3f10e351.tar.gz
\s matching VT is no longer experimental
This was experimentally introduced in 5.18, and no issues were raised, except that it got us to thinking and spurred us to stop allowing $^X, where 'X' is a non-printable control character, and that change caused some issues.
Diffstat (limited to 'regen/mk_PL_charclass.pl')
-rw-r--r--regen/mk_PL_charclass.pl3
1 files changed, 0 insertions, 3 deletions
diff --git a/regen/mk_PL_charclass.pl b/regen/mk_PL_charclass.pl
index 8a682dc3c7..4b46bd0542 100644
--- a/regen/mk_PL_charclass.pl
+++ b/regen/mk_PL_charclass.pl
@@ -38,7 +38,6 @@ my @properties = qw(
LOWER
NON_FINAL_FOLD
PRINT
- PSXSPC
PUNCT
QUOTEMETA
SPACE
@@ -219,8 +218,6 @@ for my $ord (0..255) {
$re = qr/\p{XPerlSpace}/;
} elsif ($name eq 'IDFIRST') {
$re = qr/[_\p{Alpha}]/;
- } elsif ($name eq 'PSXSPC') {
- $re = qr/[\v\p{Space}]/;
} elsif ($name eq 'WORDCHAR') {
$re = qr/\p{XPosixWord}/;
} elsif ($name eq 'ALPHANUMERIC') {