blob: cd0e8f0b9ff7cf65dc6580b554907e94a0a776f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
--- a/src/ucs2any
+++ b/src/ucs2any
@@ -225,12 +225,7 @@
if (!is_control($ucs)) {
if ($startchar{$ucs}) {
$map{$target} = $ucs;
- } else {
- printf STDERR "No glyph for character U+%04X " .
- "(0x%02x) available.\n", $ucs, $target
- unless (is_blockgraphics($ucs) && $slant ne "R") ||
- ($ucs >= 0x200e && $ucs <= 0x200f);
- }
+ }
}
} else {
printf STDERR "Unrecognized line in '$fmap':\n$_";
|