]> git.cameronkatri.com Git - mandoc.git/commitdiff
Fixed mdoc_nwarn/mdoc_nerr considering themselves err/warn instead of warn/err (BIG...
authorKristaps Dzonsons <kristaps@bsd.lv>
Sun, 12 Jul 2009 09:13:21 +0000 (09:13 +0000)
committerKristaps Dzonsons <kristaps@bsd.lv>
Sun, 12 Jul 2009 09:13:21 +0000 (09:13 +0000)
libmdoc.h
mdoc_validate.c

index 6a92bcb6f761147635748aa19506abe375ba47dc..f351e78fd6e74689e00bc3c52c6724e63e4f347a 100644 (file)
--- a/libmdoc.h
+++ b/libmdoc.h
@@ -1,4 +1,4 @@
-/*     $Id: libmdoc.h,v 1.14 2009/07/07 09:29:15 kristaps Exp $ */
+/*     $Id: libmdoc.h,v 1.15 2009/07/12 09:13:21 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -123,9 +123,9 @@ __BEGIN_DECLS
 #define                  mdoc_pwarn(m, l, p, t) \
                  mdoc_err((m), (l), (p), 0, (t))
 #define                  mdoc_nerr(m, n, t) \
-                 mdoc_err((m), (n)->line, (n)->pos, 0, (t))
-#define                  mdoc_nwarn(m, n, t) \
                  mdoc_err((m), (n)->line, (n)->pos, 1, (t))
+#define                  mdoc_nwarn(m, n, t) \
+                 mdoc_err((m), (n)->line, (n)->pos, 0, (t))
 
 int              mdoc_err(struct mdoc *, int, int, int, enum merr);
 int              mdoc_verr(struct mdoc *, int, int, const char *, ...);
index 195fe46268766a3d25b0280e4a8856e288da07ec..d239a504c99f1e136f229691fbf1fb6acd859f7b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: mdoc_validate.c,v 1.25 2009/07/07 11:47:17 kristaps Exp $ */
+/*     $Id: mdoc_validate.c,v 1.26 2009/07/12 09:13:21 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -1217,9 +1217,11 @@ post_sh_head(POST_ARGS)
        if (SEC_CUSTOM == sec)
                return(1);
        if (sec == mdoc->lastnamed)
-               return(mdoc_nwarn(mdoc, mdoc->last, ESECREP));
+               if ( ! mdoc_nwarn(mdoc, mdoc->last, ESECREP))
+                       return(0);
        if (sec < mdoc->lastnamed)
-               return(mdoc_nwarn(mdoc, mdoc->last, ESECOOO));
+               if ( ! mdoc_nwarn(mdoc, mdoc->last, ESECOOO))
+                       return(0);
 
        /* 
         * Check particular section/manual conventions.  LIBRARY can