[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.25 and 1.26

version 1.25, 2009/10/07 14:50:28 version 1.26, 2009/10/07 15:06:03
Line 1624  mdoc_fn_pre(MDOC_ARGS)
Line 1624  mdoc_fn_pre(MDOC_ARGS)
         assert(n->child->string);          assert(n->child->string);
         sp = n->child->string;          sp = n->child->string;
   
         if ((ep = strchr(sp, ' '))) {          ep = strchr(sp, ' ');
           if (NULL != ep) {
                 PAIR_CLASS_INIT(&tag[0], "ftype");                  PAIR_CLASS_INIT(&tag[0], "ftype");
                 t = print_otag(h, TAG_SPAN, 1, tag);                  t = print_otag(h, TAG_SPAN, 1, tag);
   

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26

CVSweb