summaryrefslogtreecommitdiffstats
path: root/tree.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-02-09 09:18:15 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-02-09 09:18:15 +0000
commit75f227792a0d34031aeeaec473483f07aa7c793c (patch)
tree4e0793668e9010ae4476bc9d1838485b6350b00b /tree.c
parent31585348ea96dc3d531dd9a8fdbea4ad5ce4b927 (diff)
downloadmandoc-75f227792a0d34031aeeaec473483f07aa7c793c.tar.gz
Allow -man to process EQN as well. Also fix a segfault in missing case
statements in the post-handler for EQN in -mdoc and -man.
Diffstat (limited to 'tree.c')
-rw-r--r--tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tree.c b/tree.c
index c88d5eb6..d53bbfc0 100644
--- a/tree.c
+++ b/tree.c
@@ -233,7 +233,7 @@ print_man(const struct man_node *n, int indent)
case (MAN_TBL):
break;
case (MAN_EQN):
- p = "eqn";
+ p = n->eqn->data;
break;
default:
abort();