=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/man_term.c,v retrieving revision 1.49 retrieving revision 1.50 diff -c -r1.49 -r1.50 *** src/usr.bin/mandoc/man_term.c 2010/10/15 22:07:12 1.49 --- src/usr.bin/mandoc/man_term.c 2010/10/16 20:49:37 1.50 *************** *** 1,4 **** ! /* $Id: man_term.c,v 1.49 2010/10/15 22:07:12 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons * --- 1,4 ---- ! /* $Id: man_term.c,v 1.50 2010/10/16 20:49:37 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons * *************** *** 838,847 **** if (MAN_BLOCK != n->type) return(0); ! if ( ! tbl_close(p, n->data.TS, "", n->line)) ! return(0); ! ! tbl_write(p, n->data.TS); return(0); } --- 838,845 ---- if (MAN_BLOCK != n->type) return(0); ! if (tbl_close(p, n->data.TS, "man tbl postprocess", n->line)) ! tbl_write(p, n->data.TS); return(0); }