diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-08-14 22:00:16 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-08-14 22:07:47 -0600 |
commit | 814465b7a052811f451e6331358d951096cf249f (patch) | |
tree | bca025e994eec097f0950baee66e9160f8f4e6fb /lib | |
parent | 88b3a463c4e11c60eea2075693434b32f43e57fe (diff) | |
download | perl-814465b7a052811f451e6331358d951096cf249f.tar.gz |
perluniprops: Add missing character to what's matched
mktables omitted the equal sign from the generated pod for certain
properties that should match it.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/unicore/mktables | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/unicore/mktables b/lib/unicore/mktables index 5bb67e9f98..807fb31259 100644 --- a/lib/unicore/mktables +++ b/lib/unicore/mktables @@ -13254,7 +13254,7 @@ sub compile_perl() { $Graph->add_alias('XPosixGraph'); $perl->add_match_table("PosixGraph", Description => - '[-!"#$%&\'()*+,./:;<>?@[\\\]^_`{|}~0-9A-Za-z]', + '[-!"#$%&\'()*+,./:;<=>?@[\\\]^_`{|}~0-9A-Za-z]', Initialize => $Graph & $ASCII, ); @@ -13265,7 +13265,7 @@ sub compile_perl() { $print->add_alias('XPosixPrint'); $perl->add_match_table("PosixPrint", Description => - '[- 0-9A-Za-z!"#$%&\'()*+,./:;<>?@[\\\]^_`{|}~]', + '[- 0-9A-Za-z!"#$%&\'()*+,./:;<=>?@[\\\]^_`{|}~]', Initialize => $print & $ASCII, ); @@ -13280,7 +13280,7 @@ sub compile_perl() { Perl_Extension => 1 ); $perl->add_match_table('PosixPunct', Perl_Extension => 1, - Description => '[-!"#$%&\'()*+,./:;<>?@[\\\]^_`{|}~]', + Description => '[-!"#$%&\'()*+,./:;<=>?@[\\\]^_`{|}~]', Initialize => $ASCII & $XPosixPunct, ); |