=================================================================== RCS file: /cvs/mandoc/tbl_html.c,v retrieving revision 1.11 retrieving revision 1.13 diff -u -p -r1.11 -r1.13 --- mandoc/tbl_html.c 2014/04/20 16:46:05 1.11 +++ mandoc/tbl_html.c 2014/10/14 02:16:06 1.13 @@ -1,4 +1,4 @@ -/* $Id: tbl_html.c,v 1.11 2014/04/20 16:46:05 schwarze Exp $ */ +/* $Id: tbl_html.c,v 1.13 2014/10/14 02:16:06 schwarze Exp $ */ /* * Copyright (c) 2011 Kristaps Dzonsons * @@ -14,10 +14,10 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#ifdef HAVE_CONFIG_H #include "config.h" -#endif +#include + #include #include #include @@ -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);