summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorkarl williamson (via RT) <perlbug-followup@perl.org>2010-05-01 09:35:34 -0700
committerH.Merijn Brand <h.m.brand@xs4all.nl>2010-05-03 07:53:08 +0200
commitf38f76ae8646ea71778a38f2a33a5c8e091d006f (patch)
tree448be93a72c68366005f4c105dc9f6c94e392943 /lib
parente0fa7e2be05466f132eb653ebe7b2f9664ffcb3b (diff)
downloadperl-f38f76ae8646ea71778a38f2a33a5c8e091d006f.tar.gz
PATCH: Make perluniprops.pod platform neutral
# New Ticket Created by karl williamson # Please include the string: [perl #74830] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=74830 > This is accomplished by changing mktables which generates it >From d114f6f25c763ecbd00d6271462e5d5c272457e7 Mon Sep 17 00:00:00 2001 From: Karl Williamson <khw@khw-desktop.(none)> Date: Sat, 1 May 2010 09:22:32 -0600 Subject: [PATCH] Add missing comma to generated pod Signed-off-by: H.Merijn Brand <h.m.brand@xs4all.nl>
Diffstat (limited to 'lib')
-rw-r--r--lib/unicore/mktables14
1 files changed, 8 insertions, 6 deletions
diff --git a/lib/unicore/mktables b/lib/unicore/mktables
index bdc5838309..73ca9707e1 100644
--- a/lib/unicore/mktables
+++ b/lib/unicore/mktables
@@ -10821,7 +10821,7 @@ sub compile_perl() {
my $Pc = $gc->table('Connector_Punctuation'); # 'Pc' Not in release 1
$Word += $Pc if defined $Pc;
- # There is no [[:Word:]], so the name doesn't begin with Posix.
+ # This is a Perl extension, so the name doesn't begin with Posix.
$perl->add_match_table('PerlWord',
Description => '\w, restricted to ASCII = [A-Za-z0-9_]',
Initialize => $Word & $ASCII,
@@ -10860,7 +10860,7 @@ sub compile_perl() {
Initialize => $Blank + $VertSpace,
);
$perl->add_match_table("PosixSpace",
- Description => "\\t \\n, \\x0B, \\f, \\r, and ' '",
+ Description => "\\t, \\n, \\cK, \\f, \\r, and ' '. (\\cK is vertical tab)",
Initialize => $Space & $ASCII,
);
@@ -10878,7 +10878,7 @@ sub compile_perl() {
Description => 'Control characters');
$Cntrl->set_equivalent_to($gc->table('Cc'), Related => 1);
$perl->add_match_table("PosixCntrl",
- Description => '[\x00-\x1F]',
+ Description => "ASCII control characters: NUL, SOH, STX, ETX, EOT, ENQ, ACK, BEL, BS, HT, LF, VT, FF, CR, SO, SI, DLE, DC1, DC2, DC3, DC4, NAK, SYN, ETB, CAN, EOM, SUB, ESC, FS, GS, RS, US, and DEL",
Initialize => $Cntrl & $ASCII,
);
@@ -10894,7 +10894,8 @@ sub compile_perl() {
Initialize => ~ ($Space + $controls),
);
$perl->add_match_table("PosixGraph",
- Description => '[\x21-\x7E]',
+ Description =>
+ '[-!"#$%&\'()*+,./:;<>?@[\\\]^_`{|}~0-9A-Za-z]',
Initialize => $Graph & $ASCII,
);
@@ -10903,7 +10904,8 @@ sub compile_perl() {
Initialize => $Blank + $Graph - $gc->table('Control'),
);
$perl->add_match_table("PosixPrint",
- Description => '[\x20-\x7E]',
+ Description =>
+ '[- 0-9A-Za-z!"#$%&\'()*+,./:;<>?@[\\\]^_`{|}~]',
Initialize => $Print & $ASCII,
);
@@ -10912,7 +10914,7 @@ sub compile_perl() {
# \p{punct} doesn't include the symbols, which posix does
$perl->add_match_table('PosixPunct',
- Description => 'Graphical characters that aren\'t Word characters = [\x21-\x2F\x3A-\x40\x5B-\x60\x7B-\x7E]',
+ Description => '[-!"#$%&\'()*+,./:;<>?@[\\\]^_`{|}~]',
Initialize => $ASCII & ($gc->table('Punctuation')
+ $gc->table('Symbol')),
);