summaryrefslogtreecommitdiffstats
path: root/mandoc.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-01-01 22:27:08 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-01-01 22:27:08 +0000
commite42168f3c9168eabd49050d6133c5a77f19985c7 (patch)
treec2b557609ab8741e69245a09c9a586c06d5f6eee /mandoc.h
parent36060e6f93695c0dc996afbb3c9f53f6a825488b (diff)
downloadmandoc-e42168f3c9168eabd49050d6133c5a77f19985c7.tar.gz
Add a warning if a data cell has no layout. Also make -Ttree show this
with a little star next to the entry (yeah, this is mostly for testing).
Diffstat (limited to 'mandoc.h')
-rw-r--r--mandoc.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/mandoc.h b/mandoc.h
index 911df76e..5eba175d 100644
--- a/mandoc.h
+++ b/mandoc.h
@@ -99,13 +99,18 @@ enum mandocerr {
MANDOCERR_BADESCAPE, /* unknown escape sequence */
MANDOCERR_BADQUOTE, /* unterminated quoted string */
+ /* related to tables */
+ MANDOCERR_TBLEXTRADAT, /* extra data cells */
+
MANDOCERR_ERROR, /* ===== start of errors ===== */
+ /* related to tables */
MANDOCERR_TBL, /* bad table syntax */
MANDOCERR_TBLOPT, /* bad table option */
MANDOCERR_TBLLAYOUT, /* bad table layout */
MANDOCERR_TBLNOLAYOUT, /* no table layout cells specified */
MANDOCERR_TBLNODATA, /* no table data cells specified */
+
MANDOCERR_ROFFLOOP, /* input stack limit exceeded, infinite loop? */
MANDOCERR_BADCHAR, /* skipping bad character */
MANDOCERR_NOTEXT, /* skipping text before the first section header */