Hi Michael,
I just tried to print ascii(7) and found out the tables on the second
page (compact ascii in hex and dec) are screwed because they do not use
monospaced font. This is of course can not be seen on the terminal.
Attached patch (against man-pages-3.18) fixes that by adding the proper
.fn (code copy-pasted from the first table). I checked the result both
in the terminal and on printer.
Regards,
Kir.
diff -urN man-pages-3.18/man7/ascii.7 man-pages-3.18-my/man7/ascii.7
--- man-pages-3.18/man7/ascii.7 2009-02-09 05:14:24.000000000 +0300
+++ man-pages-3.18-my/man7/ascii.7 2009-02-11 12:34:35.000000000 +0300
@@ -30,6 +30,7 @@
.\" Modified 1999-05-31 by Dimitri Papadopoulos (dpo@xxxxxxxxxxxxxxxx)
.\" Modified 1999-08-08 by Michael Haardt (michael@xxxxxxxx)
.\" Modified 2004-04-01 by aeb
+.\" Modified 2009-02-11 by Kir Kolyshkin (kir@xxxxxxxxxx)
.\"
.TH ASCII 7 2009-02-04 "Linux" "Linux Programmer's Manual"
.SH NAME
@@ -113,7 +114,7 @@
072 58 3A : 172 122 7A z
073 59 3B ; 173 123 7B {
074 60 3C < 174 124 7C |
-075 61 3D = 175 125 7D }
+075 61 3Di = 175 125 7D }
076 62 3E > 176 126 7E ~
077 63 3F ? 177 127 7F DEL
.TE
@@ -125,6 +126,10 @@
For convenience, let us give more compact tables in hex and decimal.
.sp
.nf
+.if t \{\
+.in 1i
+.ft CW
+\}
2 3 4 5 6 7 30 40 50 60 70 80 90 100 110 120
------------- ---------------------------------
0: 0 @ P \` p 0: ( 2 < F P Z d n x
@@ -143,6 +148,10 @@
D: \- = M ] m }
E: . > N ^ n ~
F: / ? O _ o DEL
+.if t \{\
+.in
+.ft P
+\}
.fi
.SH NOTES
.SS History