=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/out.c,v retrieving revision 1.18 retrieving revision 1.19 diff -c -r1.18 -r1.19 *** src/usr.bin/mandoc/out.c 2013/05/31 21:37:09 1.18 --- src/usr.bin/mandoc/out.c 2013/10/05 21:17:29 1.19 *************** *** 1,4 **** ! /* $Id: out.c,v 1.18 2013/05/31 21:37:09 schwarze Exp $ */ /* * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2011 Ingo Schwarze --- 1,4 ---- ! /* $Id: out.c,v 1.19 2013/10/05 21:17:29 schwarze Exp $ */ /* * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2011 Ingo Schwarze *************** *** 138,144 **** tblcalc(struct rofftbl *tbl, const struct tbl_span *sp) { const struct tbl_dat *dp; - const struct tbl_head *hp; struct roffcol *col; int spans; --- 138,143 ---- *************** *** 151,158 **** assert(NULL == tbl->cols); tbl->cols = mandoc_calloc ((size_t)sp->opts->cols, sizeof(struct roffcol)); - - hp = sp->head; for ( ; sp; sp = sp->next) { if (TBL_SPAN_DATA != sp->pos) --- 150,155 ----