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

Diff for /mandoc/term.h between version 1.108 and 1.109

version 1.108, 2014/12/02 10:08:06 version 1.109, 2014/12/19 17:12:04
Line 84  struct termp {
Line 84  struct termp {
         enum termenc      enc;          /* Type of encoding. */          enum termenc      enc;          /* Type of encoding. */
         const struct mchars *symtab;    /* Character table. */          const struct mchars *symtab;    /* Character table. */
         enum termfont     fontl;        /* Last font set. */          enum termfont     fontl;        /* Last font set. */
         enum termfont     fontq[10];    /* Symmetric fonts. */          enum termfont    *fontq;        /* Symmetric fonts. */
           int               fontsz;       /* Allocated size of font stack */
         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 */
Line 127  size_t    term_vspan(const struct termp *,
Line 128  size_t    term_vspan(const struct termp *,
 size_t            term_strlen(const struct termp *, const char *);  size_t            term_strlen(const struct termp *, const char *);
 size_t            term_len(const struct termp *, size_t);  size_t            term_len(const struct termp *, size_t);
   
 enum termfont     term_fonttop(struct termp *);  const enum termfont *term_fontq(struct termp *);
 const void       *term_fontq(struct termp *);  
 void              term_fontpush(struct termp *, enum termfont);  void              term_fontpush(struct termp *, enum termfont);
 void              term_fontpop(struct termp *);  void              term_fontpop(struct termp *);
 void              term_fontpopq(struct termp *, const void *);  void              term_fontpopq(struct termp *, const enum termfont *);
 void              term_fontrepl(struct termp *, enum termfont);  void              term_fontrepl(struct termp *, enum termfont);
 void              term_fontlast(struct termp *);  void              term_fontlast(struct termp *);
   

Legend:
Removed from v.1.108  
changed lines
  Added in v.1.109

CVSweb