[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.205 and 1.206

version 1.205, 2014/09/27 09:26:01 version 1.206, 2014/09/27 10:56:18
Line 314  synopsis_pre(struct html *h, const struct mdoc_node *n
Line 314  synopsis_pre(struct html *h, const struct mdoc_node *n
         case MDOC_In:          case MDOC_In:
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case MDOC_Vt:          case MDOC_Vt:
                 print_otag(h, TAG_P, 0, NULL);                  print_paragraph(h);
                 break;                  break;
         case MDOC_Ft:          case MDOC_Ft:
                 if (MDOC_Fn != n->tok && MDOC_Fo != n->tok) {                  if (MDOC_Fn != n->tok && MDOC_Fo != n->tok) {
                         print_otag(h, TAG_P, 0, NULL);                          print_paragraph(h);
                         break;                          break;
                 }                  }
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
Line 1156  mdoc_bd_pre(MDOC_ARGS)
Line 1156  mdoc_bd_pre(MDOC_ARGS)
                                 break;                                  break;
                 }                  }
                 if ( ! comp)                  if ( ! comp)
                         print_otag(h, TAG_P, 0, NULL);                          print_paragraph(h);
                 return(1);                  return(1);
         }          }
   
Line 1562  static int
Line 1562  static int
 mdoc_pp_pre(MDOC_ARGS)  mdoc_pp_pre(MDOC_ARGS)
 {  {
   
         print_otag(h, TAG_P, 0, NULL);          print_paragraph(h);
         return(0);          return(0);
 }  }
   
Line 1890  mdoc_rs_pre(MDOC_ARGS)
Line 1890  mdoc_rs_pre(MDOC_ARGS)
                 return(1);                  return(1);
   
         if (n->prev && SEC_SEE_ALSO == n->sec)          if (n->prev && SEC_SEE_ALSO == n->sec)
                 print_otag(h, TAG_P, 0, NULL);                  print_paragraph(h);
   
         PAIR_CLASS_INIT(&tag, "ref");          PAIR_CLASS_INIT(&tag, "ref");
         print_otag(h, TAG_SPAN, 1, &tag);          print_otag(h, TAG_SPAN, 1, &tag);

Legend:
Removed from v.1.205  
changed lines
  Added in v.1.206

CVSweb