[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.886 and 1.887

version 1.886, 2019/05/03 15:43:01 version 1.887, 2019/05/03 20:44:24
Line 522 
Line 522 
 #define MODE_FOCUSON 0x800  #define MODE_FOCUSON 0x800
 #define MODE_MOUSE_ALL 0x1000  #define MODE_MOUSE_ALL 0x1000
 #define MODE_ORIGIN 0x2000  #define MODE_ORIGIN 0x2000
   #define MODE_CRLF 0x4000
   
 #define ALL_MODES 0xffffff  #define ALL_MODES 0xffffff
 #define ALL_MOUSE_MODES (MODE_MOUSE_STANDARD|MODE_MOUSE_BUTTON|MODE_MOUSE_ALL)  #define ALL_MOUSE_MODES (MODE_MOUSE_STANDARD|MODE_MOUSE_BUTTON|MODE_MOUSE_ALL)
Line 802 
Line 803 
 #define PANE_EXITED 0x100  #define PANE_EXITED 0x100
 #define PANE_STATUSREADY 0x200  #define PANE_STATUSREADY 0x200
 #define PANE_STATUSDRAWN 0x400  #define PANE_STATUSDRAWN 0x400
   #define PANE_EMPTY 0x800
   
         int              argc;          int              argc;
         char           **argv;          char           **argv;
Line 1598 
Line 1600 
 #define SPAWN_BEFORE 0x8  #define SPAWN_BEFORE 0x8
 #define SPAWN_NONOTIFY 0x10  #define SPAWN_NONOTIFY 0x10
 #define SPAWN_FULLSIZE 0x20  #define SPAWN_FULLSIZE 0x20
   #define SPAWN_EMPTY 0x40
 };  };
   
 /* tmux.c */  /* tmux.c */
Line 2317 
Line 2320 
 void             window_remove_ref(struct window *, const char *);  void             window_remove_ref(struct window *, const char *);
 void             winlink_clear_flags(struct winlink *);  void             winlink_clear_flags(struct winlink *);
 int              winlink_shuffle_up(struct session *, struct winlink *);  int              winlink_shuffle_up(struct session *, struct winlink *);
   int              window_pane_start_input(struct window_pane *,
                        struct cmdq_item *, char **);
   
 /* layout.c */  /* layout.c */
 u_int            layout_count_cells(struct layout_cell *);  u_int            layout_count_cells(struct layout_cell *);

Legend:
Removed from v.1.886  
changed lines
  Added in v.1.887