aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/man_html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2014-09-27 09:26:01 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2014-09-27 09:26:01 +0000
commitb3f49705f54dd0c371648ec0b3db49c6970b1a9b (patch)
tree4414b1ba1d771954242306179ff1fce2531b7f3f /man_html.c
parent9060543cb011655fe00e94906803a2cee6d5b204 (diff)
downloadmandoc-b3f49705f54dd0c371648ec0b3db49c6970b1a9b.tar.gz
mandoc-b3f49705f54dd0c371648ec0b3db49c6970b1a9b.tar.zst
mandoc-b3f49705f54dd0c371648ec0b3db49c6970b1a9b.zip
Remove last hard-coded width attribute.
Diffstat (limited to 'man_html.c')
-rw-r--r--man_html.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/man_html.c b/man_html.c
index fef0bb2c..b19ede0b 100644
--- a/man_html.c
+++ b/man_html.c
@@ -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 <kristaps@bsd.lv>
* Copyright (c) 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
@@ -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);