]> git.cameronkatri.com Git - mandoc.git/commitdiff
Forgot to add these bits to the last commit.
authorKristaps Dzonsons <kristaps@bsd.lv>
Mon, 18 Jul 2011 14:30:51 +0000 (14:30 +0000)
committerKristaps Dzonsons <kristaps@bsd.lv>
Mon, 18 Jul 2011 14:30:51 +0000 (14:30 +0000)
mandoc.h
read.c

index 23b672af09d2f819b46d898787358d515c62c23d..31d5444afe385e0222f86c5a09cbfd1bb2ecb87e 100644 (file)
--- a/mandoc.h
+++ b/mandoc.h
@@ -1,4 +1,4 @@
-/*     $Id: mandoc.h,v 1.80 2011/07/17 14:08:49 kristaps Exp $ */
+/*     $Id: mandoc.h,v 1.81 2011/07/18 14:30:51 kristaps Exp $ */
 /*
  * Copyright (c) 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -111,6 +111,7 @@ enum        mandocerr {
 
        /* related to equations */
        MANDOCERR_EQNARGS, /* bad equation macro arguments */
+       MANDOCERR_EQNNEST, /* too many nested equation defines */
 
        /* related to tables */
        MANDOCERR_TBL, /* bad table syntax */
diff --git a/read.c b/read.c
index ee71370537b0b78da976334d7b9797fbf012370c..8d59b23f43df751ebd8ebc10ed9a74f4d356e372 100644 (file)
--- a/read.c
+++ b/read.c
@@ -1,4 +1,4 @@
-/*     $Id: read.c,v 1.18 2011/07/18 07:46:41 kristaps Exp $ */
+/*     $Id: read.c,v 1.19 2011/07/18 14:30:51 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010, 2011 Ingo Schwarze <schwarze@openbsd.org>
@@ -153,6 +153,7 @@ static      const char * const      mandocerrs[MANDOCERR_MAX] = {
 
        /* related to equations */
        "bad equation macro syntax",
+       "too many nested equation defines",
 
        /* related to tables */
        "bad table syntax",