=================================================================== RCS file: /cvs/mandoc/tree.c,v retrieving revision 1.63 retrieving revision 1.65 diff -u -p -r1.63 -r1.65 --- mandoc/tree.c 2015/04/02 21:36:51 1.63 +++ mandoc/tree.c 2015/04/18 16:06:41 1.65 @@ -1,4 +1,4 @@ -/* $Id: tree.c,v 1.63 2015/04/02 21:36:51 schwarze Exp $ */ +/* $Id: tree.c,v 1.65 2015/04/18 16:06:41 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2011, 2014 Kristaps Dzonsons * Copyright (c) 2013, 2014, 2015 Ingo Schwarze @@ -32,27 +32,27 @@ #include "main.h" static void print_box(const struct eqn_box *, int); -static void print_man(const struct man_node *, int); -static void print_mdoc(const struct mdoc_node *, int); +static void print_man(const struct roff_node *, int); +static void print_mdoc(const struct roff_node *, int); static void print_span(const struct tbl_span *, int); void -tree_mdoc(void *arg, const struct mdoc *mdoc) +tree_mdoc(void *arg, const struct roff_man *mdoc) { print_mdoc(mdoc_node(mdoc)->child, 0); } void -tree_man(void *arg, const struct man *man) +tree_man(void *arg, const struct roff_man *man) { print_man(man_node(man)->child, 0); } static void -print_mdoc(const struct mdoc_node *n, int indent) +print_mdoc(const struct roff_node *n, int indent) { const char *p, *t; int i, j; @@ -176,7 +176,7 @@ print_mdoc(const struct mdoc_node *n, int indent) } static void -print_man(const struct man_node *n, int indent) +print_man(const struct roff_node *n, int indent) { const char *p, *t; int i;