=================================================================== RCS file: /cvs/mandoc/Attic/libroff.h,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -r1.8 -r1.9 --- mandoc/Attic/libroff.h 2010/12/30 09:34:06 1.8 +++ mandoc/Attic/libroff.h 2010/12/30 10:26:00 1.9 @@ -1,4 +1,4 @@ -/* $Id: libroff.h,v 1.8 2010/12/30 09:34:06 kristaps Exp $ */ +/* $Id: libroff.h,v 1.9 2010/12/30 10:26:00 kristaps Exp $ */ /* * Copyright (c) 2009, 2010 Kristaps Dzonsons * @@ -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;