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

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2021-01-20 15:35:16 +03:00 committed by Alexandre Julliard
parent 016eeb5109
commit 9c11fc642f
1 changed files with 8 additions and 1 deletions

View File

@ -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 "")
{