=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/man_term.c,v retrieving revision 1.121 retrieving revision 1.122 diff -c -r1.121 -r1.122 *** src/usr.bin/mandoc/man_term.c 2015/01/30 22:04:15 1.121 --- src/usr.bin/mandoc/man_term.c 2015/03/09 17:41:36 1.122 *************** *** 1,4 **** ! /* $OpenBSD: man_term.c,v 1.121 2015/01/30 22:04:15 schwarze Exp $ */ /* * Copyright (c) 2008-2012 Kristaps Dzonsons * Copyright (c) 2010-2015 Ingo Schwarze --- 1,4 ---- ! /* $OpenBSD: man_term.c,v 1.122 2015/03/09 17:41:36 schwarze Exp $ */ /* * Copyright (c) 2008-2012 Kristaps Dzonsons * Copyright (c) 2010-2015 Ingo Schwarze *************** *** 943,954 **** p->flags |= TERMP_NOSPACE; return; case MAN_TBL: ! /* ! * Tables are preceded by a newline. Then process a ! * table line, which will cause line termination, ! */ ! if (n->span->prev == NULL) ! term_newln(p); term_tbl(p, n->span); return; default: --- 943,950 ---- p->flags |= TERMP_NOSPACE; return; case MAN_TBL: ! if (p->tbl.cols == NULL) ! term_vspace(p); term_tbl(p, n->span); return; default: