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

Diff for /src/usr.bin/tmux/key-bindings.c between version 1.89 and 1.90

version 1.89, 2019/04/29 06:55:21 version 1.90, 2019/05/09 13:12:59
Line 448 
Line 448 
         return (CMD_RETURN_ERROR);          return (CMD_RETURN_ERROR);
 }  }
   
 void  struct cmdq_item *
 key_bindings_dispatch(struct key_binding *bd, struct cmdq_item *item,  key_bindings_dispatch(struct key_binding *bd, struct cmdq_item *item,
     struct client *c, struct mouse_event *m, struct cmd_find_state *fs)      struct client *c, struct mouse_event *m, struct cmd_find_state *fs)
 {  {
Line 472 
Line 472 
                 cmdq_insert_after(item, new_item);                  cmdq_insert_after(item, new_item);
         else          else
                 cmdq_append(c, new_item);                  cmdq_append(c, new_item);
           return (new_item);
 }  }

Legend:
Removed from v.1.89  
changed lines
  Added in v.1.90