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

Diff for /mandoc/man_validate.c between version 1.142 and 1.143

version 1.142, 2018/12/16 00:21:05 version 1.143, 2018/12/31 04:55:46
Line 101  static const v_check man_valids[MAN_MAX - MAN_TH] = {
Line 101  static const v_check man_valids[MAN_MAX - MAN_TH] = {
   
 /* 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 128  man_node_validate(struct roff_man *man)
Line 128  man_node_validate(struct roff_man *man)
   
         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.142  
changed lines
  Added in v.1.143

CVSweb