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

Diff for /mandoc/mdoc_validate.c between version 1.357 and 1.358

version 1.357, 2018/04/05 09:17:26 version 1.358, 2018/04/11 17:11:13
Line 320  mdoc_node_validate(struct roff_man *mdoc)
Line 320  mdoc_node_validate(struct roff_man *mdoc)
                     (np->tok == MDOC_Sh || np->tok == MDOC_Ss)))                      (np->tok == MDOC_Sh || np->tok == MDOC_Ss)))
                         check_toptext(mdoc, n->line, n->pos, n->string);                          check_toptext(mdoc, n->line, n->pos, n->string);
                 break;                  break;
           case ROFFT_COMMENT:
         case ROFFT_EQN:          case ROFFT_EQN:
         case ROFFT_TBL:          case ROFFT_TBL:
                 break;                  break;
Line 1988  post_root(POST_ARGS)
Line 1989  post_root(POST_ARGS)
         /* Check that we begin with a proper `Sh'. */          /* Check that we begin with a proper `Sh'. */
   
         n = mdoc->first->child;          n = mdoc->first->child;
         while (n != NULL && n->tok >= MDOC_Dd &&          while (n != NULL &&
             mdoc_macros[n->tok].flags & MDOC_PROLOGUE)              (n->type == ROFFT_COMMENT ||
                (n->tok >= MDOC_Dd &&
                 mdoc_macros[n->tok].flags & MDOC_PROLOGUE)))
                 n = n->next;                  n = n->next;
   
         if (n == NULL)          if (n == NULL)

Legend:
Removed from v.1.357  
changed lines
  Added in v.1.358

CVSweb