X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=utf8-to-roff;h=5604f1416492017fa97c61b9c44d3872f4760e48;hb=91cdc6c06e37ed5336e3e5f81dc8a6f39c07b500;hp=de937782d0ce78845105f92f471477a0af69c561;hpb=4491d0aea5d9f12ee55b4f9ccc95fc853ec6030b;p=inkscape.git diff --git a/utf8-to-roff b/utf8-to-roff index de937782d..5604f1416 100755 --- a/utf8-to-roff +++ b/utf8-to-roff @@ -11,6 +11,7 @@ use strict; # perl -CI -nae 'my ($ch, $seq) = @F; if (ord($ch) >= 128) { printf(" 0x\%x, q{\%s},\n", ord($ch), $seq); }' # with č (0x10d) manually translated as ˇc (\[ah]c). (Anyone have a better translation, e.g. using # overprint? \[vc] doesn't work, btw.) +# Similarly, ć (0x107) has been manually translated as ´c (\[aa]c). my %map = ( 0xd0, q{\[-D]}, 0xf0, q{\[Sd]}, @@ -77,7 +78,7 @@ my %map = ( 0xe3, q{\[~a]}, 0xf1, q{\[~n]}, 0xf5, q{\[~o]}, - 0x107, q{\[ah]c}, # Added manually; see above. + 0x107, q{\[aa]c}, # Added manually; see above. 0x10d, q{\[ah]c}, # Added manually; see above. 0x160, q{\[vS]}, 0x161, q{\[vs]},