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

Diff for /mandoc/out.c between version 1.30 and 1.33

version 1.30, 2011/01/05 15:37:23 version 1.33, 2011/01/10 14:40:30
Line 399  tblcalc(struct rofftbl *tbl, const struct tbl_span *sp
Line 399  tblcalc(struct rofftbl *tbl, const struct tbl_span *sp
                  * to data cells in the data section.                   * to data cells in the data section.
                  */                   */
                 for (dp = sp->first; dp; dp = dp->next) {                  for (dp = sp->first; dp; dp = dp->next) {
                         if (NULL == dp->layout)                          assert(dp->layout);
                                 continue;  
                         col = &tbl->cols[dp->layout->head->ident];                          col = &tbl->cols[dp->layout->head->ident];
                         tblcalc_data(tbl, col, sp->tbl, dp);                          tblcalc_data(tbl, col, sp->tbl, dp);
                 }                  }
Line 503  tblcalc_number(struct rofftbl *tbl, struct roffcol *co
Line 502  tblcalc_number(struct rofftbl *tbl, struct roffcol *co
                 const struct tbl *tp, const struct tbl_dat *dp)                  const struct tbl *tp, const struct tbl_dat *dp)
 {  {
         int              i;          int              i;
         size_t           sz, psz, ssz, d;          size_t           sz, psz, ssz, d, max;
         char            *cp;          char            *cp;
         const char      *str;          const char      *str;
         char             buf[2];          char             buf[2];
   
         /* TODO: use spacing modifier. */  
   
         /*          /*
          * First calculate number width and decimal place (last + 1 for           * First calculate number width and decimal place (last + 1 for
          * no-decimal numbers).  If the stored decimal is subsequent           * no-decimal numbers).  If the stored decimal is subsequent
Line 519  tblcalc_number(struct rofftbl *tbl, struct roffcol *co
Line 516  tblcalc_number(struct rofftbl *tbl, struct roffcol *co
          * Finally, re-assign the stored values.           * Finally, re-assign the stored values.
          */           */
   
         str = "";          str = dp && dp->string ? dp->string : "";
         if (dp->string)          max = dp && dp->layout ? dp->layout->spacing : 0;
                 str = dp->string;  
   
         sz = (*tbl->slen)(str, tbl->arg);          sz = (*tbl->slen)(str, tbl->arg);
   
Line 530  tblcalc_number(struct rofftbl *tbl, struct roffcol *co
Line 526  tblcalc_number(struct rofftbl *tbl, struct roffcol *co
   
         psz = (*tbl->slen)(buf, tbl->arg);          psz = (*tbl->slen)(buf, tbl->arg);
   
         if (NULL != (cp = strchr(str, tp->decimal))) {          if (NULL != (cp = strrchr(str, tp->decimal))) {
                 buf[1] = '\0';                  buf[1] = '\0';
                 for (ssz = 0, i = 0; cp != &str[i]; i++) {                  for (ssz = 0, i = 0; cp != &str[i]; i++) {
                         buf[0] = str[i];                          buf[0] = str[i];
Line 557  tblcalc_number(struct rofftbl *tbl, struct roffcol *co
Line 553  tblcalc_number(struct rofftbl *tbl, struct roffcol *co
                 col->width = sz;                  col->width = sz;
         if (d > col->decimal)          if (d > col->decimal)
                 col->decimal = d;                  col->decimal = d;
   
           /* Adjust for stipulated width. */
   
           if (col->width < max)
                   col->width = max;
 }  }
   
   

Legend:
Removed from v.1.30  
changed lines
  Added in v.1.33

CVSweb