tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 07f3b8e02009210b5f39bdadfc721cb693747ff4
parent 2edad62d28a676cf94b03aaee8fa14770b85d0f3
Author: André Bargull <andre.bargull@gmail.com>
Date:   Tue, 25 Nov 2025 15:19:39 +0000

Bug 2000225 - Part 12: Enable Georgian letters in reference html output. r=platform-i18n-reviewers,jfkthame

This part was missed in bug 1761482.

Differential Revision: https://phabricator.services.mozilla.com/D273821

Diffstat:
Mintl/unicharutil/tools/genSpecialCasingData.pl | 9---------
1 file changed, 0 insertions(+), 9 deletions(-)

diff --git a/intl/unicharutil/tools/genSpecialCasingData.pl b/intl/unicharutil/tools/genSpecialCasingData.pl @@ -211,17 +211,8 @@ __END__ <p> __END__ foreach my $key (sort { $a <=> $b } keys %$hash) { - # Bug 1476304: we exclude Georgian letters U+10D0..10FF because of lack - # of widespread font support for the corresponding Mtavruli characters - # at this time (July 2018). - # This condition is to be removed once the major platforms ship with - # fonts that support U+1C90..1CBF. - my $skippedGeorgian = $whichMapping eq "upper" && $key >= 0x10D0 && $key <= 0x10FF; - print OUT "<!-- " if $skippedGeorgian; print OUT join('', map { sprintf("&#x%s;", $_) } split(/ /, $hash->{$key})); - print OUT " -->" if $skippedGeorgian; print OUT " <!-- $charName{$key} -->" if exists $charName{$key}; - print OUT " <!-- Temporarily skipped, see bug 1476304. -->" if $skippedGeorgian; print OUT "\n"; } print OUT <<__END__;