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

Diff for /src/usr.bin/tmux/cmd-send-keys.c between version 1.57 and 1.58

version 1.57, 2020/04/13 13:42:35 version 1.58, 2020/04/13 14:04:25
Line 134 
Line 134 
 cmd_send_keys_exec(struct cmd *self, struct cmdq_item *item)  cmd_send_keys_exec(struct cmd *self, struct cmdq_item *item)
 {  {
         struct args                     *args = cmd_get_args(self);          struct args                     *args = cmd_get_args(self);
         struct cmdq_shared              *shared = cmdq_get_shared(item);          struct cmdq_state               *state = cmdq_get_state(item);
         struct cmd_find_state           *target = cmdq_get_target(item);          struct cmd_find_state           *target = cmdq_get_target(item);
         struct client                   *c = cmd_find_client(item, NULL, 1);          struct client                   *c = cmd_find_client(item, NULL, 1);
         struct window_pane              *wp = target->wp;          struct window_pane              *wp = target->wp;
         struct session                  *s = target->s;          struct session                  *s = target->s;
         struct winlink                  *wl = target->wl;          struct winlink                  *wl = target->wl;
         struct mouse_event              *m = &shared->event.m;          struct mouse_event              *m = &state->event.m;
         struct window_mode_entry        *wme = TAILQ_FIRST(&wp->modes);          struct window_mode_entry        *wme = TAILQ_FIRST(&wp->modes);
         int                              i;          int                              i;
         key_code                         key;          key_code                         key;

Legend:
Removed from v.1.57  
changed lines
  Added in v.1.58