diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-09-21 07:42:03 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-09-21 07:42:03 -0700 |
commit | 8fc23fa9a525dd4025b9adf4c2b1fbe7bf6755bf (patch) | |
tree | 7bfeb77e52e010abe5d32cc4c48ee62040165c2b | |
parent | 7e423bda977e3c3ce30a5225eda4cf775754d7ea (diff) | |
download | man-8fc23fa9a525dd4025b9adf4c2b1fbe7bf6755bf.tar.gz man-8fc23fa9a525dd4025b9adf4c2b1fbe7bf6755bf.tar.bz2 man-8fc23fa9a525dd4025b9adf4c2b1fbe7bf6755bf.zip |
man2html should be in troff mode, not nroff.
This is because it has proportional spacing and fonts.
Code switched on .if t should be enabled.
-rw-r--r-- | man2html/strdefs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man2html/strdefs.c b/man2html/strdefs.c index 25ab6bb..361080a 100644 --- a/man2html/strdefs.c +++ b/man2html/strdefs.c @@ -5,7 +5,7 @@ #define NULL ((void *) 0) #endif -int nroff = 1; +int nroff = 0; #define NROFF (-666) #define TROFF (-667) |