diff options
author | Karl Williamson <khw@cpan.org> | 2017-11-30 13:47:30 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2017-11-30 13:56:29 -0700 |
commit | 21baa9a2e2a9246add77c4670eeee6383cc1ccb9 (patch) | |
tree | ea49094bed870c512e7355e1390dd1fcc22e5504 /lib/unicore | |
parent | b9ed226ea83c3e6793242859ed66a48c851a6872 (diff) | |
download | perl-21baa9a2e2a9246add77c4670eeee6383cc1ccb9.tar.gz |
perluniprops: Display controls sorted by alpha
The complete set of C0 controls is listed by standard abbreviation, but
it is better to display them alphabetically, and not in ASCII-platform
code point order.
Diffstat (limited to 'lib/unicore')
-rw-r--r-- | lib/unicore/mktables | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/unicore/mktables b/lib/unicore/mktables index c168d3972e..032701b663 100644 --- a/lib/unicore/mktables +++ b/lib/unicore/mktables @@ -14611,7 +14611,12 @@ sub compile_perl() { Description => 'Control characters'); $Cntrl->set_equivalent_to($gc->table('Cc'), Related => 1); $perl->add_match_table("PosixCntrl", - 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", + Description => "ASCII control characters " + . "ACK, BEL, BS, CAN, CR, DC1, DC2," + . " DC3, DC4, DEL, DLE, ENQ, EOM," + . " EOT, ESC, ETB, ETX, FF, FS, GS," + . " HT, LF, NAK, NUL, RS, SI, SO," + . " SOH, STX, SUB, SYN, US, VT", Initialize => $Cntrl & $ASCII, ); |