[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.239 and 1.240

version 1.239, 2014/08/01 17:27:44 version 1.240, 2014/08/01 17:40:34
Line 1665  post_root(POST_ARGS)
Line 1665  post_root(POST_ARGS)
         /* Check that we begin with a proper `Sh'. */          /* Check that we begin with a proper `Sh'. */
   
         if (NULL == n->child)          if (NULL == n->child)
                 mdoc_nmsg(mdoc, n, MANDOCERR_DOC_EMPTY);                  mandoc_msg(MANDOCERR_DOC_EMPTY, mdoc->parse,
                       n->line, n->pos, NULL);
         else if (MDOC_Sh != n->child->tok)          else if (MDOC_Sh != n->child->tok)
                 mandoc_msg(MANDOCERR_SEC_BEFORE, mdoc->parse,                  mandoc_msg(MANDOCERR_SEC_BEFORE, mdoc->parse,
                     n->child->line, n->child->pos,                      n->child->line, n->child->pos,
Line 1844  post_ns(POST_ARGS)
Line 1845  post_ns(POST_ARGS)
 {  {
   
         if (MDOC_LINE & mdoc->last->flags)          if (MDOC_LINE & mdoc->last->flags)
                 mdoc_nmsg(mdoc, mdoc->last, MANDOCERR_NS_SKIP);                  mandoc_msg(MANDOCERR_NS_SKIP, mdoc->parse,
                       mdoc->last->line, mdoc->last->pos, NULL);
         return(1);          return(1);
 }  }
   

Legend:
Removed from v.1.239  
changed lines
  Added in v.1.240

CVSweb