=================================================================== RCS file: /cvs/mandoc/term.h,v retrieving revision 1.77 retrieving revision 1.78 diff -u -p -r1.77 -r1.78 --- mandoc/term.h 2011/01/02 12:21:07 1.77 +++ mandoc/term.h 2011/01/03 13:59:21 1.78 @@ -1,4 +1,4 @@ -/* $Id: term.h,v 1.77 2011/01/02 12:21:07 kristaps Exp $ */ +/* $Id: term.h,v 1.78 2011/01/03 13:59:21 kristaps Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons * @@ -71,9 +71,15 @@ struct termp_ps { size_t pdfobjsz; /* size of pdfobjs */ }; +struct termp_tbl { + int width; /* width in fixed chars */ + int decimal; /* decimal point position */ +}; + struct termp { enum termtype type; - size_t defrmargin; /* Right margin of the device.. */ + struct termp_tbl *tbl; /* table configuration */ + size_t defrmargin; /* Right margin of the device. */ size_t rmargin; /* Current right margin. */ size_t maxrmargin; /* Max right margin. */ size_t maxcols; /* Max size of buf. */