[BACK]Return to term.h CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/term.h between version 1.80 and 1.81

version 1.80, 2011/04/29 22:18:12 version 1.81, 2011/05/14 17:54:42
Line 103  struct termp {
Line 103  struct termp {
 #define TERMP_ANPREC     (1 << 13)      /* See termp_an_pre(). */  #define TERMP_ANPREC     (1 << 13)      /* See termp_an_pre(). */
 #define TERMP_KEEP       (1 << 14)      /* Keep words together. */  #define TERMP_KEEP       (1 << 14)      /* Keep words together. */
 #define TERMP_PREKEEP    (1 << 15)      /* ...starting with the next one. */  #define TERMP_PREKEEP    (1 << 15)      /* ...starting with the next one. */
         char             *buf;          /* Output buffer. */          int              *buf;          /* Output buffer. */
         enum termenc      enc;          /* Type of encoding. */          enum termenc      enc;          /* Type of encoding. */
         struct mchars    *symtab;       /* Encoded-symbol table. */          struct mchars    *symtab;       /* Encoded-symbol table. */
         enum termfont     fontl;        /* Last font set. */          enum termfont     fontl;        /* Last font set. */
Line 111  struct termp {
Line 111  struct termp {
         int               fonti;        /* Index of font stack. */          int               fonti;        /* Index of font stack. */
         term_margin       headf;        /* invoked to print head */          term_margin       headf;        /* invoked to print head */
         term_margin       footf;        /* invoked to print foot */          term_margin       footf;        /* invoked to print foot */
         void            (*letter)(struct termp *, char);          void            (*letter)(struct termp *, int);
         void            (*begin)(struct termp *);          void            (*begin)(struct termp *);
         void            (*end)(struct termp *);          void            (*end)(struct termp *);
         void            (*endline)(struct termp *);          void            (*endline)(struct termp *);
         void            (*advance)(struct termp *, size_t);          void            (*advance)(struct termp *, size_t);
         size_t          (*width)(const struct termp *, char);          size_t          (*width)(const struct termp *, int);
         double          (*hspan)(const struct termp *,          double          (*hspan)(const struct termp *,
                                 const struct roffsu *);                                  const struct roffsu *);
         const void       *argf;         /* arg for headf/footf */          const void       *argf;         /* arg for headf/footf */

Legend:
Removed from v.1.80  
changed lines
  Added in v.1.81

CVSweb