summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-01-01 14:09:21 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-01-01 14:09:21 +0000
commit31916df7856f6ea8b704f200c8a68d72e536fd32 (patch)
tree371d0f3728f4c92514f3e66f765757295391bf42
parent88d1d7e475d216a18b657024cf3084f083eb33c9 (diff)
downloadmandoc-31916df7856f6ea8b704f200c8a68d72e536fd32.tar.gz
Make -Ttree a bit more readable.
-rw-r--r--tree.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tree.c b/tree.c
index 3dbbbd77..f6351504 100644
--- a/tree.c
+++ b/tree.c
@@ -239,8 +239,9 @@ print_man(const struct man_node *n, int indent)
if (n->span) {
assert(NULL == p);
+ printf("tbl: ");
for (dp = n->span->first; dp; dp = dp->next) {
- printf("tbl: [%s]", dp->string);
+ printf("[%s]", dp->string);
if (dp->next)
putchar(' ');
}