From 28e0682df89260767e1ad5a3af0b93e504ae5290 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Sat, 18 Apr 2015 17:53:21 +0000 Subject: Delete the wrapper functions mdoc_meta(), man_meta(), mdoc_node(), man_node() from the mandoc(3) semi-public interface and the internal wrapper functions print_mdoc() and print_man() from the HTML formatters. Minus 60 lines of code, no functional change. --- demandoc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'demandoc.c') diff --git a/demandoc.c b/demandoc.c index d4667c48..a51c8cca 100644 --- a/demandoc.c +++ b/demandoc.c @@ -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 list) 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'); -- cgit v1.2.3-56-ge451