Skip to content
Snippets Groups Projects
Commit 94540390 authored by Martin Mareš's avatar Martin Mareš
Browse files

Scan: Avoid Perl warning on fonts with missing /Version

parent c104e56f
Branches
No related tags found
No related merge requests found
......@@ -356,7 +356,7 @@ AMEN
$fname =~ s/[()]//g;
my $ename = $standard_encodings{$ehash} // "Special";
print "# encoding hash: $ehash\n" if $verbose;
print "*Font $fname: ", $ename, " \"", $g->{'/Version'}, "\" ", $ename, " ROM\n";
print "*Font $fname: ", $ename, " \"", ($g->{'/Version'} // '<unknown version>'), "\" ", $ename, " ROM\n";
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment