[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.927 and 1.928

version 1.927, 2019/09/15 21:42:57 version 1.928, 2019/09/19 09:02:30
Line 905 
Line 905 
 /* Window structure. */  /* Window structure. */
 struct window {  struct window {
         u_int            id;          u_int            id;
           void            *latest;
   
         char            *name;          char            *name;
         struct event     name_event;          struct event     name_event;
Line 970 
Line 971 
 #define WINDOW_SIZE_LARGEST 0  #define WINDOW_SIZE_LARGEST 0
 #define WINDOW_SIZE_SMALLEST 1  #define WINDOW_SIZE_SMALLEST 1
 #define WINDOW_SIZE_MANUAL 2  #define WINDOW_SIZE_MANUAL 2
   #define WINDOW_SIZE_LATEST 3
   
 /* Pane border status option. */  /* Pane border status option. */
 #define PANE_STATUS_OFF 0  #define PANE_STATUS_OFF 0
Line 1670 
Line 1672 
   
         struct session           *s;          struct session           *s;
         struct winlink           *wl;          struct winlink           *wl;
           struct client            *c;
   
         struct window_pane       *wp0;          struct window_pane       *wp0;
         struct layout_cell       *lc;          struct layout_cell       *lc;
Line 2195 
Line 2198 
 void     resize_window(struct window *, u_int, u_int);  void     resize_window(struct window *, u_int, u_int);
 void     default_window_size(struct session *, struct window *, u_int *,  void     default_window_size(struct session *, struct window *, u_int *,
              u_int *, int);               u_int *, int);
   void     recalculate_size(struct window *);
 void     recalculate_sizes(void);  void     recalculate_sizes(void);
   
 /* input.c */  /* input.c */

Legend:
Removed from v.1.927  
changed lines
  Added in v.1.928