[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.232 and 1.233

version 1.232, 2015/04/18 17:53:21 version 1.233, 2015/08/30 19:00:14
Line 1642  mdoc_fo_pre(MDOC_ARGS)
Line 1642  mdoc_fo_pre(MDOC_ARGS)
                 return(1);                  return(1);
         }          }
   
         /* XXX: we drop non-initial arguments as per groff. */          if (n->child == NULL)
                   return(0);
   
         assert(n->child);  
         assert(n->child->string);          assert(n->child->string);
   
         PAIR_CLASS_INIT(&tag, "fname");          PAIR_CLASS_INIT(&tag, "fname");
         t = print_otag(h, TAG_B, 1, &tag);          t = print_otag(h, TAG_B, 1, &tag);
         print_text(h, n->child->string);          print_text(h, n->child->string);

Legend:
Removed from v.1.232  
changed lines
  Added in v.1.233

CVSweb