[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.17 and 1.18

version 1.17, 2019/01/05 09:14:44 version 1.18, 2019/01/06 04:55:09
Line 107  roff_html_pre_nf(ROFF_HTML_ARGS)
Line 107  roff_html_pre_nf(ROFF_HTML_ARGS)
 static void  static void
 roff_html_pre_sp(ROFF_HTML_ARGS)  roff_html_pre_sp(ROFF_HTML_ARGS)
 {  {
         print_paragraph(h);          if (html_fillmode(h, TOKEN_NONE) == ROFF_nf) {
                   h->col++;
                   print_endline(h);
           } else if (n->parent->tok >= MAN_TH)
                   print_otag(h, TAG_P, "c", "Pp");
           else
                   print_paragraph(h);
 }  }

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.18

CVSweb