diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-01 16:10:40 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-01 16:10:40 +0000 |
commit | d84dbf74b948c2ca03a405c62aaddd91c404e66e (patch) | |
tree | cf61eba08e8d1e40418b9a0e2391cd6c0fad6d12 /roff.c | |
parent | 11a4a49536978db711f68cc010fec41f76c2f970 (diff) | |
download | mandoc-d84dbf74b948c2ca03a405c62aaddd91c404e66e.tar.gz |
Raise an error if a table is closed without data.
Diffstat (limited to 'roff.c')
-rw-r--r-- | roff.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1138,7 +1138,7 @@ roff_T_(ROFF_ARGS) if (NULL == r->tbl) (*r->msg)(MANDOCERR_NOSCOPE, r->data, ln, ppos, NULL); else - tbl_restart(r->tbl); + tbl_restart(ppos, ln, r->tbl); return(ROFF_IGN); } |