-
- if (NULL == tbl->first_span || NULL == tbl->first_span->first)
- TBL_MSG(tbl, MANDOCERR_TBLNODATA, tbl->line, tbl->pos);
-}
-
-const struct tbl_span *
-tbl_span(const struct tbl_node *tbl)
-{
-
- assert(tbl);
- return(tbl->last_span);
-}
-
-void
-tbl_end(struct tbl_node *tbl)
-{
-
- if (NULL == tbl->first_span || NULL == tbl->first_span->first)
- TBL_MSG(tbl, MANDOCERR_TBLNODATA, tbl->line, tbl->pos);
- else
- tbl_calc(tbl);
-
- if (tbl->last_span)
- tbl->last_span->flags |= TBL_SPAN_LAST;
-}
-
-static void
-tbl_calc(struct tbl_node *tbl)
-{
- struct tbl_span *sp;
- struct tbl_dat *dp;
- struct tbl_head *hp;
-
- /* Calculate width as the max of column cells' widths. */
-
- for (sp = tbl->first_span; sp; sp = sp->next) {
- switch (sp->pos) {
- case (TBL_DATA_HORIZ):
- /* FALLTHROUGH */
- case (TBL_DATA_DHORIZ):
- continue;
- default:
- break;
- }
- for (dp = sp->first; dp; dp = dp->next)
- tbl_calc_data(tbl, dp);
- }
-
- /* Calculate width as the simple spanner value. */
-
- for (hp = tbl->first_head; hp; hp = hp->next)
- switch (hp->pos) {
- case (TBL_HEAD_VERT):
- hp->width = 1;
- break;
- case (TBL_HEAD_DVERT):
- hp->width = 2;
- break;
- default:
- break;
- }
-}
-
-static void
-tbl_calc_data(struct tbl_node *tbl, struct tbl_dat *data)
-{
-
- if (NULL == data->layout)
- return;
-
- /* Branch down into data sub-types. */
-
- switch (data->layout->pos) {
- case (TBL_CELL_HORIZ):
- /* FALLTHROUGH */
- case (TBL_CELL_DHORIZ):
- tbl_calc_data_spanner(data);
- break;
- case (TBL_CELL_LONG):
- /* FALLTHROUGH */
- case (TBL_CELL_CENTRE):
- /* FALLTHROUGH */
- case (TBL_CELL_LEFT):
- /* FALLTHROUGH */
- case (TBL_CELL_RIGHT):
- tbl_calc_data_literal(data);
- break;
- case (TBL_CELL_NUMBER):
- tbl_calc_data_number(tbl, data);
- break;
- default:
- abort();
- /* NOTREACHED */
- }
-}
-
-static void
-tbl_calc_data_spanner(struct tbl_dat *data)
-{
-
- /* N.B., these are horiz spanners (not vert) so always 1. */
- data->layout->head->width = 1;