=================================================================== RCS file: /cvs/mandoc/man_term.c,v retrieving revision 1.100 retrieving revision 1.101 diff -u -p -r1.100 -r1.101 --- mandoc/man_term.c 2011/01/23 14:54:21 1.100 +++ mandoc/man_term.c 2011/01/25 12:35:09 1.101 @@ -1,4 +1,4 @@ -/* $Id: man_term.c,v 1.100 2011/01/23 14:54:21 schwarze Exp $ */ +/* $Id: man_term.c,v 1.101 2011/01/25 12:35:09 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010, 2011 Ingo Schwarze @@ -211,6 +211,9 @@ static void 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;