=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.851 retrieving revision 1.852 diff -u -r1.851 -r1.852 --- src/usr.bin/tmux/tmux.h 2018/11/22 10:36:40 1.851 +++ src/usr.bin/tmux/tmux.h 2018/12/18 13:20:44 1.852 @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.851 2018/11/22 10:36:40 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.852 2018/12/18 13:20:44 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -52,6 +52,7 @@ struct session; struct tmuxpeer; struct tmuxproc; +struct winlink; /* Client-server protocol version. */ #define PROTOCOL_VERSION 8 @@ -699,11 +700,12 @@ void (*free)(struct window_pane *); void (*resize)(struct window_pane *, u_int, u_int); void (*key)(struct window_pane *, struct client *, - struct session *, key_code, struct mouse_event *); + struct session *, struct winlink *, key_code, + struct mouse_event *); const char *(*key_table)(struct window_pane *); void (*command)(struct window_pane *, struct client *, - struct session *, struct args *, + struct session *, struct winlink *, struct args *, struct mouse_event *); }; #define WINDOW_MODE_TIMEOUT 180 @@ -2193,7 +2195,8 @@ struct args *); void window_pane_reset_mode(struct window_pane *); void window_pane_key(struct window_pane *, struct client *, - struct session *, key_code, struct mouse_event *); + struct session *, struct winlink *, key_code, + struct mouse_event *); int window_pane_visible(struct window_pane *); u_int window_pane_search(struct window_pane *, const char *); const char *window_printable_flags(struct winlink *);