From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from krisdoz.my.domain (kristaps@localhost [127.0.0.1]) by krisdoz.my.domain (8.14.3/8.14.3) with ESMTP id p6IEUpjx005500 for ; Mon, 18 Jul 2011 10:30:52 -0400 (EDT) Received: (from kristaps@localhost) by krisdoz.my.domain (8.14.3/8.14.3/Submit) id p6IEUpfi030526; Mon, 18 Jul 2011 10:30:51 -0400 (EDT) Date: Mon, 18 Jul 2011 10:30:51 -0400 (EDT) Message-Id: <201107181430.p6IEUpfi030526@krisdoz.my.domain> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: kristaps@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: mdocml: Forgot to add these bits to the last commit. X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- Forgot to add these bits to the last commit. Modified Files: -------------- mdocml: mandoc.h read.c Revision Data ------------- Index: mandoc.h =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/mandoc.h,v retrieving revision 1.80 retrieving revision 1.81 diff -Lmandoc.h -Lmandoc.h -u -p -r1.80 -r1.81 --- mandoc.h +++ mandoc.h @@ -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 */ Index: read.c =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/read.c,v retrieving revision 1.18 retrieving revision 1.19 diff -Lread.c -Lread.c -u -p -r1.18 -r1.19 --- read.c +++ read.c @@ -153,6 +153,7 @@ static const char * const mandocerrs[MAN /* related to equations */ "bad equation macro syntax", + "too many nested equation defines", /* related to tables */ "bad table syntax", -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv