[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.112 and 1.113

version 1.112, 2018/12/14 05:17:45 version 1.113, 2018/12/31 04:55:42
Line 99 
Line 99 
   
 /* Validate the subtree rooted at man->last. */  /* Validate the subtree rooted at man->last. */
 void  void
 man_node_validate(struct roff_man *man)  man_validate(struct roff_man *man)
 {  {
         struct roff_node *n;          struct roff_node *n;
         const v_check    *cp;          const v_check    *cp;
Line 126 
Line 126 
   
         man->last = man->last->child;          man->last = man->last->child;
         while (man->last != NULL) {          while (man->last != NULL) {
                 man_node_validate(man);                  man_validate(man);
                 if (man->last == n)                  if (man->last == n)
                         man->last = man->last->child;                          man->last = man->last->child;
                 else                  else

Legend:
Removed from v.1.112  
changed lines
  Added in v.1.113