=================================================================== RCS file: /cvs/mandoc/out.c,v retrieving revision 1.34 retrieving revision 1.36 diff -u -p -r1.34 -r1.36 --- mandoc/out.c 2011/01/10 15:31:00 1.34 +++ mandoc/out.c 2011/01/25 12:07:30 1.36 @@ -1,6 +1,6 @@ -/* $Id: out.c,v 1.34 2011/01/10 15:31:00 kristaps Exp $ */ +/* $Id: out.c,v 1.36 2011/01/25 12:07:30 schwarze Exp $ */ /* - * Copyright (c) 2009, 2010 Kristaps Dzonsons + * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -453,6 +453,8 @@ tblcalc_data(struct rofftbl *tbl, struct roffcol *col, case (TBL_CELL_NUMBER): tblcalc_number(tbl, col, tp, dp); break; + case (TBL_CELL_DOWN): + break; default: abort(); /* NOTREACHED */ @@ -483,7 +485,7 @@ tblcalc_literal(struct rofftbl *tbl, struct roffcol *c case (TBL_CELL_LONG): /* FALLTHROUGH */ case (TBL_CELL_CENTRE): - bufsz = (*tbl->len)(2, tbl->arg); + bufsz = (*tbl->len)(1, tbl->arg); break; default: bufsz = (*tbl->len)(1, tbl->arg);