From 2b249e3c605336c96f189266dc0db91998491449 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Thu, 5 Mar 2015 04:49:46 +0100 Subject: [PATCH] font: ignore multichar entries in overview count --- tools/mkfontinfo | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/mkfontinfo b/tools/mkfontinfo index c6626fa..3be474c 100755 --- a/tools/mkfontinfo +++ b/tools/mkfontinfo @@ -35,6 +35,7 @@ if ($chartables) { next if /^[.-]/; next if $_ eq '>' or $_ eq '='; s/^\\//; # escape + length $_ == 1 or next; # multiple characters lost in query push @{ $charlist{table}->{"$tablegroup/$tablename"} }, $_; push @{ $charlist{table}->{$tablegroup} }, $_; } -- 2.30.0