=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/man_term.c,v retrieving revision 1.63 retrieving revision 1.64 diff -c -r1.63 -r1.64 *** src/usr.bin/mandoc/man_term.c 2011/01/23 14:54:15 1.63 --- src/usr.bin/mandoc/man_term.c 2011/01/25 12:35:07 1.64 *************** *** 1,4 **** ! /* $Id: man_term.c,v 1.63 2011/01/23 14:54:15 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010, 2011 Ingo Schwarze --- 1,4 ---- ! /* $Id: man_term.c,v 1.64 2011/01/25 12:35:07 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010, 2011 Ingo Schwarze *************** *** 207,212 **** --- 207,215 ---- 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;