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

Diff for /mandoc/html.c between version 1.102 and 1.103

version 1.102, 2010/06/19 20:46:27 version 1.103, 2010/06/25 19:50:23
Line 718  bufcat_su(struct html *h, const char *p, const struct 
Line 718  bufcat_su(struct html *h, const char *p, const struct 
                 break;                  break;
         }          }
   
         if (su->pt)          /*
                 buffmt(h, "%s: %f%s;", p, v, u);           * XXX: the CSS spec isn't clear as to which types accept
         else           * integer or real numbers, so we just make them all decimals.
                 /* LINTED */           */
                 buffmt(h, "%s: %d%s;", p, (int)v, u);          buffmt(h, "%s: %.2f%s;", p, v, u);
 }  }
   
   

Legend:
Removed from v.1.102  
changed lines
  Added in v.1.103

CVSweb