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

Diff for /src/usr.bin/tmux/tmux.h between version 1.286 and 1.287

version 1.286, 2011/05/18 20:24:29 version 1.287, 2011/05/20 19:03:58
Line 183 
Line 183 
         TTYC_BEL,       /* bell, bl */          TTYC_BEL,       /* bell, bl */
         TTYC_BLINK,     /* enter_blink_mode, mb */          TTYC_BLINK,     /* enter_blink_mode, mb */
         TTYC_BOLD,      /* enter_bold_mode, md */          TTYC_BOLD,      /* enter_bold_mode, md */
           TTYC_CC,        /* set colour cursor, Cc */
         TTYC_CIVIS,     /* cursor_invisible, vi */          TTYC_CIVIS,     /* cursor_invisible, vi */
         TTYC_CLEAR,     /* clear_screen, cl */          TTYC_CLEAR,     /* clear_screen, cl */
         TTYC_CNORM,     /* cursor_normal, ve */          TTYC_CNORM,     /* cursor_normal, ve */
         TTYC_COLORS,    /* max_colors, Co */          TTYC_COLORS,    /* max_colors, Co */
           TTYC_CR,        /* restore cursor colour, Cr */
         TTYC_CSR,       /* change_scroll_region, cs */          TTYC_CSR,       /* change_scroll_region, cs */
         TTYC_CUB,       /* parm_left_cursor, LE */          TTYC_CUB,       /* parm_left_cursor, LE */
         TTYC_CUB1,      /* cursor_left, le */          TTYC_CUB1,      /* cursor_left, le */
Line 714 
Line 716 
         u_int            cx;            /* cursor x */          u_int            cx;            /* cursor x */
         u_int            cy;            /* cursor y */          u_int            cy;            /* cursor y */
   
           char            *ccolour;       /* cursor colour string */
   
         u_int            rupper;        /* scroll region top */          u_int            rupper;        /* scroll region top */
         u_int            rlower;        /* scroll region bottom */          u_int            rlower;        /* scroll region bottom */
   
Line 1010 
Line 1014 
   
         u_int            cx;          u_int            cx;
         u_int            cy;          u_int            cy;
           char            *ccolour;
   
         int              mode;          int              mode;
   
Line 1414 
Line 1419 
 void    tty_putcode(struct tty *, enum tty_code_code);  void    tty_putcode(struct tty *, enum tty_code_code);
 void    tty_putcode1(struct tty *, enum tty_code_code, int);  void    tty_putcode1(struct tty *, enum tty_code_code, int);
 void    tty_putcode2(struct tty *, enum tty_code_code, int, int);  void    tty_putcode2(struct tty *, enum tty_code_code, int, int);
   void    tty_putcode_ptr1(struct tty *, enum tty_code_code, const void *);
 void    tty_putcode_ptr2(struct tty *, enum tty_code_code, const void *, const void *);  void    tty_putcode_ptr2(struct tty *, enum tty_code_code, const void *, const void *);
 void    tty_puts(struct tty *, const char *);  void    tty_puts(struct tty *, const char *);
 void    tty_putc(struct tty *, u_char);  void    tty_putc(struct tty *, u_char);
Line 1423 
Line 1429 
 void    tty_start_tty(struct tty *);  void    tty_start_tty(struct tty *);
 void    tty_stop_tty(struct tty *);  void    tty_stop_tty(struct tty *);
 void    tty_set_title(struct tty *, const char *);  void    tty_set_title(struct tty *, const char *);
 void    tty_update_mode(struct tty *, int);  void    tty_update_mode(struct tty *, int, struct screen *);
   void    tty_force_cursor_colour(struct tty *, const char *);
 void    tty_draw_line(struct tty *, struct screen *, u_int, u_int, u_int);  void    tty_draw_line(struct tty *, struct screen *, u_int, u_int, u_int);
 int     tty_open(struct tty *, const char *, char **);  int     tty_open(struct tty *, const char *, char **);
 void    tty_close(struct tty *);  void    tty_close(struct tty *);
Line 1459 
Line 1466 
 const char      *tty_term_string1(struct tty_term *, enum tty_code_code, int);  const char      *tty_term_string1(struct tty_term *, enum tty_code_code, int);
 const char      *tty_term_string2(  const char      *tty_term_string2(
                      struct tty_term *, enum tty_code_code, int, int);                       struct tty_term *, enum tty_code_code, int, int);
   const char      *tty_term_ptr1(
                        struct tty_term *, enum tty_code_code, const void *);
 const char      *tty_term_ptr2(  const char      *tty_term_ptr2(
                      struct tty_term *, enum tty_code_code, const void *, const void *);                       struct tty_term *, enum tty_code_code, const void *, const void *);
 int              tty_term_number(struct tty_term *, enum tty_code_code);  int              tty_term_number(struct tty_term *, enum tty_code_code);
Line 1841 
Line 1850 
 void     screen_reinit(struct screen *);  void     screen_reinit(struct screen *);
 void     screen_free(struct screen *);  void     screen_free(struct screen *);
 void     screen_reset_tabs(struct screen *);  void     screen_reset_tabs(struct screen *);
   void     screen_set_cursor_colour(struct screen *, const char *);
 void     screen_set_title(struct screen *, const char *);  void     screen_set_title(struct screen *, const char *);
 void     screen_resize(struct screen *, u_int, u_int);  void     screen_resize(struct screen *, u_int, u_int);
 void     screen_set_selection(struct screen *,  void     screen_set_selection(struct screen *,

Legend:
Removed from v.1.286  
changed lines
  Added in v.1.287