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

Diff for /mandoc/html.c between version 1.161 and 1.162

version 1.161, 2014/08/13 15:25:22 version 1.162, 2014/08/13 20:34:29
Line 760  bufcat_su(struct html *h, const char *p, const struct 
Line 760  bufcat_su(struct html *h, const char *p, const struct 
         v = su->scale;          v = su->scale;
         if (SCALE_MM == su->unit && 0.0 == (v /= 100.0))          if (SCALE_MM == su->unit && 0.0 == (v /= 100.0))
                 v = 1.0;                  v = 1.0;
           else if (SCALE_BU == su->unit)
                   v /= 24.0;
   
         bufcat_fmt(h, "%s: %.2f%s;", p, v, roffscales[su->unit]);          bufcat_fmt(h, "%s: %.2f%s;", p, v, roffscales[su->unit]);
 }  }

Legend:
Removed from v.1.161  
changed lines
  Added in v.1.162

CVSweb