coverge check to display first missing glyph

This commit is contained in:
Vovanium 2022-04-20 19:56:53 +03:00
parent 0213710770
commit 4a56fb396e
1 changed files with 4 additions and 1 deletions

View File

@ -100,6 +100,7 @@ function character_set_common(charset, filename, pattern, line, j, k, ks, n, c
close(filename);
for(j = 1; j <= fontno; j += 1) {
n = 0;
missing = 0;
for(k in T) {
ks = sprintf("%8d", k + 0)
#print "["ks","j"]", (ks SUBSEP j in exist)
@ -108,7 +109,9 @@ function character_set_common(charset, filename, pattern, line, j, k, ks, n, c
n = n + 1;
} else {
#printf("(%X)", k);
missing = k;
if(!missing) {
missing = k;
}
}
}
printf("%s", display_coverage_font(n, assigned));