diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2017-06-12 20:14:18 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2017-06-12 20:14:18 +0000 |
commit | fd8254b702c0e458aaf5fe609520c3b90f8d02e8 (patch) | |
tree | 782f3bc2f36c8d59129d7d985a2882d0a54ecb1c /tbl_html.c | |
parent | 9d72453df4dc511deb6dc6371e56a40f8fe3c0a8 (diff) | |
download | mandoc-fd8254b702c0e458aaf5fe609520c3b90f8d02e8.tar.gz |
fix column width calculation for text block cells
Diffstat (limited to 'tbl_html.c')
-rw-r--r-- | tbl_html.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |