summaryrefslogtreecommitdiffstatshomepage
path: root/man.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-03-25 15:36:05 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-03-25 15:36:05 +0000
commitc1e7dc6253e70fb184882bdb155d380f00698ce9 (patch)
treea61c03fc338e61b996f98d19a85482d805674c32 /man.c
parentaee6df6eb688c812a34d9a363dda978f06095003 (diff)
downloadmandoc-c1e7dc6253e70fb184882bdb155d380f00698ce9.tar.gz
mandoc-c1e7dc6253e70fb184882bdb155d380f00698ce9.tar.zst
mandoc-c1e7dc6253e70fb184882bdb155d380f00698ce9.zip
Added man_action.c, renamed mdoc_action.c.
Diffstat (limited to 'man.c')
-rw-r--r--man.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/man.c b/man.c
index c00fd6eb..0e272452 100644
--- a/man.c
+++ b/man.c
@@ -1,4 +1,4 @@
-/* $Id: man.c,v 1.4 2009/03/25 15:17:49 kristaps Exp $ */
+/* $Id: man.c,v 1.5 2009/03/25 15:36:05 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@openbsd.org>
*
@@ -178,21 +178,14 @@ man_node_append(struct man *man, struct man_node *p)
/* NOTREACHED */
}
-#if 0
- if ( ! man_action_pre(man, p))
- return(0);
-#endif
-
man->last = p;
switch (p->type) {
case (MAN_TEXT):
if ( ! man_valid_post(man))
return(0);
-#if 0
if ( ! man_action_post(man))
return(0);
-#endif
break;
default:
break;