=================================================================== RCS file: /cvs/mandoc/demandoc.c,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -r1.19 -r1.20 --- mandoc/demandoc.c 2015/04/18 16:34:25 1.19 +++ mandoc/demandoc.c 2015/04/18 17:53:21 1.20 @@ -1,4 +1,4 @@ -/* $Id: demandoc.c,v 1.19 2015/04/18 16:34:25 schwarze Exp $ */ +/* $Id: demandoc.c,v 1.20 2015/04/18 17:53:21 schwarze Exp $ */ /* * Copyright (c) 2011 Kristaps Dzonsons * @@ -121,9 +121,9 @@ pmandoc(struct mparse *mp, int fd, const char *fn, int if (man == NULL) return; if (man->macroset == MACROSET_MDOC) - pmdoc(mdoc_node(man), &line, &col, list); + pmdoc(man->first->child, &line, &col, list); else - pman(man_node(man), &line, &col, list); + pman(man->first->child, &line, &col, list); if ( ! list) putchar('\n');