=================================================================== RCS file: /cvs/mandoc/man_html.c,v retrieving revision 1.101 retrieving revision 1.102 diff -u -p -r1.101 -r1.102 --- mandoc/man_html.c 2014/09/27 09:20:03 1.101 +++ mandoc/man_html.c 2014/09/27 09:26:01 1.102 @@ -1,4 +1,4 @@ -/* $Id: man_html.c,v 1.101 2014/09/27 09:20:03 kristaps Exp $ */ +/* $Id: man_html.c,v 1.102 2014/09/27 09:26:01 kristaps Exp $ */ /* * Copyright (c) 2008-2012 Kristaps Dzonsons * Copyright (c) 2013, 2014 Ingo Schwarze @@ -309,10 +309,6 @@ man_root_pre(MAN_ARGS) PAIR_CLASS_INIT(&tag, "head"); t = print_otag(h, TAG_TABLE, 1, &tag); - PAIR_INIT(&tag, ATTR_WIDTH, "30%"); - print_otag(h, TAG_COL, 1, &tag); - print_otag(h, TAG_COL, 1, &tag); - print_otag(h, TAG_COL, 1, &tag); print_otag(h, TAG_TBODY, 0, NULL); @@ -344,9 +340,6 @@ man_root_post(MAN_ARGS) PAIR_CLASS_INIT(&tag, "foot"); t = print_otag(h, TAG_TABLE, 1, &tag); - PAIR_INIT(&tag, ATTR_WIDTH, "50%"); - print_otag(h, TAG_COL, 1, &tag); - print_otag(h, TAG_COL, 1, &tag); tt = print_otag(h, TAG_TR, 0, NULL);