summaryrefslogtreecommitdiffstats
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
commit33f7ee51d3c8ff72c2d828a8d5be302ad73cbbe9 (patch)
tree40f221172d5f2db3277c3528338d7773d5bb6190 /man.c
parent12bf2f26f8d476960eba07e14e64fd26661da3b3 (diff)
downloadmandoc-33f7ee51d3c8ff72c2d828a8d5be302ad73cbbe9.tar.gz
Added man_action.c, renamed mdoc_action.c.
Diffstat (limited to 'man.c')
-rw-r--r--man.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/man.c b/man.c
index 27976280..62251b52 100644
--- a/man.c
+++ b/man.c
@@ -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;