aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/man_validate.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2018-12-31 04:55:46 +0000
committerIngo Schwarze <schwarze@openbsd.org>2018-12-31 04:55:46 +0000
commit04c844c9b370f59b5c07157eec6ba5a879b30218 (patch)
tree77c904bb370cdab856881030834ae9e529643308 /man_validate.c
parent68183e3516ca405d803db497157cd8246b9b8bad (diff)
downloadmandoc-04c844c9b370f59b5c07157eec6ba5a879b30218.tar.gz
mandoc-04c844c9b370f59b5c07157eec6ba5a879b30218.tar.zst
mandoc-04c844c9b370f59b5c07157eec6ba5a879b30218.zip
Cleanup, minus 15 LOC, no functional change:
Simplify the way the man(7) and mdoc(7) validators are called. Reset the parser state with a common function before calling them. There is no need to again reset the parser state afterwards, the parsers are no longer used after validation. This allows getting rid of man_node_validate() and mdoc_node_validate() as separate functions.
Diffstat (limited to 'man_validate.c')
-rw-r--r--man_validate.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/man_validate.c b/man_validate.c
index cfe6bc8b..b6262599 100644
--- a/man_validate.c
+++ b/man_validate.c
@@ -1,4 +1,4 @@
-/* $Id: man_validate.c,v 1.142 2018/12/16 00:21:05 schwarze Exp $ */
+/* $Id: man_validate.c,v 1.143 2018/12/31 04:55:46 schwarze Exp $ */
/*
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010, 2012-2018 Ingo Schwarze <schwarze@openbsd.org>
@@ -101,7 +101,7 @@ static const v_check man_valids[MAN_MAX - MAN_TH] = {
/* Validate the subtree rooted at man->last. */
void
-man_node_validate(struct roff_man *man)
+man_validate(struct roff_man *man)
{
struct roff_node *n;
const v_check *cp;
@@ -128,7 +128,7 @@ man_node_validate(struct roff_man *man)
man->last = man->last->child;
while (man->last != NULL) {
- man_node_validate(man);
+ man_validate(man);
if (man->last == n)
man->last = man->last->child;
else