Commit 9c11fc64 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

make_unicode: Make it explicit what other default joining type is.

parent 016eeb51
......@@ -643,7 +643,14 @@ sub load_data()
$category_table[$src] = $categories{$cat};
$direction_table[$src] = $bidi;
$joining_table[$src] = $joining_types{"T"} if $cat eq "Mn" || $cat eq "Me" || $cat eq "Cf";
if ($cat eq "Mn" || $cat eq "Me" || $cat eq "Cf")
{
$joining_table[$src] = $joining_types{"T"};
}
else
{
$joining_table[$src] = $joining_types{"U"};
}
if ($lower ne "")
{
......
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