[BACK]Return to cmd-unbind-key.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/cmd-unbind-key.c between version 1.21 and 1.22

version 1.21, 2015/04/20 15:34:56 version 1.22, 2015/11/12 11:05:34
Line 26 
Line 26 
  * Unbind key from command.   * Unbind key from command.
  */   */
   
 enum cmd_retval  cmd_unbind_key_exec(struct cmd *, struct cmd_q *);  enum cmd_retval cmd_unbind_key_exec(struct cmd *, struct cmd_q *);
 enum cmd_retval  cmd_unbind_key_mode_table(struct cmd *, struct cmd_q *, int);  enum cmd_retval cmd_unbind_key_mode_table(struct cmd *, struct cmd_q *,
                       key_code);
   
 const struct cmd_entry cmd_unbind_key_entry = {  const struct cmd_entry cmd_unbind_key_entry = {
         "unbind-key", "unbind",          "unbind-key", "unbind",
Line 41 
Line 42 
 cmd_unbind_key_exec(struct cmd *self, struct cmd_q *cmdq)  cmd_unbind_key_exec(struct cmd *self, struct cmd_q *cmdq)
 {  {
         struct args     *args = self->args;          struct args     *args = self->args;
         int              key;          key_code         key;
         const char      *tablename;          const char      *tablename;
   
         if (!args_has(args, 'a')) {          if (!args_has(args, 'a')) {
Line 95 
Line 96 
 }  }
   
 enum cmd_retval  enum cmd_retval
 cmd_unbind_key_mode_table(struct cmd *self, struct cmd_q *cmdq, int key)  cmd_unbind_key_mode_table(struct cmd *self, struct cmd_q *cmdq, key_code key)
 {  {
         struct args                     *args = self->args;          struct args                     *args = self->args;
         const char                      *tablename;          const char                      *tablename;

Legend:
Removed from v.1.21  
changed lines
  Added in v.1.22