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

Diff for /mandoc/html.c between version 1.61 and 1.62

version 1.61, 2009/10/07 15:27:11 version 1.62, 2009/10/09 06:54:11
Line 599  buffmt_man(struct html *h, 
Line 599  buffmt_man(struct html *h, 
 void  void
 bufcat_su(struct html *h, const char *p, const struct roffsu *su)  bufcat_su(struct html *h, const char *p, const struct roffsu *su)
 {  {
         int              v;          double           v;
         char            *u;          char            *u;
   
         v = su->scale;          v = su->scale;
Line 639  bufcat_su(struct html *h, const char *p, const struct 
Line 639  bufcat_su(struct html *h, const char *p, const struct 
                 break;                  break;
         }          }
   
         buffmt(h, "%s: %d%s;", p, v, u);          if (su->pt)
                   buffmt(h, "%s: %f%s;", p, v, u);
           else
                   /* LINTED */
                   buffmt(h, "%s: %d%s;", p, (int)v, u);
 }  }

Legend:
Removed from v.1.61  
changed lines
  Added in v.1.62

CVSweb