summaryrefslogtreecommitdiffstats
path: root/libroff.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-12-30 10:26:00 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-12-30 10:26:00 +0000
commitbb503db26691fd10d98793fe9960376cd9835add (patch)
treea75cb8b4dcf38ea8ba65a4b66737230945de3fb3 /libroff.h
parente875ab2ae5330f3a0ed3e650ab2ea07460c2266a (diff)
downloadmandoc-bb503db26691fd10d98793fe9960376cd9835add.tar.gz
Assign layout cells to parsed data. This follows primarily from
tbl.bsd.lv, although it has been reimplemented.
Diffstat (limited to 'libroff.h')
-rw-r--r--libroff.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libroff.h b/libroff.h
index c593644e..e310275c 100644
--- a/libroff.h
+++ b/libroff.h
@@ -61,6 +61,7 @@ struct tbl_row {
};
struct tbl_dat {
+ struct tbl_cell *layout; /* layout cell: CAN BE NULL */
struct tbl_dat *next;
char *string;
int flags;
@@ -71,6 +72,7 @@ struct tbl_dat {
};
struct tbl_span {
+ struct tbl_row *layout; /* layout row: CAN BE NULL */
struct tbl_dat *first;
struct tbl_dat *last;
int flags;