]> git.cameronkatri.com Git - mandoc.git/blobdiff - man.c
Fixed after-NLINE-error assertion.
[mandoc.git] / man.c
diff --git a/man.c b/man.c
index eab8e40042a0e5fe6871498661436170fb4011f6..f0f5b83c889e434981b0cbba6c80170e97bc63fb 100644 (file)
--- a/man.c
+++ b/man.c
@@ -1,4 +1,4 @@
-/* $Id: man.c,v 1.11 2009/03/26 14:38:11 kristaps Exp $ */
+/* $Id: man.c,v 1.12 2009/03/26 14:44:41 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@openbsd.org>
  *
@@ -343,7 +343,7 @@ man_pmacro(struct man *m, int ln, char *buf)
                if ( ! man_vwarn(m, ln, ppos, 
                                "ill-formed macro: %s", mac))
                        goto err;
-               goto out;
+               return(1);
        }
        
        if (MAN_MAX == (c = man_hash_find(m->htab, mac))) {
@@ -355,7 +355,7 @@ man_pmacro(struct man *m, int ln, char *buf)
                if ( ! man_vwarn(m, ln, ppos, 
                                "unknown macro: %s", mac))
                        goto err;
-               goto out;
+               return(1);
        }
 
        /* The macro is sane.  Jump to the next word. */