aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mandoc.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-01-04 15:02:00 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-01-04 15:02:00 +0000
commit2a7ad7cc27a054ffb9b426860d023ebc687b10c9 (patch)
tree51c4df0ecca7c1c0a288eb7ed01772cec498c44f /mandoc.h
parentdf93d3ceecb1d865ef7249ba9348370ffc024e60 (diff)
downloadmandoc-2a7ad7cc27a054ffb9b426860d023ebc687b10c9.tar.gz
mandoc-2a7ad7cc27a054ffb9b426860d023ebc687b10c9.tar.zst
mandoc-2a7ad7cc27a054ffb9b426860d023ebc687b10c9.zip
Support `T{' and `T}' data blocks. When a standalone `T{' is
encountered as a line's last data cell, move into TBL_PART_CDATA mode whilst leaving the cell's designation as TBL_DATA_NONE. When new data arrives that's not a standalone `T}', append it to the cell contends. Close out and warn appropriately.
Diffstat (limited to 'mandoc.h')
-rw-r--r--mandoc.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/mandoc.h b/mandoc.h
index 75d8f1d3..7da2e541 100644
--- a/mandoc.h
+++ b/mandoc.h
@@ -1,4 +1,4 @@
-/* $Id: mandoc.h,v 1.47 2011/01/04 12:06:21 kristaps Exp $ */
+/* $Id: mandoc.h,v 1.48 2011/01/04 15:02:00 kristaps Exp $ */
/*
* Copyright (c) 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -112,6 +112,7 @@ enum mandocerr {
MANDOCERR_TBLNOLAYOUT, /* no table layout cells specified */
MANDOCERR_TBLNODATA, /* no table data cells specified */
MANDOCERR_TBLIGNDATA, /* ignore data in cell */
+ MANDOCERR_TBLBLOCK, /* data block still open */
MANDOCERR_ROFFLOOP, /* input stack limit exceeded, infinite loop? */
MANDOCERR_BADCHAR, /* skipping bad character */
@@ -224,6 +225,7 @@ struct tbl_row {
};
enum tbl_datt {
+ TBL_DATA_NONE,
TBL_DATA_DATA,
TBL_DATA_HORIZ,
TBL_DATA_DHORIZ,