aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mandoc.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-02-06 22:02:58 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-02-06 22:02:58 +0000
commit3a8ad8057352b753c868261c2eb7a11b81d3c325 (patch)
tree99b6211a0df6a943ca0cf1c08c926adb80784e1c /mandoc.h
parentd9c6b1be15e48dc43678c02ee4e86d280ea73046 (diff)
downloadmandoc-3a8ad8057352b753c868261c2eb7a11b81d3c325.tar.gz
mandoc-3a8ad8057352b753c868261c2eb7a11b81d3c325.tar.zst
mandoc-3a8ad8057352b753c868261c2eb7a11b81d3c325.zip
Let the line-number of a tbl_span be remembered.
Diffstat (limited to 'mandoc.h')
-rw-r--r--mandoc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/mandoc.h b/mandoc.h
index 746b20d6..845c85a5 100644
--- a/mandoc.h
+++ b/mandoc.h
@@ -1,4 +1,4 @@
-/* $Id: mandoc.h,v 1.55 2011/02/06 20:36:36 kristaps Exp $ */
+/* $Id: mandoc.h,v 1.56 2011/02/06 22:02:58 kristaps Exp $ */
/*
* Copyright (c) 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -260,6 +260,7 @@ struct tbl_span {
struct tbl_row *layout; /* layout row */
struct tbl_dat *first;
struct tbl_dat *last;
+ int line; /* parse line */
int flags;
#define TBL_SPAN_FIRST (1 << 0)
#define TBL_SPAN_LAST (1 << 1)