=================================================================== RCS file: /cvs/mandoc/roff.c,v retrieving revision 1.360 retrieving revision 1.361 diff -u -p -r1.360 -r1.361 --- mandoc/roff.c 2019/01/05 00:36:50 1.360 +++ mandoc/roff.c 2019/01/05 09:10:32 1.361 @@ -1,4 +1,4 @@ -/* $Id: roff.c,v 1.360 2019/01/05 00:36:50 schwarze Exp $ */ +/* $Id: roff.c,v 1.361 2019/01/05 09:10:32 schwarze Exp $ */ /* * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons * Copyright (c) 2010-2015, 2017-2019 Ingo Schwarze @@ -3192,6 +3192,7 @@ roff_Dd(ROFF_ARGS) static int roff_TE(ROFF_ARGS) { + r->man->flags &= ~ROFF_NONOFILL; if (r->tbl == NULL) { mandoc_msg(MANDOCERR_BLK_NOTOPEN, ln, ppos, "TE"); return ROFF_IGN; @@ -3336,6 +3337,7 @@ roff_TS(ROFF_ARGS) mandoc_msg(MANDOCERR_BLK_BROKEN, ln, ppos, "TS breaks TS"); tbl_end(r->tbl, 0); } + r->man->flags |= ROFF_NONOFILL; r->tbl = tbl_alloc(ppos, ln, r->last_tbl); if (r->last_tbl == NULL) r->first_tbl = r->tbl;