diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-01 14:09:21 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-01 14:09:21 +0000 |
commit | 31916df7856f6ea8b704f200c8a68d72e536fd32 (patch) | |
tree | 371d0f3728f4c92514f3e66f765757295391bf42 /tree.c | |
parent | 88d1d7e475d216a18b657024cf3084f083eb33c9 (diff) | |
download | mandoc-31916df7856f6ea8b704f200c8a68d72e536fd32.tar.gz |
Make -Ttree a bit more readable.
Diffstat (limited to 'tree.c')
-rw-r--r-- | tree.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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(' '); } |