=================================================================== RCS file: /cvs/mandoc/tbl.c,v retrieving revision 1.33 retrieving revision 1.34 diff -u -p -r1.33 -r1.34 --- mandoc/tbl.c 2015/01/26 00:57:22 1.33 +++ mandoc/tbl.c 2015/01/27 05:21:45 1.34 @@ -1,4 +1,4 @@ -/* $Id: tbl.c,v 1.33 2015/01/26 00:57:22 schwarze Exp $ */ +/* $Id: tbl.c,v 1.34 2015/01/27 05:21:45 schwarze Exp $ */ /* * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2011, 2015 Ingo Schwarze @@ -173,11 +173,15 @@ void tbl_end(struct tbl_node **tblp) { struct tbl_node *tbl; + struct tbl_span *sp; tbl = *tblp; *tblp = NULL; - if (NULL == tbl->first_span || NULL == tbl->first_span->first) + sp = tbl->first_span; + while (sp != NULL && sp->first == NULL) + sp = sp->next; + if (sp == NULL) mandoc_msg(MANDOCERR_TBLNODATA, tbl->parse, tbl->line, tbl->pos, NULL);