=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/window.c,v retrieving revision 1.215 retrieving revision 1.216 diff -c -r1.215 -r1.216 *** src/usr.bin/tmux/window.c 2018/11/30 08:44:40 1.215 --- src/usr.bin/tmux/window.c 2018/12/18 13:20:44 1.216 *************** *** 1,4 **** ! /* $OpenBSD: window.c,v 1.215 2018/11/30 08:44:40 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: window.c,v 1.216 2018/12/18 13:20:44 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 1258,1264 **** void window_pane_key(struct window_pane *wp, struct client *c, struct session *s, ! key_code key, struct mouse_event *m) { struct window_pane *wp2; --- 1258,1264 ---- void window_pane_key(struct window_pane *wp, struct client *c, struct session *s, ! struct winlink *wl, key_code key, struct mouse_event *m) { struct window_pane *wp2; *************** *** 1268,1274 **** if (wp->mode != NULL) { wp->modelast = time(NULL); if (wp->mode->key != NULL) ! wp->mode->key(wp, c, s, (key & ~KEYC_XTERM), m); return; } --- 1268,1274 ---- if (wp->mode != NULL) { wp->modelast = time(NULL); if (wp->mode->key != NULL) ! wp->mode->key(wp, c, s, wl, (key & ~KEYC_XTERM), m); return; }