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

Diff for /mandoc/term.h between version 1.116 and 1.119

version 1.116, 2015/09/21 13:25:00 version 1.119, 2017/05/04 22:16:09
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2011-2015 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2011-2015, 2017 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 38  enum termfont {
Line 38  enum termfont {
   
 #define TERM_MAXMARGIN    100000 /* FIXME */  #define TERM_MAXMARGIN    100000 /* FIXME */
   
   struct  eqn;
 struct  roff_meta;  struct  roff_meta;
   struct  roff_node;
   struct  tbl_span;
 struct  termp;  struct  termp;
   
 typedef void    (*term_margin)(struct termp *, const struct roff_meta *);  typedef void    (*term_margin)(struct termp *, const struct roff_meta *);
Line 86  struct termp {
Line 89  struct termp {
 #define TERMP_NONEWLINE  (1 << 15)      /* No line break in nofill mode. */  #define TERMP_NONEWLINE  (1 << 15)      /* No line break in nofill mode. */
         int              *buf;          /* Output buffer. */          int              *buf;          /* Output buffer. */
         enum termenc      enc;          /* Type of encoding. */          enum termenc      enc;          /* Type of encoding. */
         const struct mchars *symtab;    /* Character table. */  
         enum termfont     fontl;        /* Last font set. */          enum termfont     fontl;        /* Last font set. */
         enum termfont    *fontq;        /* Symmetric fonts. */          enum termfont    *fontq;        /* Symmetric fonts. */
         int               fontsz;       /* Allocated size of font stack */          int               fontsz;       /* Allocated size of font stack */
Line 106  struct termp {
Line 108  struct termp {
         struct termp_ps  *ps;          struct termp_ps  *ps;
 };  };
   
 __BEGIN_DECLS  
   
 struct  tbl_span;  
 struct  eqn;  
   
 const char       *ascii_uc2str(int);  const char       *ascii_uc2str(int);
   
   void              roff_term_pre(struct termp *, const struct roff_node *);
   
 void              term_eqn(struct termp *, const struct eqn *);  void              term_eqn(struct termp *, const struct eqn *);
 void              term_tbl(struct termp *, const struct tbl_span *);  void              term_tbl(struct termp *, const struct tbl_span *);
 void              term_free(struct termp *);  void              term_free(struct termp *);
Line 135  void    term_fontpop(struct termp *);
Line 135  void    term_fontpop(struct termp *);
 void              term_fontpopq(struct termp *, int);  void              term_fontpopq(struct termp *, int);
 void              term_fontrepl(struct termp *, enum termfont);  void              term_fontrepl(struct termp *, enum termfont);
 void              term_fontlast(struct termp *);  void              term_fontlast(struct termp *);
   
 __END_DECLS  

Legend:
Removed from v.1.116  
changed lines
  Added in v.1.119

CVSweb