diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2011-01-25 12:35:09 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2011-01-25 12:35:09 +0000 |
commit | 7af39d09674498b502965c63cb5f54c73013e86b (patch) | |
tree | 3c8f7d7d19a8143f586f416537580ff279a620bd /man_term.c | |
parent | b57f25f5dcdaf894edfb23e0626b28e92f367c09 (diff) | |
download | mandoc-7af39d09674498b502965c63cb5f54c73013e86b.tar.gz |
Avoid double blank line before a table preceded by .PP.
ok kristaps@
Diffstat (limited to 'man_term.c')
-rw-r--r-- | man_term.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -212,6 +212,9 @@ print_bvspace(struct termp *p, const struct man_node *n) { term_newln(p); + if (n->body && n->body->child && MAN_TBL == n->body->child->type) + return; + if (NULL == n->prev) return; |