diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2014-10-14 02:16:06 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2014-10-14 02:16:06 +0000 |
commit | 2db1b6bde4abe38f4836e766eac615660b2f85c2 (patch) | |
tree | f103cfddb098081641c520d96c4a4cb17d77c915 /tbl_html.c | |
parent | 619229efd1f5f1aefbec0666e7effe0039234d0c (diff) | |
download | mandoc-2db1b6bde4abe38f4836e766eac615660b2f85c2.tar.gz |
Rudimentary implementation of the e, x, and z table layout modifiers
to equalize, maximize, and ignore the width of columns.
Does not yet take vertical rulers into account,
and does not do line breaks within table cells.
Considerably improves the lftp(1) manual; issue noticed by sthen@.
Diffstat (limited to 'tbl_html.c')
-rw-r--r-- | tbl_html.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ html_tblopen(struct html *h, const struct tbl_span *sp) if (TBL_SPAN_FIRST & sp->flags) { h->tbl.len = html_tbl_len; h->tbl.slen = html_tbl_strlen; - tblcalc(&h->tbl, sp); + tblcalc(&h->tbl, sp, 0); } assert(NULL == h->tblt); |