=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/term.h,v retrieving revision 1.9 retrieving revision 1.10 diff -c -r1.9 -r1.10 *** src/usr.bin/mandoc/term.h 2009/08/22 18:10:02 1.9 --- src/usr.bin/mandoc/term.h 2009/09/21 20:28:43 1.10 *************** *** 1,4 **** ! /* $Id: term.h,v 1.9 2009/08/22 18:10:02 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * --- 1,4 ---- ! /* $Id: term.h,v 1.10 2009/09/21 20:28:43 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * *************** *** 32,40 **** size_t offset; /* Margin offest. */ size_t col; /* Bytes in buf. */ int flags; - #define TERMP_STYLE 0x3 /* Style mask. */ - #define TERMP_BOLD (1 << 0) /* Styles... */ - #define TERMP_UNDER (1 << 1) #define TERMP_NOSPACE (1 << 2) /* No space before words. */ #define TERMP_NOLPAD (1 << 3) /* See term_flushln(). */ #define TERMP_NOBREAK (1 << 4) /* See term_flushln(). */ --- 32,37 ---- *************** *** 46,51 **** --- 43,50 ---- #define TERMP_NOSPLIT (1 << 11) /* See termp_an_pre/post(). */ #define TERMP_SPLIT (1 << 12) /* See termp_an_pre/post(). */ #define TERMP_ANPREC (1 << 13) /* See termp_an_pre(). */ + int bold; + int under; char *buf; /* Output buffer. */ enum termenc enc; /* Type of encoding. */ void *symtab; /* Encoded-symbol table. */