=================================================================== RCS file: /cvs/mandoc/out.c,v retrieving revision 1.45 retrieving revision 1.47 diff -u -p -r1.45 -r1.47 --- mandoc/out.c 2013/05/31 21:37:17 1.45 +++ mandoc/out.c 2014/03/23 11:25:26 1.47 @@ -1,4 +1,4 @@ -/* $Id: out.c,v 1.45 2013/05/31 21:37:17 schwarze Exp $ */ +/* $Id: out.c,v 1.47 2014/03/23 11:25:26 schwarze Exp $ */ /* * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2011 Ingo Schwarze @@ -28,6 +28,7 @@ #include #include +#include "mandoc_aux.h" #include "mandoc.h" #include "out.h" @@ -142,7 +143,6 @@ void tblcalc(struct rofftbl *tbl, const struct tbl_span *sp) { const struct tbl_dat *dp; - const struct tbl_head *hp; struct roffcol *col; int spans; @@ -155,8 +155,6 @@ tblcalc(struct rofftbl *tbl, const struct tbl_span *sp 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)