[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.1152 and 1.1153

version 1.1152, 2021/10/28 18:54:33 version 1.1153, 2021/11/01 09:34:49
Line 779 
Line 779 
         u_int                            cy;      /* cursor y */          u_int                            cy;      /* cursor y */
   
         enum screen_cursor_style         cstyle;  /* cursor style */          enum screen_cursor_style         cstyle;  /* cursor style */
         char                            *ccolour; /* cursor colour */          int                              ccolour; /* cursor colour */
           int                              default_ccolour;
   
         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 1276 
Line 1277 
         u_int            cx;          u_int            cx;
         u_int            cy;          u_int            cy;
         enum screen_cursor_style cstyle;          enum screen_cursor_style cstyle;
         char            *ccolour;          int              ccolour;
   
         int              oflag;          int              oflag;
         u_int            oox;          u_int            oox;
Line 2793 
Line 2794 
 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_style(struct screen *, u_int);  void     screen_set_cursor_style(struct screen *, u_int);
 void     screen_set_cursor_colour(struct screen *, const char *);  void     screen_set_cursor_colour(struct screen *, int);
 int      screen_set_title(struct screen *, const char *);  int      screen_set_title(struct screen *, const char *);
 void     screen_set_path(struct screen *, const char *);  void     screen_set_path(struct screen *, const char *);
 void     screen_push_title(struct screen *);  void     screen_push_title(struct screen *);

Legend:
Removed from v.1.1152  
changed lines
  Added in v.1.1153