aboutsummaryrefslogtreecommitdiffstatshomepage
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
commit26da7f05bc7b6fd332991f1c1a4801a32bfe439f (patch)
treeda569706398b664a7de2ef44f360510947e951d3 /man_macro.c
parent94a8d3371b7f89fe2240182e3f4378a7b4da6b72 (diff)
downloadmandoc-26da7f05bc7b6fd332991f1c1a4801a32bfe439f.tar.gz
mandoc-26da7f05bc7b6fd332991f1c1a4801a32bfe439f.tar.zst
mandoc-26da7f05bc7b6fd332991f1c1a4801a32bfe439f.zip
Kill man_action.c.
Diffstat (limited to 'man_macro.c')
-rw-r--r--man_macro.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/man_macro.c b/man_macro.c
index d7b15131..e866d81d 100644
--- a/man_macro.c
+++ b/man_macro.c
@@ -1,4 +1,4 @@
-/* $Id: man_macro.c,v 1.50 2010/07/31 23:52:58 schwarze Exp $ */
+/* $Id: man_macro.c,v 1.51 2010/11/30 15:36:28 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -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;