]> git.cameronkatri.com Git - mandoc.git/commitdiff
Revert IGNPAR to a warning after clue-stick applied by schwarze@:
authorKristaps Dzonsons <kristaps@bsd.lv>
Wed, 22 Dec 2010 11:38:17 +0000 (11:38 +0000)
committerKristaps Dzonsons <kristaps@bsd.lv>
Wed, 22 Dec 2010 11:38:17 +0000 (11:38 +0000)
although technically-speaking a lost macro is an error (e.g.,
MANDOCERR_MACRO), casting out some extra whitespace (note, IGNPAR only
happens in conditions where whitespace already exists!) is hardly an
error matter.

main.c
mandoc.h

diff --git a/main.c b/main.c
index 59f8fc69452574cf586d8c2ff1286b95e558a4f8..131068ff9ac803d5006f8c6544df2d3218582fd5 100644 (file)
--- a/main.c
+++ b/main.c
@@ -1,4 +1,4 @@
-/*     $Id: main.c,v 1.124 2010/12/21 01:22:03 schwarze Exp $ */
+/*     $Id: main.c,v 1.125 2010/12/22 11:38:17 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010 Ingo Schwarze <schwarze@openbsd.org>
@@ -145,6 +145,7 @@ static      const char * const      mandocerrs[MANDOCERR_MAX] = {
 
        /* related to macros and nesting */
        "skipping obsolete macro",
+       "skipping paragraph macro",
        "blocks badly nested",
        "child violates parent syntax",
        "nested displays are not portable",
@@ -182,7 +183,6 @@ static      const char * const      mandocerrs[MANDOCERR_MAX] = {
        "skipping bad character",
        "skipping text before the first section header",
        "skipping unknown macro",
-       "skipping paragraph macro",
        "NOT IMPLEMENTED: skipping request",
        "line scope broken",
        "argument count wrong",
index 5123979438e88f4cd554472770da9c3472536198..9b4eb759de070dc7d78db15164e43e09b9bcd365 100644 (file)
--- a/mandoc.h
+++ b/mandoc.h
@@ -1,4 +1,4 @@
-/*     $Id: mandoc.h,v 1.34 2010/12/15 23:39:40 kristaps Exp $ */
+/*     $Id: mandoc.h,v 1.35 2010/12/22 11:38:17 kristaps Exp $ */
 /*
  * Copyright (c) 2010 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -67,6 +67,7 @@ enum  mandocerr {
 
        /* related to macros and nesting */
        MANDOCERR_MACROOBS, /* skipping obsolete macro */
+       MANDOCERR_IGNPAR, /* skipping paragraph macro */
        MANDOCERR_SCOPENEST, /* blocks badly nested */
        MANDOCERR_CHILD, /* child violates parent syntax */
        MANDOCERR_NESTEDDISP, /* nested displays are not portable */
@@ -104,7 +105,6 @@ enum        mandocerr {
        MANDOCERR_BADCHAR, /* skipping bad character */
        MANDOCERR_NOTEXT, /* skipping text before the first section header */
        MANDOCERR_MACRO, /* skipping unknown macro */
-       MANDOCERR_IGNPAR, /* skipping paragraph macro */
        MANDOCERR_REQUEST, /* NOT IMPLEMENTED: skipping request */
        MANDOCERR_LINESCOPE, /* line scope broken */
        MANDOCERR_ARGCOUNT, /* argument count wrong */