]> git.cameronkatri.com Git - mandoc.git/blobdiff - mdoc_validate.c
When finding a bogus database entry,
[mandoc.git] / mdoc_validate.c
index de36bb843eb2600732ff4cbd7415f43e0859c4c6..3a9b86f3fd2b555741c4576130e1c73300f92578 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: mdoc_validate.c,v 1.350 2017/07/20 12:54:02 schwarze Exp $ */
+/*     $Id: mdoc_validate.c,v 1.352 2017/08/02 13:29:04 schwarze Exp $ */
 /*
  * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010-2017 Ingo Schwarze <schwarze@openbsd.org>
@@ -1137,8 +1137,6 @@ post_fname(POST_ARGS)
        if ( ! (cp[0] == '\0' || (cp[0] == '(' && cp[1] == '*')))
                mandoc_msg(MANDOCERR_FN_PAREN, mdoc->parse,
                    n->line, n->pos + pos, n->string);
-       if (n->sec == SEC_SYNOPSIS && mdoc->meta.msec != NULL)
-               mandoc_xr_add(mdoc->meta.msec, n->string, -1, -1);
 }
 
 static void
@@ -1205,9 +1203,8 @@ post_nm(POST_ARGS)
 
        n = mdoc->last;
 
-       if ((n->sec == SEC_NAME || n->sec == SEC_SYNOPSIS) &&
-           n->child != NULL && n->child->type == ROFFT_TEXT &&
-           mdoc->meta.msec != NULL)
+       if (n->sec == SEC_NAME && n->child != NULL &&
+           n->child->type == ROFFT_TEXT && mdoc->meta.msec != NULL)
                mandoc_xr_add(mdoc->meta.msec, n->child->string, -1, -1);
 
        if (n->last != NULL &&
@@ -1931,7 +1928,7 @@ post_root(POST_ARGS)
        /* Check that we begin with a proper `Sh'. */
 
        n = mdoc->first->child;
-       while (n != NULL && n->tok != TOKEN_NONE &&
+       while (n != NULL && n->tok >= MDOC_Dd &&
            mdoc_macros[n->tok].flags & MDOC_PROLOGUE)
                n = n->next;