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:
parent
016eeb5109
commit
9c11fc642f
|
@ -643,7 +643,14 @@ sub load_data()
|
||||||
|
|
||||||
$category_table[$src] = $categories{$cat};
|
$category_table[$src] = $categories{$cat};
|
||||||
$direction_table[$src] = $bidi;
|
$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 "")
|
if ($lower ne "")
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue