From 169a2d82c18ba1ee663ba1da329795f3e1753e8d Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Tue, 4 Jan 2011 15:02:00 +0000 Subject: 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. --- mandoc.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'mandoc.h') diff --git a/mandoc.h b/mandoc.h index fbe04641..db225a39 100644 --- a/mandoc.h +++ b/mandoc.h @@ -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, -- cgit