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

Diff for /src/usr.bin/tmux/window.c between version 1.215 and 1.216

version 1.215, 2018/11/30 08:44:40 version 1.216, 2018/12/18 13:20:44
Line 1258 
Line 1258 
   
 void  void
 window_pane_key(struct window_pane *wp, struct client *c, struct session *s,  window_pane_key(struct window_pane *wp, struct client *c, struct session *s,
     key_code key, struct mouse_event *m)      struct winlink *wl, key_code key, struct mouse_event *m)
 {  {
         struct window_pane      *wp2;          struct window_pane      *wp2;
   
Line 1268 
Line 1268 
         if (wp->mode != NULL) {          if (wp->mode != NULL) {
                 wp->modelast = time(NULL);                  wp->modelast = time(NULL);
                 if (wp->mode->key != NULL)                  if (wp->mode->key != NULL)
                         wp->mode->key(wp, c, s, (key & ~KEYC_XTERM), m);                          wp->mode->key(wp, c, s, wl, (key & ~KEYC_XTERM), m);
                 return;                  return;
         }          }
   

Legend:
Removed from v.1.215  
changed lines
  Added in v.1.216