summaryrefslogtreecommitdiffstats
path: root/man_macro.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-11-30 15:36:28 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-11-30 15:36:28 +0000
commitc16582d2ef6aeae45345aa89b14d49a560f66efc (patch)
tree0b517cdfec2da1cc7b6aeb5bf39a1f8287973d9a /man_macro.c
parente9af08a9eb17da1e7062697ebf95b13d984ff504 (diff)
downloadmandoc-c16582d2ef6aeae45345aa89b14d49a560f66efc.tar.gz
Kill man_action.c.
Diffstat (limited to 'man_macro.c')
-rw-r--r--man_macro.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/man_macro.c b/man_macro.c
index cec6ca43..2b8bbad4 100644
--- a/man_macro.c
+++ b/man_macro.c
@@ -123,8 +123,6 @@ man_unscope(struct man *m, const struct man_node *n,
return(0);
if ( ! man_valid_post(m))
return(0);
- if ( ! man_action_post(m))
- return(0);
m->last = m->last->parent;
assert(m->last);
}
@@ -133,8 +131,6 @@ man_unscope(struct man *m, const struct man_node *n,
return(0);
if ( ! man_valid_post(m))
return(0);
- if ( ! man_action_post(m))
- return(0);
m->next = MAN_ROOT == m->last->type ?
MAN_NEXT_CHILD : MAN_NEXT_SIBLING;
@@ -458,8 +454,6 @@ in_line_eoln(MACRO_PROT_ARGS)
break;
if ( ! man_valid_post(m))
return(0);
- if ( ! man_action_post(m))
- return(0);
}
assert(m->last);
@@ -470,8 +464,6 @@ in_line_eoln(MACRO_PROT_ARGS)
if (m->last->type != MAN_ROOT && ! man_valid_post(m))
return(0);
- if (m->last->type != MAN_ROOT && ! man_action_post(m))
- return(0);
m->next = MAN_ROOT == m->last->type ?
MAN_NEXT_CHILD : MAN_NEXT_SIBLING;