From c55312cd12a98b785c3fcb600c21a78c6704d667 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Tue, 11 Jan 2011 14:12:01 +0000 Subject: 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... --- tbl_term.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tbl_term.c') diff --git a/tbl_term.c b/tbl_term.c index b93cae3e..57fc3290 100644 --- a/tbl_term.c +++ b/tbl_term.c @@ -1,4 +1,4 @@ -/* $Id: tbl_term.c,v 1.17 2011/01/10 14:56:06 kristaps Exp $ */ +/* $Id: tbl_term.c,v 1.18 2011/01/11 14:12:01 kristaps Exp $ */ /* * Copyright (c) 2009 Kristaps Dzonsons * @@ -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 */ -- cgit v1.2.3