From 61bc2c623cae2e83cbc5b4943f27f51f9d83661d Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Tue, 22 Sep 2009 16:10:52 +0000 Subject: Fix segfault in -Thtml column lists. Added some more UTF-8 chars. mandoc_char.7 now has all special characters rendered. Fixed column layout in -Thtml. --- mdoc_html.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mdoc_html.c') diff --git a/mdoc_html.c b/mdoc_html.c index a0520b91..6840445d 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -892,7 +892,7 @@ mdoc_tbl_head_pre(MDOC_ARGS, int t, int w) print_otag(h, TAG_DIV, 1, &tag); break; default: - buffmt("margin-left: -%dem;", w); + buffmt("margin-left: -%dem; width: %dem;", w, w); bufcat("clear: left;"); if (n->next && n->next->child) bufcat("float: left;"); -- cgit