diff options
Diffstat (limited to 'Master')
-rw-r--r-- | Master/tlpkg/TeXLive/TLWinGoo.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLWinGoo.pm b/Master/tlpkg/TeXLive/TLWinGoo.pm index f49f8df771c..10ef2e9e0f3 100644 --- a/Master/tlpkg/TeXLive/TLWinGoo.pm +++ b/Master/tlpkg/TeXLive/TLWinGoo.pm @@ -273,7 +273,7 @@ sub reg_country { return ("zh", "cn"); } else { my $lang = lc(substr $lm, 0, 2); - my $area = lc(substr $lm, 4); + my $area = lc(substr $lm, 3, 2); return($lang, $area); } } |