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

Diff for /mandoc/man_html.c between version 1.74 and 1.75

version 1.74, 2011/06/18 20:34:08 version 1.75, 2011/06/29 15:38:09
Line 414  man_br_pre(MAN_ARGS)
Line 414  man_br_pre(MAN_ARGS)
         SCALE_VS_INIT(&su, 1);          SCALE_VS_INIT(&su, 1);
   
         if (MAN_sp == n->tok) {          if (MAN_sp == n->tok) {
                 if (n->child)                  if (NULL != (n = n->child))
                         a2roffsu(n->child->string, &su, SCALE_VS);                          if ( ! a2roffsu(n->string, &su, SCALE_VS))
                                   SCALE_VS_INIT(&su, atoi(n->string));
         } else          } else
                 su.scale = 0;                  su.scale = 0;
   

Legend:
Removed from v.1.74  
changed lines
  Added in v.1.75

CVSweb