[BACK]Return to out.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/out.c between version 1.49 and 1.50

version 1.49, 2018/12/13 11:55:14 version 1.50, 2019/03/29 21:25:43
Line 147 
Line 147 
                 gp = &first_group;                  gp = &first_group;
                 for (dp = sp->first; dp != NULL; dp = dp->next) {                  for (dp = sp->first; dp != NULL; dp = dp->next) {
                         icol = dp->layout->col;                          icol = dp->layout->col;
                         while (icol > maxcol)                          while (maxcol < icol + dp->hspans)
                                 tbl->cols[++maxcol].spacing = SIZE_MAX;                                  tbl->cols[++maxcol].spacing = SIZE_MAX;
                         col = tbl->cols + icol;                          col = tbl->cols + icol;
                         col->flags |= dp->layout->flags;                          col->flags |= dp->layout->flags;

Legend:
Removed from v.1.49  
changed lines
  Added in v.1.50