From 9c243a1c877e4c624333ef5f2c736974a3c52251 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Fri, 31 Dec 2010 14:52:41 +0000 Subject: Put parsed tables into a queue that's cleared at the end of parsing. This completes the parsing phase of the new tbl implementation. --- libroff.h | 1 + 1 file changed, 1 insertion(+) (limited to 'libroff.h') diff --git a/libroff.h b/libroff.h index e310275c..d86858b9 100644 --- a/libroff.h +++ b/libroff.h @@ -101,6 +101,7 @@ struct tbl { struct tbl_row *last_row; struct tbl_span *first_span; struct tbl_span *last_span; + struct tbl *next; }; #define TBL_MSG(tblp, type, line, col) \ -- cgit