[BACK]Return to term.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/term.h between version 1.23 and 1.24

version 1.23, 2010/06/27 01:24:02 version 1.24, 2010/06/29 14:41:28
Line 33 
Line 33 
 enum    termfont {  enum    termfont {
         TERMFONT_NONE = 0,          TERMFONT_NONE = 0,
         TERMFONT_BOLD,          TERMFONT_BOLD,
         TERMFONT_UNDER          TERMFONT_UNDER,
           TERMFONT__MAX
 };  };
   
 #define TERM_MAXMARGIN    100000 /* FIXME */  #define TERM_MAXMARGIN    100000 /* FIXME */
Line 44 
Line 45 
         int               psstate;      /* state of ps output */          int               psstate;      /* state of ps output */
 #define PS_INLINE        (1 << 0)       /* we're in a word */  #define PS_INLINE        (1 << 0)       /* we're in a word */
 #define PS_MARGINS       (1 << 1)       /* we're in the margins */  #define PS_MARGINS       (1 << 1)       /* we're in the margins */
         size_t            pscol;        /* visible column */          size_t            pscol;        /* visible column (points) */
         size_t            psrow;        /* visible row */          size_t            psrow;        /* visible row (points) */
         char             *psmarg;       /* margin buf */          char             *psmarg;       /* margin buf */
         size_t            psmargsz;     /* margin buf size */          size_t            psmargsz;     /* margin buf size */
         size_t            psmargcur;    /* current pos in margin buf */          size_t            psmargcur;    /* cur index in margin buf */
         size_t            pspage;       /* current page */  
         char              last;         /* character buffer */          char              last;         /* character buffer */
         enum termfont     lastf;        /* last set font */          enum termfont     lastf;        /* last set font */
           size_t            pages;        /* number of pages shown */
           size_t            lineheight;   /* each line's height (points) */
           size_t            top;          /* body top (points) */
           size_t            bottom;       /* body bottom (points) */
           size_t            height;       /* total height (points) */
           size_t            width;        /* total width (points) */
           size_t            left;         /* body left (points) */
           size_t            header;       /* header position (points) */
           size_t            footer;       /* footer position (points) */
 };  };
   
 struct  termp {  struct  termp {

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24