]> git.cameronkatri.com Git - mandoc.git/commitdiff
fix an obvious oversight introduced in rev. 1.5:
authorIngo Schwarze <schwarze@openbsd.org>
Mon, 24 May 2010 01:41:31 +0000 (01:41 +0000)
committerIngo Schwarze <schwarze@openbsd.org>
Mon, 24 May 2010 01:41:31 +0000 (01:41 +0000)
MANDOCERR_BODYLOST is not intended to be fatal;
required to unbreak the OpenBSD build

mandoc.h

index 36a39411d16c6a7f89e249d8edf753f774d15900..e8c4dd6024fce19bedfc0d8474b190dec2f12938 100644 (file)
--- a/mandoc.h
+++ b/mandoc.h
@@ -1,4 +1,4 @@
-/*     $Id: mandoc.h,v 1.5 2010/05/17 22:11:42 kristaps Exp $ */
+/*     $Id: mandoc.h,v 1.6 2010/05/24 01:41:31 schwarze Exp $ */
 /*
  * Copyright (c) 2010 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -72,7 +72,7 @@ enum  mandocerr {
        MANDOCERR_NOTITLE, /* no title in document */
        MANDOCERR_ARGSLOST, /* line argument(s) will be lost */
        MANDOCERR_BODYLOST, /* body argument(s) will be lost */
-#define        MANDOCERR_ERROR         MANDOCERR_ARGSLOST
+#define        MANDOCERR_ERROR         MANDOCERR_BODYLOST
 
        /* FIXME: this should be a MANDOCERR_ERROR */
        MANDOCERR_FONTTYPE, /* missing font type */