[BACK]Return to main.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/main.c between version 1.144 and 1.145

version 1.144, 2011/02/09 09:05:52 version 1.145, 2011/02/09 09:18:15
Line 866  rerun:
Line 866  rerun:
                 } else if (ROFF_EQN == rr) {                  } else if (ROFF_EQN == rr) {
                         assert(curp->man || curp->mdoc);                          assert(curp->man || curp->mdoc);
                         assert(roff_eqn(curp->roff));                          assert(roff_eqn(curp->roff));
                         if (curp->mdoc)                          rc = curp->mdoc ?
                                 mdoc_addeqn(curp->mdoc, roff_eqn(curp->roff));                                  mdoc_addeqn(curp->mdoc,
                                           roff_eqn(curp->roff)) :
                                   man_addeqn(curp->man,
                                           roff_eqn(curp->roff));
                 } else if (curp->man || curp->mdoc) {                  } else if (curp->man || curp->mdoc) {
                         rc = curp->man ?                          rc = curp->man ?
                                 man_parseln(curp->man,                                  man_parseln(curp->man,

Legend:
Removed from v.1.144  
changed lines
  Added in v.1.145

CVSweb