diff options
author | Karl Williamson <khw@cpan.org> | 2017-06-20 16:49:27 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2017-06-20 21:34:58 -0600 |
commit | c492f156708438ef285e754e02f85d4c0a9ef50e (patch) | |
tree | e386ad214fafd3a72f662eae2ac5eca397db6732 /lib | |
parent | 4de305e1db7089f455038c15ad7ead8660f90618 (diff) | |
download | perl-c492f156708438ef285e754e02f85d4c0a9ef50e.tar.gz |
Prepare for Unicode 10.0
This informs mktables of the new files in 10.0, and updates some
comments in other files to reflect new Unicode terminology.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/unicore/mktables | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/lib/unicore/mktables b/lib/unicore/mktables index d8ccd2b2d7..0c8c83cde1 100644 --- a/lib/unicore/mktables +++ b/lib/unicore/mktables @@ -45,7 +45,7 @@ sub NON_ASCII_PLATFORM { ord("A") != 65 } # expected, a warning will be generated. If an older version is being # compiled, any bounds tests that fail in the generated test file (-maketest # option) will be marked as TODO. -my $version_of_mk_invlist_bounds = v9.0.0; +my $version_of_mk_invlist_bounds = v10.0.0; ########################################################################## # @@ -19067,6 +19067,14 @@ my @input_file_objects = ( Property => 'Joining_Type', Has_Missings_Defaults => $NOT_IGNORED, ), + Input_file->new("${EXTRACTED}DName.txt", v10.0.0, + Skip => 'This file adds no new information not already' + . ' present in other files', + # And it's unnecessary programmer work to handle this new + # format. Previous Derived files actually had bug fixes + # in them that were useful, but that should not be the + # case here. + ), Input_file->new('Jamo.txt', v2.0.0, Property => 'Jamo_Short_Name', Each_Line_Handler => \&filter_jamo_line, @@ -19505,6 +19513,13 @@ my @input_file_objects = ( . ' informative radical-stroke values that are used' . ' internally by Unicode', ), + Input_file->new('VerticalOrientation.txt', v10.0.0, + Property => 'Vertical_Orientation', + Has_Missings_Defaults => $NOT_IGNORED, + ), + Input_file->new('NushuSources.txt', v10.0.0, + Skip => 'Specifies source material for Nushu characters', + ), ); # End of all the preliminaries. |