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

Diff for /mandoc/mdoc_html.c between version 1.329 and 1.330

version 1.329, 2019/09/01 15:12:19 version 1.330, 2019/09/03 15:09:44
Line 653  mdoc_nd_pre(MDOC_ARGS)
Line 653  mdoc_nd_pre(MDOC_ARGS)
 {  {
         switch (n->type) {          switch (n->type) {
         case ROFFT_BLOCK:          case ROFFT_BLOCK:
                 html_close_paragraph(h);  
                 return 1;                  return 1;
         case ROFFT_HEAD:          case ROFFT_HEAD:
                 return 0;                  return 0;
Line 663  mdoc_nd_pre(MDOC_ARGS)
Line 662  mdoc_nd_pre(MDOC_ARGS)
                 abort();                  abort();
         }          }
         print_text(h, "\\(em");          print_text(h, "\\(em");
         /* Cannot use TAG_SPAN because it may contain blocks. */          print_otag(h, TAG_SPAN, "c", "Nd");
         print_otag(h, TAG_DIV, "c", "Nd");  
         return 1;          return 1;
 }  }
   

Legend:
Removed from v.1.329  
changed lines
  Added in v.1.330

CVSweb