[PATCH] make_unicode: Update vertical spec to revision 17

Detlef Riekenberg wine.dev at web.de
Sun Jul 2 16:29:34 CDT 2017


Unicode 10 is released, but i did not update wine
(IndicPositionalCategory has a new matra: Bottom_And_Left)

--
Bye bye ... Detlef

Signed-off-by: Detlef Riekenberg <wine.dev at web.de>
---
 tools/make_unicode | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/tools/make_unicode b/tools/make_unicode
index ab8e82b..f9c2917 100755
--- a/tools/make_unicode
+++ b/tools/make_unicode
@@ -26,7 +26,8 @@ my $MAPPINGS = "http://www.unicode.org/Public/MAPPINGS";
 my $UNIDATA = "http://www.unicode.org/Public/9.0.0/ucd";
 my $REPORTS = "http://www.unicode.org/reports";
 my $RFCS = "http://www.rfc-editor.org/rfc";
-my $VERTICALDATA = "http://www.unicode.org/Public/vertical/revision-15";
+my $VERTICALPATH = "http://www.unicode.org/Public/vertical/revision-17";
+my $VERTICALFILE = "VerticalOrientation-17.txt";
 
 # Sort keys file
 my $SORTKEYS = "tr10/allkeys.txt";
@@ -1672,7 +1673,7 @@ sub dump_vertical($)
     my $filename = shift;
     my @vertical_table;
 
-    my $INPUT = open_data_file( $VERTICALDATA, "VerticalOrientation-15.txt" );
+    my $INPUT = open_data_file( $VERTICALPATH, $VERTICALFILE );
     while (<$INPUT>)
     {
         next if /^\#/;  # skip comments
@@ -1705,7 +1706,7 @@ sub dump_vertical($)
     open OUTPUT,">$filename.new" or die "Cannot create $filename";
     print "Building $filename\n";
     print OUTPUT "/* Unicode Vertical Orientation */\n";
-    print OUTPUT "/* generated from $VERTICALDATA/VerticalOrientation-15.txt */\n";
+    print OUTPUT "/* generated from $VERTICALPATH/$VERTICALFILE */\n";
     print OUTPUT "/* DO NOT EDIT!! */\n\n";
     print OUTPUT "#include \"wine/unicode.h\"\n\n";
 
-- 
2.7.4




More information about the wine-patches mailing list