summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--roff.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/roff.c b/roff.c
index d61e34fa..d8a503f9 100644
--- a/roff.c
+++ b/roff.c
@@ -510,7 +510,8 @@ int
roff_endparse(struct roff *r)
{
- if (r->last || r->tbl)
+ /* FIXME: if r->tbl */
+ if (r->last)
(*r->msg)(MANDOCERR_SCOPEEXIT, r->data,
r->last->line, r->last->col, NULL);
return(1);