From d84dbf74b948c2ca03a405c62aaddd91c404e66e Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sat, 1 Jan 2011 16:10:40 +0000 Subject: Raise an error if a table is closed without data. --- libroff.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libroff.h') diff --git a/libroff.h b/libroff.h index 4c9617a9..a140d2a5 100644 --- a/libroff.h +++ b/libroff.h @@ -54,7 +54,7 @@ struct tbl { (*(tblp)->msg)((type), (tblp)->data, (line), (col), NULL) struct tbl *tbl_alloc(int, int, void *, mandocmsg); -void tbl_restart(struct tbl *); +void tbl_restart(int, int, struct tbl *); void tbl_free(struct tbl *); void tbl_reset(struct tbl *); enum rofferr tbl_read(struct tbl *, int, const char *, int); -- cgit