[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.126 and 1.127

version 1.126, 2010/12/17 10:37:26 version 1.127, 2010/12/17 10:43:51
Line 1000  mdoc_ex_pre(MDOC_ARGS)
Line 1000  mdoc_ex_pre(MDOC_ARGS)
         struct tag              *t;          struct tag              *t;
         struct htmlpair          tag;          struct htmlpair          tag;
   
           if (n->prev)
                   print_otag(h, TAG_BR, 0, NULL);
   
         PAIR_CLASS_INIT(&tag, "utility");          PAIR_CLASS_INIT(&tag, "utility");
   
         print_text(h, "The");          print_text(h, "The");
Line 1637  mdoc_rv_pre(MDOC_ARGS)
Line 1640  mdoc_rv_pre(MDOC_ARGS)
         struct htmlpair          tag;          struct htmlpair          tag;
         struct tag              *t;          struct tag              *t;
   
         print_otag(h, TAG_DIV, 0, NULL);          if (n->prev)
                   print_otag(h, TAG_BR, 0, NULL);
   
         print_text(h, "The");          print_text(h, "The");
   
         for (nn = n->child; nn; nn = nn->next) {          for (nn = n->child; nn; nn = nn->next) {
Line 1833  mdoc_lb_pre(MDOC_ARGS)
Line 1838  mdoc_lb_pre(MDOC_ARGS)
 {  {
         struct htmlpair tag;          struct htmlpair tag;
   
         if (SEC_LIBRARY == n->sec && MDOC_LINE & n->flags)          if (SEC_LIBRARY == n->sec && MDOC_LINE & n->flags && n->prev)
                 print_otag(h, TAG_DIV, 0, NULL);                  print_otag(h, TAG_BR, 0, NULL);
   
         PAIR_CLASS_INIT(&tag, "lib");          PAIR_CLASS_INIT(&tag, "lib");
         print_otag(h, TAG_SPAN, 1, &tag);          print_otag(h, TAG_SPAN, 1, &tag);
         return(1);          return(1);

Legend:
Removed from v.1.126  
changed lines
  Added in v.1.127

CVSweb