]> git.cameronkatri.com Git - mandoc.git/blobdiff - mdoc_validate.c
Removed superfluous FIXMEs in mdoc_term.c.
[mandoc.git] / mdoc_validate.c
index 4a31b458f1749278b8ed1bedc79b3f50593158e1..ea3a9a7d22edeff02e9e833c50ebc356f3879460 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: mdoc_validate.c,v 1.27 2009/07/12 16:34:16 kristaps Exp $ */
+/*     $Id: mdoc_validate.c,v 1.29 2009/07/12 16:41:33 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -1153,7 +1153,7 @@ post_sh_body(POST_ARGS)
 {
        struct mdoc_node *n;
 
-       if (SEC_NAME != mdoc->lastnamed)
+       if (SEC_NAME != mdoc->lastsec)
                return(1);
 
        /*
@@ -1168,6 +1168,8 @@ post_sh_body(POST_ARGS)
        for ( ; n && n->next; n = n->next) {
                if (MDOC_ELEM == n->type && MDOC_Nm == n->tok)
                        continue;
+               if (MDOC_TEXT == n->type)
+                       continue;
                if ( ! mdoc_nwarn(mdoc, mdoc->last, ENAMESECINC))
                        return(0);
        }