diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-12-31 14:52:41 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-12-31 14:52:41 +0000 |
commit | 9c243a1c877e4c624333ef5f2c736974a3c52251 (patch) | |
tree | 70064f0421edf9486c451cf4cfd48ad687227fae /libroff.h | |
parent | bb503db26691fd10d98793fe9960376cd9835add (diff) | |
download | mandoc-9c243a1c877e4c624333ef5f2c736974a3c52251.tar.gz |
Put parsed tables into a queue that's cleared at the end of parsing.
This completes the parsing phase of the new tbl implementation.
Diffstat (limited to 'libroff.h')
-rw-r--r-- | libroff.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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) \ |