summaryrefslogtreecommitdiffstats
path: root/man.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-01-01 13:54:58 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-01-01 13:54:58 +0000
commit88d1d7e475d216a18b657024cf3084f083eb33c9 (patch)
tree683a6d8547d02c8d4bd7034a4e9d3ecccc6a16ba /man.c
parenteaae29b74b1f45f13fc7edacce3631f05b0ba412 (diff)
downloadmandoc-88d1d7e475d216a18b657024cf3084f083eb33c9.tar.gz
Make -Ttree spit out table columns.
Add forgotten assignment of span to -man's TBL nodes.
Diffstat (limited to 'man.c')
-rw-r--r--man.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/man.c b/man.c
index 61657041..683fd098 100644
--- a/man.c
+++ b/man.c
@@ -301,6 +301,7 @@ man_span_alloc(struct man *m, const struct tbl_span *span)
/* FIXME: grab from span */
n = man_node_alloc(0, 0, MAN_TBL, MAN_MAX);
+ n->span = span;
if ( ! man_node_append(m, n))
return(0);