diff options
Diffstat (limited to 'demandoc.c')
-rw-r--r-- | demandoc.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -119,9 +119,10 @@ pmandoc(struct mparse *mp, int fd, const char *fn, int list) if (man == NULL) return; - if (man->macroset == MACROSET_MDOC) + if (man->macroset == MACROSET_MDOC) { + mdoc_validate(man); pmdoc(man->first->child, &line, &col, list); - else + } else pman(man->first->child, &line, &col, list); if ( ! list) |