We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b199bc commit 2751669Copy full SHA for 2751669
lib/unicore/mktables
@@ -17425,7 +17425,7 @@ $loose_names
17425
17426
# And the following array gives the inverse mapping from code points to
17427
# names. Lowest code points are first
17428
- \@code_points_ending_in_code_point = (
+ my \@code_points_ending_in_code_point = (
17429
$code_points_ending_in_code_point
17430
);
17431
@@ -17556,7 +17556,7 @@ END
17556
my $L = $LBase + $SIndex / $NCount;
17557
my $V = $VBase + ($SIndex % $NCount) / $TCount;
17558
my $T = $TBase + $SIndex % $TCount;
17559
- $name = "$HANGUL_SYLLABLE$Jamo{$L}$Jamo{$V}";
+ my $name = "$HANGUL_SYLLABLE$Jamo{$L}$Jamo{$V}";
17560
$name .= $Jamo{$T} if $T != $TBase;
17561
return $name;
17562
}
0 commit comments