summaryrefslogtreecommitdiffstats
path: root/tbl_html.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2017-06-12 20:14:18 +0000
committerIngo Schwarze <schwarze@openbsd.org>2017-06-12 20:14:18 +0000
commitfd8254b702c0e458aaf5fe609520c3b90f8d02e8 (patch)
tree782f3bc2f36c8d59129d7d985a2882d0a54ecb1c /tbl_html.c
parent9d72453df4dc511deb6dc6371e56a40f8fe3c0a8 (diff)
downloadmandoc-fd8254b702c0e458aaf5fe609520c3b90f8d02e8.tar.gz
fix column width calculation for text block cells
Diffstat (limited to 'tbl_html.c')
-rw-r--r--tbl_html.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_html.c b/tbl_html.c
index 16474440..365161b1 100644
--- a/tbl_html.c
+++ b/tbl_html.c
@@ -83,7 +83,7 @@ html_tblopen(struct html *h, const struct tbl_span *sp)
h->tbl.len = html_tbl_len;
h->tbl.slen = html_tbl_strlen;
h->tbl.sulen = html_tbl_sulen;
- tblcalc(&h->tbl, sp, 0);
+ tblcalc(&h->tbl, sp, 0, 0);
}
assert(NULL == h->tblt);