[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.643 and 1.644

version 1.643, 2016/09/04 17:37:06 version 1.644, 2016/09/12 15:40:58
Line 566 
Line 566 
 /* Binding between a key and a command. */  /* Binding between a key and a command. */
 struct mode_key_binding {  struct mode_key_binding {
         key_code                         key;          key_code                         key;
           u_int                            repeat;
   
         int                              mode;          int                              mode;
         enum mode_key_cmd                cmd;          enum mode_key_cmd                cmd;
Line 1633 
Line 1634 
 void    mode_key_init_trees(void);  void    mode_key_init_trees(void);
 void    mode_key_init(struct mode_key_data *, struct mode_key_tree *);  void    mode_key_init(struct mode_key_data *, struct mode_key_tree *);
 enum mode_key_cmd mode_key_lookup(struct mode_key_data *, key_code,  enum mode_key_cmd mode_key_lookup(struct mode_key_data *, key_code,
             const char **);              const char **, u_int *);
   
 /* notify.c */  /* notify.c */
 void    notify_enable(void);  void    notify_enable(void);

Legend:
Removed from v.1.643  
changed lines
  Added in v.1.644