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

Diff for /mandoc/mdoc_man.c between version 1.3 and 1.4

version 1.3, 2011/09/30 00:13:28 version 1.4, 2011/10/06 22:29:12
Line 18 
Line 18 
 #include <string.h>  #include <string.h>
   
 #include "mandoc.h"  #include "mandoc.h"
   #include "man.h"
 #include "mdoc.h"  #include "mdoc.h"
 #include "main.h"  #include "main.h"
   
Line 216  print_word(const char *s)
Line 217  print_word(const char *s)
                         break;                          break;
                 }                  }
         }          }
   }
   
   void
   man_man(void *arg, const struct man *man)
   {
   
           fputs(mparse_getkeep(man_mparse(man)), stdout);
 }  }
   
 void  void

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

CVSweb