[BACK]Return to out.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/out.c between version 1.81 and 1.85

version 1.81, 2021/09/07 14:56:35 version 1.85, 2021/10/17 21:05:54
Line 149  tblcalc(struct rofftbl *tbl, const struct tbl_span *sp
Line 149  tblcalc(struct rofftbl *tbl, const struct tbl_span *sp
                  * to data cells in the data section.                   * to data cells in the data section.
                  */                   */
   
                 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 (maxcol < icol + dp->hspans)                          while (maxcol < icol + dp->hspans)
Line 190  tblcalc(struct rofftbl *tbl, const struct tbl_span *sp
Line 189  tblcalc(struct rofftbl *tbl, const struct tbl_span *sp
                                 continue;                                  continue;
   
                         /*                          /*
                          * Build an ordered, singly linked list                           * Build a singly linked list
                          * of all groups of columns joined by spans,                           * of all groups of columns joined by spans,
                          * recording the minimum width for each group.                           * recording the minimum width for each group.
                          */                           */
   
                         while (*gp != NULL && ((*gp)->startcol < icol ||                          gp = &first_group;
                             (*gp)->endcol < icol + dp->hspans))                          while (*gp != NULL && ((*gp)->startcol != icol ||
                               (*gp)->endcol != icol + dp->hspans))
                                 gp = &(*gp)->next;                                  gp = &(*gp)->next;
                         if (*gp == NULL || (*gp)->startcol > icol ||                          if (*gp == NULL) {
                             (*gp)->endcol > icol + dp->hspans) {  
                                 g = mandoc_malloc(sizeof(*g));                                  g = mandoc_malloc(sizeof(*g));
                                 g->next = *gp;                                  g->next = *gp;
                                 g->wanted = width;                                  g->wanted = width;
Line 248  tblcalc(struct rofftbl *tbl, const struct tbl_span *sp
Line 247  tblcalc(struct rofftbl *tbl, const struct tbl_span *sp
                                 done = 1;                                  done = 1;
                                 break;                                  break;
                         } else                          } else
                                 (*gp)->wanted -= width;                                  g->wanted -= width;
                 }                  }
                 if (done) {                  if (done) {
                         *gp = g->next;                          *gp = g->next;
                         free(g);                          free(g);
                 } else                  } else
                         gp = &(*gp)->next;                          gp = &g->next;
         }          }
   
         colwidth = mandoc_reallocarray(NULL, maxcol + 1, sizeof(*colwidth));          colwidth = mandoc_reallocarray(NULL, maxcol + 1, sizeof(*colwidth));
Line 278  tblcalc(struct rofftbl *tbl, const struct tbl_span *sp
Line 277  tblcalc(struct rofftbl *tbl, const struct tbl_span *sp
   
                 min1 = min2 = SIZE_MAX;                  min1 = min2 = SIZE_MAX;
                 for (icol = 0; icol <= maxcol; icol++) {                  for (icol = 0; icol <= maxcol; icol++) {
                         if (min1 > colwidth[icol]) {                          width = colwidth[icol];
                           if (min1 > width) {
                                 min2 = min1;                                  min2 = min1;
                                 min1 = colwidth[icol];                                  min1 = width;
                         } else if (min1 < colwidth[icol] &&                          } else if (min1 < width && min2 > width)
                             min2 > colwidth[icol])                                  min2 = width;
                                 min2 = colwidth[icol];  
                 }                  }
   
                 /*                  /*
Line 296  tblcalc(struct rofftbl *tbl, const struct tbl_span *sp
Line 295  tblcalc(struct rofftbl *tbl, const struct tbl_span *sp
                 for (g = first_group; g != NULL; g = g->next) {                  for (g = first_group; g != NULL; g = g->next) {
                         necol = 0;                          necol = 0;
                         for (icol = g->startcol; icol <= g->endcol; icol++)                          for (icol = g->startcol; icol <= g->endcol; icol++)
                                 if (tbl->cols[icol].width == min1)                                  if (colwidth[icol] == min1)
                                         necol++;                                          necol++;
                         if (necol == 0)                          if (necol == 0)
                                 continue;                                  continue;
Line 305  tblcalc(struct rofftbl *tbl, const struct tbl_span *sp
Line 304  tblcalc(struct rofftbl *tbl, const struct tbl_span *sp
                                 width = min2;                                  width = min2;
                         if (wanted > width)                          if (wanted > width)
                                 wanted = width;                                  wanted = width;
                         for (icol = g->startcol; icol <= g->endcol; icol++)  
                                 if (colwidth[icol] == min1 ||  
                                     (colwidth[icol] < min2 &&  
                                      colwidth[icol] > width))  
                                         colwidth[icol] = width;  
                 }                  }
   
                 /* Record the effect of the widening on the group list. */                  /* Record the effect of the widening. */
   
                 gp = &first_group;                  gp = &first_group;
                 while ((g = *gp) != NULL) {                  while ((g = *gp) != NULL) {
                         done = 0;                          done = 0;
                         for (icol = g->startcol; icol <= g->endcol; icol++) {                          for (icol = g->startcol; icol <= g->endcol; icol++) {
                                 if (colwidth[icol] != wanted ||                                  if (colwidth[icol] != min1)
                                     tbl->cols[icol].width == wanted)  
                                         continue;                                          continue;
                                 if (g->wanted <= wanted - min1) {                                  if (g->wanted <= wanted - min1) {
                                           tbl->cols[icol].width += g->wanted;
                                         done = 1;                                          done = 1;
                                         break;                                          break;
                                 }                                  }
                                   tbl->cols[icol].width = wanted;
                                 g->wanted -= wanted - min1;                                  g->wanted -= wanted - min1;
                         }                          }
                         if (done) {                          if (done) {
                                 *gp = g->next;                                  *gp = g->next;
                                 free(g);                                  free(g);
                         } else                          } else
                                 gp = &(*gp)->next;                                  gp = &g->next;
                 }                  }
   
                 /* Record the effect of the widening on the columns. */  
   
                 for (icol = 0; icol <= maxcol; icol++)  
                         if (colwidth[icol] == wanted)  
                                 tbl->cols[icol].width = wanted;  
         }          }
         free(colwidth);          free(colwidth);
   

Legend:
Removed from v.1.81  
changed lines
  Added in v.1.85

CVSweb