=================================================================== RCS file: /cvs/mandoc/read.c,v retrieving revision 1.189 retrieving revision 1.190 diff -u -p -r1.189 -r1.190 --- mandoc/read.c 2017/07/06 22:59:48 1.189 +++ mandoc/read.c 2017/07/08 14:51:04 1.190 @@ -1,4 +1,4 @@ -/* $Id: read.c,v 1.189 2017/07/06 22:59:48 schwarze Exp $ */ +/* $Id: read.c,v 1.190 2017/07/08 14:51:04 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010-2017 Ingo Schwarze @@ -540,14 +540,11 @@ rerun: * currently open parse. Since we only get here if * there does exist data (see tbl_data.c), we're * guaranteed that something's been allocated. - * Do the same for ROFF_EQN. */ if (rr == ROFF_TBL) while ((span = roff_span(curp->roff)) != NULL) roff_addtbl(curp->man, span); - else if (rr == ROFF_EQN) - roff_addeqn(curp->man, roff_eqn(curp->roff)); else if ((curp->man->macroset == MACROSET_MDOC ? mdoc_parseln(curp->man, curp->line, ln.buf, of) : man_parseln(curp->man, curp->line, ln.buf, of)) == 2)