=================================================================== RCS file: /cvs/mandoc/demandoc.c,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- mandoc/demandoc.c 2015/04/02 21:36:49 1.16 +++ mandoc/demandoc.c 2015/04/02 22:48:17 1.17 @@ -1,4 +1,4 @@ -/* $Id: demandoc.c,v 1.16 2015/04/02 21:36:49 schwarze Exp $ */ +/* $Id: demandoc.c,v 1.17 2015/04/02 22:48:17 schwarze Exp $ */ /* * Copyright (c) 2011 Kristaps Dzonsons * @@ -32,9 +32,9 @@ #include "mandoc.h" static void pline(int, int *, int *, int); -static void pman(const struct man_node *, int *, int *, int); +static void pman(const struct roff_node *, int *, int *, int); static void pmandoc(struct mparse *, int, const char *, int); -static void pmdoc(const struct mdoc_node *, int *, int *, int); +static void pmdoc(const struct roff_node *, int *, int *, int); static void pstring(const char *, int, int *, int); static void usage(void); @@ -234,7 +234,7 @@ pline(int line, int *linep, int *col, int list) } static void -pmdoc(const struct mdoc_node *p, int *line, int *col, int list) +pmdoc(const struct roff_node *p, int *line, int *col, int list) { for ( ; p; p = p->next) { @@ -248,7 +248,7 @@ pmdoc(const struct mdoc_node *p, int *line, int *col, } static void -pman(const struct man_node *p, int *line, int *col, int list) +pman(const struct roff_node *p, int *line, int *col, int list) { for ( ; p; p = p->next) {