summaryrefslogtreecommitdiff
path: root/share/locale
diff options
context:
space:
mode:
authorAndrew Fresh <afresh1@cvs.openbsd.org>2015-10-31 20:45:48 +0000
committerAndrew Fresh <afresh1@cvs.openbsd.org>2015-10-31 20:45:48 +0000
commit4d47ced4868955e0cc5b8ad34fa90d1bb52cbdb2 (patch)
tree8812ee4a090db476ffac0339059a6f91256cbc40 /share/locale
parent0f27544124093bad26cf3ed5082d53beb8fbd957 (diff)
Only calculate TO_DIGIT for ascii hex digits
And cleanup of the main loop.
Diffstat (limited to 'share/locale')
-rwxr-xr-xshare/locale/ctype/gen_ctype_utf8.pl37
1 files changed, 15 insertions, 22 deletions
diff --git a/share/locale/ctype/gen_ctype_utf8.pl b/share/locale/ctype/gen_ctype_utf8.pl
index def8c63f5c1..d45583b765f 100755
--- a/share/locale/ctype/gen_ctype_utf8.pl
+++ b/share/locale/ctype/gen_ctype_utf8.pl
@@ -1,5 +1,5 @@
#!/usr/bin/env perl
-# $OpenBSD: gen_ctype_utf8.pl,v 1.1 2015/08/18 05:14:32 afresh1 Exp $ #
+# $OpenBSD: gen_ctype_utf8.pl,v 1.2 2015/10/31 20:45:47 afresh1 Exp $ #
use 5.022;
use warnings;
@@ -95,32 +95,24 @@ VARIABLE CODESET=UTF-8
EOL
-my $block_i = 0;
+for my $i ( 0 .. $#{ $blocks_ranges_ref } ) {
+ my $start = $blocks_ranges_ref->[ $i ];
+ my $end = ( $blocks_ranges_ref->[ $i + 1 ] || 0 ) - 1;
-my %info;
-foreach my $codepoint ( 0x00 .. 0x110000 ) {
- warn $codepoint, "\n" unless $codepoint % 100;
+ my $descr = sprintf "U+%04X - U+%04X : %s",
+ $start, $end, $blocks_maps_ref->[$i];
- if ( $codepoint == $blocks_ranges_ref->[$block_i] ) {
- if (%info) {
- print_info(%info);
- %info = ();
- }
-
- my $end = $blocks_ranges_ref->[ $block_i + 1 ] - 1;
- print "\n/*\n";
- printf " * U+%04X - U+%04X : %s\n", $codepoint, $end,
- $blocks_maps_ref->[$block_i];
- print " */\n\n";
+ warn "$descr\n";
+ print "\n/*\n * $descr\n */\n\n";
- $block_i++;
- }
+ last if $end == -1;
+ next if $blocks_maps_ref->[$i] eq 'No_Block';
- categorize( $codepoint, \%info );
+ my %info;
+ categorize( $_, \%info ) for $start .. $end;
+ print_info(%info);
}
-print_info(%info) if %info;
-
# http://www.unicode.org/reports/tr44/tr44-16.html#General_Category_Values
# Table 12. General_Category Values
#
@@ -229,7 +221,8 @@ sub categorize
if ( charprop( $code, 'Hex_Digit' ) eq 'Yes' ) {
push @{ $info->{XDIGIT} }, $code;
- $info->{TODIGIT}{$code} = hex chr $code;
+ $info->{TODIGIT}{$code} = hex chr $code
+ if charprop( $code, 'ASCII_Hex_Digit' ) eq 'Yes';
$matched = 1;
}