[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.605 and 1.606

version 1.605, 2015/12/13 16:44:35 version 1.606, 2015/12/13 17:55:14
Line 1293 
Line 1293 
         char                    **argv;          char                    **argv;
 };  };
   
 /* Context for a command about to be executed. */  /* Command find structures. */
 struct cmd_state_flag {  enum cmd_find_type {
         struct session          *s;          CMD_FIND_PANE,
         struct winlink          *wl;          CMD_FIND_WINDOW,
         struct window_pane      *wp;          CMD_FIND_SESSION,
         int                      idx;  };
   struct cmd_find_state {
           struct cmd_q            *cmdq;
           int                      flags;
           struct cmd_find_state   *current;
   
           struct session          *s;
           struct winlink          *wl;
           struct window           *w;
           struct window_pane      *wp;
           int                      idx;
 };  };
   
   /* Command find flags. */
   #define CMD_FIND_PREFER_UNATTACHED 0x1
   #define CMD_FIND_QUIET 0x2
   #define CMD_FIND_WINDOW_INDEX 0x4
   #define CMD_FIND_DEFAULT_MARKED 0x8
   #define CMD_FIND_EXACT_SESSION 0x10
   #define CMD_FIND_EXACT_WINDOW 0x20
   
   /* Context for command being executed. */
 struct cmd_state {  struct cmd_state {
         struct client           *c;          struct client           *c;
         struct cmd_state_flag    tflag;          struct cmd_find_state    tflag;
         struct cmd_state_flag    sflag;          struct cmd_find_state    sflag;
 };  };
   
 /* Command and list of commands. */  /* Command and list of commands. */
Line 1406 
Line 1425 
     CMD_MOVEW_R|CMD_PANE_MARKED_T|CMD_WINDOW_MARKED_T)      CMD_MOVEW_R|CMD_PANE_MARKED_T|CMD_WINDOW_MARKED_T)
 #define CMD_ALL_S (CMD_SESSION_S|CMD_WINDOW_S|CMD_PANE_S|CMD_INDEX_S| \  #define CMD_ALL_S (CMD_SESSION_S|CMD_WINDOW_S|CMD_PANE_S|CMD_INDEX_S| \
     CMD_PANE_MARKED_S|CMD_WINDOW_MARKED_S)      CMD_PANE_MARKED_S|CMD_WINDOW_MARKED_S)
   
 /* Command find structures. */  
 enum cmd_find_type {  
         CMD_FIND_PANE,  
         CMD_FIND_WINDOW,  
         CMD_FIND_SESSION,  
 };  
 struct cmd_find_state {  
         struct cmd_q            *cmdq;  
         int                      flags;  
         struct cmd_find_state   *current;  
   
         struct session          *s;  
         struct winlink          *wl;  
         struct window           *w;  
         struct window_pane      *wp;  
         int                      idx;  
 };  
   
 /* Command fine flags. */  
 #define CMD_FIND_PREFER_UNATTACHED 0x1  
 #define CMD_FIND_QUIET 0x2  
 #define CMD_FIND_WINDOW_INDEX 0x4  
 #define CMD_FIND_DEFAULT_MARKED 0x8  
 #define CMD_FIND_EXACT_SESSION 0x10  
 #define CMD_FIND_EXACT_WINDOW 0x20  
   
 /* Key binding and key table. */  /* Key binding and key table. */
 struct key_binding {  struct key_binding {

Legend:
Removed from v.1.605  
changed lines
  Added in v.1.606