=================================================================== RCS file: /cvs/mandoc/mandoc.h,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- mandoc/mandoc.h 2011/01/02 10:10:57 1.43 +++ mandoc/mandoc.h 2011/01/02 12:04:23 1.44 @@ -1,4 +1,4 @@ -/* $Id: mandoc.h,v 1.43 2011/01/02 10:10:57 kristaps Exp $ */ +/* $Id: mandoc.h,v 1.44 2011/01/02 12:04:23 kristaps Exp $ */ /* * Copyright (c) 2010 Kristaps Dzonsons * @@ -250,9 +250,14 @@ enum tbl_spant { * A row of data in a table. */ struct tbl_span { + struct tbl *tbl; + struct tbl_head *head; struct tbl_row *layout; /* layout row: CAN BE NULL */ struct tbl_dat *first; struct tbl_dat *last; + int flags; +#define TBL_SPAN_FIRST (1 << 0) +#define TBL_SPAN_LAST (1 << 1) enum tbl_spant pos; struct tbl_span *next; };