[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.58 and 1.59

version 1.58, 2020/04/13 14:04:25 version 1.59, 2020/04/13 14:46:04
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_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 = &state->event.m;          struct key_event                *event = cmdq_get_event(item);
           struct mouse_event              *m = &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.58  
changed lines
  Added in v.1.59