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

Diff for /mandoc/roff_html.c between version 1.7 and 1.9

version 1.7, 2017/06/06 15:01:04 version 1.9, 2017/06/14 13:00:31
Line 38  static const roff_html_pre_fp roff_html_pre_acts[ROFF_
Line 38  static const roff_html_pre_fp roff_html_pre_acts[ROFF_
         NULL,  /* ft */          NULL,  /* ft */
         NULL,  /* ll */          NULL,  /* ll */
         NULL,  /* mc */          NULL,  /* mc */
           roff_html_pre_ce,  /* rj */
         roff_html_pre_sp,  /* sp */          roff_html_pre_sp,  /* sp */
         NULL,  /* ta */          NULL,  /* ta */
         NULL,  /* ti */          NULL,  /* ti */
Line 83  roff_html_pre_sp(ROFF_HTML_ARGS)
Line 84  roff_html_pre_sp(ROFF_HTML_ARGS)
   
         SCALE_VS_INIT(&su, 1);          SCALE_VS_INIT(&su, 1);
         if ((n = n->child) != NULL) {          if ((n = n->child) != NULL) {
                 if (a2roffsu(n->string, &su, SCALE_VS) == 0)                  if (a2roffsu(n->string, &su, SCALE_VS) == NULL)
                         su.scale = 1.0;                          su.scale = 1.0;
                 else if (su.scale < 0.0)                  else if (su.scale < 0.0)
                         su.scale = 0.0;                          su.scale = 0.0;

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.9

CVSweb