diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-11 14:12:01 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-11 14:12:01 +0000 |
commit | fa73a21290e351913eadd2b70b4471fd30829483 (patch) | |
tree | cb524df5813e538c91ca612c4110c9e4291a7eb9 /tbl_term.c | |
parent | c68f7a36a22b06ab0bb6afcd32d531d893abbc57 (diff) | |
download | mandoc-fa73a21290e351913eadd2b70b4471fd30829483.tar.gz |
Add support for "^" vertical spanners. Unlike GNU tbl, raise
error-class messages when data is being ignored by specifying it in "^"
cells (either as-is or in blocks).
Also note again that horizontal spanners aren't really supported...
Diffstat (limited to 'tbl_term.c')
-rw-r--r-- | tbl_term.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -305,6 +305,9 @@ tbl_data(struct termp *tp, const struct tbl *tbl, case (TBL_CELL_NUMBER): tbl_number(tp, tbl, dp, col); break; + case (TBL_CELL_DOWN): + tbl_char(tp, ASCII_NBRSP, col->width); + break; default: abort(); /* NOTREACHED */ |