[BACK]Return to tree.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/tree.c between version 1.14 and 1.15

version 1.14, 2009/08/13 11:45:29 version 1.15, 2009/09/16 09:41:24
Line 27  static void print_man(const struct man_node *, int);
Line 27  static void print_man(const struct man_node *, int);
   
   
 /* ARGSUSED */  /* ARGSUSED */
 int  void
 tree_mdoc(void *arg, const struct mdoc *mdoc)  tree_mdoc(void *arg, const struct mdoc *mdoc)
 {  {
   
         print_mdoc(mdoc_node(mdoc), 0);          print_mdoc(mdoc_node(mdoc), 0);
         return(1);  
 }  }
   
   
 /* ARGSUSED */  /* ARGSUSED */
 int  void
 tree_man(void *arg, const struct man *man)  tree_man(void *arg, const struct man *man)
 {  {
   
         print_man(man_node(man), 0);          print_man(man_node(man), 0);
         return(1);  
 }  }
   
   

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15

CVSweb