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

Diff for /mandoc/demandoc.c between version 1.22 and 1.24

version 1.22, 2015/10/13 22:59:54 version 1.24, 2015/10/22 22:06:43
Line 119  pmandoc(struct mparse *mp, int fd, const char *fn, int
Line 119  pmandoc(struct mparse *mp, int fd, const char *fn, int
   
         if (man == NULL)          if (man == NULL)
                 return;                  return;
         if (man->macroset == MACROSET_MDOC)          if (man->macroset == MACROSET_MDOC) {
                   mdoc_validate(man);
                 pmdoc(man->first->child, &line, &col, list);                  pmdoc(man->first->child, &line, &col, list);
         else          } else {
                   man_validate(man);
                 pman(man->first->child, &line, &col, list);                  pman(man->first->child, &line, &col, list);
           }
   
         if ( ! list)          if ( ! list)
                 putchar('\n');                  putchar('\n');

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.24

CVSweb