[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.219 and 1.220

version 1.219, 2015/01/23 14:21:01 version 1.220, 2015/01/30 22:04:44
Line 371  static void
Line 371  static void
 print_mdoc_nodelist(MDOC_ARGS)  print_mdoc_nodelist(MDOC_ARGS)
 {  {
   
         print_mdoc_node(meta, n, h);          while (n != NULL) {
         if (n->next)                  print_mdoc_node(meta, n, h);
                 print_mdoc_nodelist(meta, n->next, h);                  n = n->next;
           }
 }  }
   
 static void  static void

Legend:
Removed from v.1.219  
changed lines
  Added in v.1.220

CVSweb