From cbeb0b26e4c7caa8d1b47de791a7418dc20a4567 Mon Sep 17 00:00:00 2001 From: rsc Date: Sat, 1 Apr 2006 19:24:03 +0000 Subject: Use gcc -ansi -pedantic in 9c. Fix many non-C89-isms. --- src/cmd/troff2html/chars.h | 2 +- src/cmd/troff2html/troff2html.c | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) (limited to 'src/cmd/troff2html') diff --git a/src/cmd/troff2html/chars.h b/src/cmd/troff2html/chars.h index 7db2f85f..669ddb43 100644 --- a/src/cmd/troff2html/chars.h +++ b/src/cmd/troff2html/chars.h @@ -191,5 +191,5 @@ Troffchar troffchars[] = { "ul", "_", }, { "rn", " ", }, { "**", "*", }, - { nil, nil, }, + { nil, nil, } }; diff --git a/src/cmd/troff2html/troff2html.c b/src/cmd/troff2html/troff2html.c index bce49742..c0956c7d 100644 --- a/src/cmd/troff2html/troff2html.c +++ b/src/cmd/troff2html/troff2html.c @@ -5,7 +5,7 @@ enum{ Nfont = 11, - Wid = 20, /* tmac.anhtml sets page width to 20" so we can recognize .nf text */ + Wid = 20 /* tmac.anhtml sets page width to 20" so we can recognize .nf text */ }; typedef ulong Char; @@ -24,13 +24,13 @@ enum Indent2, Indent3, Heading = 25, - Anchor = 26, /* must be last */ + Anchor = 26 /* must be last */ }; enum /* magic emissions */ { Estring = 0, - Epp = 1<<16, + Epp = 1<<16 }; int attrorder[] = { Indent1, Indent2, Indent3, Heading, Anchor, Italic, Bold, CW }; @@ -73,7 +73,7 @@ HTMLfont htmlfonts[] = "LuxiSans-Oblique", "i", Italic, "CW", "tt", CW, "LuxiMono", "tt", CW, - nil, nil, + nil, nil }; #define TABLE "" @@ -468,7 +468,7 @@ trailer(void) t = localtime(time(nil)); Bprint(&bout, TABLE "
\n"); - Bprint(&bout, "\n"); + Bprint(&bout, "\n"); */ Bprint(&bout, "Portions Copyright © %d Lucent Technologies. All rights reserved.\n", t->year+1900); } #endif @@ -784,7 +784,7 @@ process(Biobuf *b, char *name) break; case 'n': setnum(b, "n1", -10000, 10000); - //Bprint(&bout, " N1=%d", v); + /*Bprint(&bout, " N1=%d", v); */ getc(b); /* space separates */ setnum(b, "n2", -10000, 10000); atnewline = 1; @@ -815,7 +815,7 @@ process(Biobuf *b, char *name) break; case 'H': hp = setnum(b, "hpos", 0, 20000); - //Bprint(&bout, " H=%d ", hp); + /*Bprint(&bout, " H=%d ", hp); */ break; case 'V': vp = setnum(b, "vpos", 0, 10000); -- cgit v1.2.3