summaryrefslogtreecommitdiffstats
path: root/tbl_data.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-01-01 22:27:08 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-01-01 22:27:08 +0000
commite42168f3c9168eabd49050d6133c5a77f19985c7 (patch)
treec2b557609ab8741e69245a09c9a586c06d5f6eee /tbl_data.c
parent36060e6f93695c0dc996afbb3c9f53f6a825488b (diff)
downloadmandoc-e42168f3c9168eabd49050d6133c5a77f19985c7.tar.gz
Add a warning if a data cell has no layout. Also make -Ttree show this
with a little star next to the entry (yeah, this is mostly for testing).
Diffstat (limited to 'tbl_data.c')
-rw-r--r--tbl_data.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tbl_data.c b/tbl_data.c
index 56b13c99..708a9ea6 100644
--- a/tbl_data.c
+++ b/tbl_data.c
@@ -52,6 +52,9 @@ data(struct tbl *tbl, struct tbl_span *dp,
dat = mandoc_calloc(1, sizeof(struct tbl_dat));
dat->layout = cp;
+ if (NULL == dat->layout)
+ TBL_MSG(tbl, MANDOCERR_TBLEXTRADAT, ln, *pos);
+
if (dp->last) {
dp->last->next = dat;
dp->last = dat;