summaryrefslogtreecommitdiffstats
path: root/tree.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2014-11-28 05:51:32 +0000
committerIngo Schwarze <schwarze@openbsd.org>2014-11-28 05:51:32 +0000
commitcfd12f597e8f3e9e5acc3bfbeeef43065481d942 (patch)
tree79b1412957cbfd47749f6aa5ba0d7ea21176eb96 /tree.c
parent51a396af44d32fdbef128c7cabfded8bd9c8cf32 (diff)
downloadmandoc-cfd12f597e8f3e9e5acc3bfbeeef43065481d942.tar.gz
Simplify by making many functions in the man(7) parser void,
and some cleanup; no functional change, minus 70 lines.
Diffstat (limited to 'tree.c')
-rw-r--r--tree.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/tree.c b/tree.c
index 70d8c2ea..326ecc59 100644
--- a/tree.c
+++ b/tree.c
@@ -200,9 +200,6 @@ print_man(const struct man_node *n, int indent)
case MAN_BODY:
t = "block-body";
break;
- case MAN_TAIL:
- t = "block-tail";
- break;
case MAN_TBL:
break;
case MAN_EQN:
@@ -223,8 +220,6 @@ print_man(const struct man_node *n, int indent)
/* FALLTHROUGH */
case MAN_HEAD:
/* FALLTHROUGH */
- case MAN_TAIL:
- /* FALLTHROUGH */
case MAN_BODY:
p = man_macronames[n->tok];
break;