diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-01 16:18:39 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-01 16:18:39 +0000 |
commit | 3592c989529bee1adce043bede9fbc1902993301 (patch) | |
tree | b93847ccfce126a1842b46840891140e0b094093 /roff.c | |
parent | d84dbf74b948c2ca03a405c62aaddd91c404e66e (diff) | |
download | mandoc-3592c989529bee1adce043bede9fbc1902993301.tar.gz |
More checks for proper table exit.
Diffstat (limited to 'roff.c')
-rw-r--r-- | roff.c | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -515,15 +515,20 @@ roff_parseln(struct roff *r, int ln, char **bufp, } -int +void roff_endparse(struct roff *r) { - /* FIXME: if r->tbl */ if (r->last) (*r->msg)(MANDOCERR_SCOPEEXIT, r->data, r->last->line, r->last->col, NULL); - return(1); + + if (r->tbl) { + (*r->msg)(MANDOCERR_SCOPEEXIT, r->data, + r->tbl->line, r->tbl->pos, NULL); + tbl_end(r->tbl); + r->tbl = NULL; + } } |