Commit cb65a3fb authored by Alexandre Julliard's avatar Alexandre Julliard

make_unicode: Fix typo in Indic syllable table generation.

parent 62033734
...@@ -1198,7 +1198,7 @@ sub dump_indic($) ...@@ -1198,7 +1198,7 @@ sub dump_indic($)
{ {
my $type = $3; my $type = $3;
die "unknown indic $type" unless defined $indic_types{$type}; die "unknown indic $type" unless defined $indic_types{$type};
if (hex $1 < 65536 and hex $2 < 6536) if (hex $1 < 65536 and hex $2 < 65536)
{ {
foreach my $i (hex $1 .. hex $2) foreach my $i (hex $1 .. hex $2)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment