[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.169 and 1.170

version 1.169, 2011/05/17 11:38:18 version 1.170, 2011/06/16 22:21:28
Line 1666  mdoc_lk_pre(MDOC_ARGS)
Line 1666  mdoc_lk_pre(MDOC_ARGS)
   
         print_otag(h, TAG_A, 2, tag);          print_otag(h, TAG_A, 2, tag);
   
         for (n = n->next; n; n = n->next) {          if (NULL == n->next)
                 assert(MDOC_TEXT == n->type);  
                 print_text(h, n->string);                  print_text(h, n->string);
         }  
           for (n = n->next; n; n = n->next)
                   print_text(h, n->string);
   
         return(0);          return(0);
 }  }

Legend:
Removed from v.1.169  
changed lines
  Added in v.1.170

CVSweb