64061588fc
Fixes #10892
16 lines
617 B
Diff
16 lines
617 B
Diff
===================================================================
|
|
RCS file: /vhosts/mdocml.bsd.lv/cvs/mdocml/out.c,v
|
|
retrieving revision 1.77
|
|
retrieving revision 1.78
|
|
diff -u -p -r1.77 -r1.78
|
|
--- out.c 2018/12/13 11:55:47 1.77
|
|
+++ out.c 2019/03/29 21:27:06 1.78
|
|
@@ -149,7 +149,7 @@ tblcalc(struct rofftbl *tbl, const struct tbl_span *sp
|
|
gp = &first_group;
|
|
for (dp = sp->first; dp != NULL; dp = dp->next) {
|
|
icol = dp->layout->col;
|
|
- while (icol > maxcol)
|
|
+ while (maxcol < icol + dp->hspans)
|
|
tbl->cols[++maxcol].spacing = SIZE_MAX;
|
|
col = tbl->cols + icol;
|
|
col->flags |= dp->layout->flags;
|