[BACK]Return to man_validate.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/man_validate.c between version 1.85 and 1.86

version 1.85, 2015/04/02 21:03:18 version 1.86, 2015/04/02 22:06:17
Line 33 
Line 33 
 #include "libmandoc.h"  #include "libmandoc.h"
 #include "libman.h"  #include "libman.h"
   
 #define CHKARGS   struct man *man, struct man_node *n  #define CHKARGS   struct man *man, struct roff_node *n
   
 typedef void    (*v_check)(CHKARGS);  typedef void    (*v_check)(CHKARGS);
   
Line 98 
Line 98 
 void  void
 man_valid_post(struct man *man)  man_valid_post(struct man *man)
 {  {
         struct man_node *n;          struct roff_node *n;
         v_check         *cp;          v_check         *cp;
   
         n = man->last;          n = man->last;
Line 298 
Line 298 
 static void  static void
 post_TH(CHKARGS)  post_TH(CHKARGS)
 {  {
         struct man_node *nb;          struct roff_node *nb;
         const char      *p;          const char      *p;
   
         free(man->meta.title);          free(man->meta.title);
Line 458 
Line 458 
             "System V Release 2",              "System V Release 2",
         };          };
   
           struct roff_node *nn;
         const char      *p, *s;          const char      *p, *s;
         struct man_node *nn;  
   
         n = n->child;          n = n->child;
   

Legend:
Removed from v.1.85  
changed lines
  Added in v.1.86