summaryrefslogtreecommitdiffstats
path: root/utf8-to-roff
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2008-10-27 18:03:09 +0000
committerTed Gould <ted@canonical.com>2008-10-27 18:03:09 +0000
commit7dbe11bc23efa5f51a9b84e7d0f6dd16e63e0902 (patch)
tree7d3a2b95b84a03a19cb132cdf88bea0ab6dc4773 /utf8-to-roff
parentMerging from trunk (diff)
downloadinkscape-7dbe11bc23efa5f51a9b84e7d0f6dd16e63e0902.tar.gz
inkscape-7dbe11bc23efa5f51a9b84e7d0f6dd16e63e0902.zip
From trunk
(bzr r6885)
Diffstat (limited to 'utf8-to-roff')
-rwxr-xr-xutf8-to-roff9
1 files changed, 5 insertions, 4 deletions
diff --git a/utf8-to-roff b/utf8-to-roff
index 0ce0f565f..9bb178f10 100755
--- a/utf8-to-roff
+++ b/utf8-to-roff
@@ -25,9 +25,9 @@ use strict;
# Table generated automatically using:
# zcat /usr/share/man/man7/groff_char.7.gz |groff -man -Tutf8| col -pb | grep '\\\['|
# 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
+# with č (0x10d) manually translated as cˇ (c\[ah]). (Anyone have a better translation, e.g. using
# overprint? \[vc] doesn't work, btw.)
-# Similarly, ć (0x107) has been manually translated as ´c (\[aa]c).
+# Similarly, ć (0x107) has been manually translated as c´ (c\[aa]), and ń (0x144) as n´ (n\[aa]).
my %map = (
0xd0, q{\[-D]},
0xf0, q{\[Sd]},
@@ -94,8 +94,8 @@ my %map = (
0xe3, q{\[~a]},
0xf1, q{\[~n]},
0xf5, q{\[~o]},
- 0x107, q{\[aa]c}, # Added manually; see above.
- 0x10d, q{\[ah]c}, # Added manually; see above.
+ 0x107, q{c\[aa]}, # Added manually; see above.
+ 0x10d, q{c\[ah]}, # Added manually; see above.
0x160, q{\[vS]},
0x161, q{\[vs]},
0x17d, q{\[vZ]},
@@ -104,6 +104,7 @@ my %map = (
0xe7, q{\[,c]},
0x141, q{\[/L]},
0x142, q{\[/l]},
+ 0x144, q{n\[aa]}, # Added manually; see above.
0xd8, q{\[/O]},
0xf8, q{\[/o]},
0xc5, q{\[oA]},