Skip to content

Commit 2751669

Browse files
committed
Add missing strict vars to mktables
1 parent 0b199bc commit 2751669

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/unicore/mktables

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17425,7 +17425,7 @@ $loose_names
1742517425

1742617426
# And the following array gives the inverse mapping from code points to
1742717427
# names. Lowest code points are first
17428-
\@code_points_ending_in_code_point = (
17428+
my \@code_points_ending_in_code_point = (
1742917429
$code_points_ending_in_code_point
1743017430
);
1743117431

@@ -17556,7 +17556,7 @@ END
1755617556
my $L = $LBase + $SIndex / $NCount;
1755717557
my $V = $VBase + ($SIndex % $NCount) / $TCount;
1755817558
my $T = $TBase + $SIndex % $TCount;
17559-
$name = "$HANGUL_SYLLABLE$Jamo{$L}$Jamo{$V}";
17559+
my $name = "$HANGUL_SYLLABLE$Jamo{$L}$Jamo{$V}";
1756017560
$name .= $Jamo{$T} if $T != $TBase;
1756117561
return $name;
1756217562
}

0 commit comments

Comments
 (0)