=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.887 retrieving revision 1.888 diff -c -r1.887 -r1.888 *** src/usr.bin/tmux/tmux.h 2019/05/03 20:44:24 1.887 --- src/usr.bin/tmux/tmux.h 2019/05/07 10:25:15 1.888 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.887 2019/05/03 20:44:24 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.888 2019/05/07 10:25:15 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 1699,1705 **** /* notify.c */ void notify_hook(struct cmdq_item *, const char *); ! void notify_input(struct window_pane *, struct evbuffer *); void notify_client(const char *, struct client *); void notify_session(const char *, struct session *); void notify_winlink(const char *, struct winlink *); --- 1699,1705 ---- /* notify.c */ void notify_hook(struct cmdq_item *, const char *); ! void notify_input(struct window_pane *, const u_char *, size_t); void notify_client(const char *, struct client *); void notify_session(const char *, struct session *); void notify_winlink(const char *, struct winlink *); *************** *** 2087,2092 **** --- 2087,2093 ---- void input_reset(struct window_pane *, int); struct evbuffer *input_pending(struct window_pane *); void input_parse(struct window_pane *); + void input_parse_buffer(struct window_pane *, u_char *, size_t); /* input-key.c */ void input_key(struct window_pane *, key_code, struct mouse_event *); *************** *** 2428,2434 **** /* control-notify.c */ void control_notify_input(struct client *, struct window_pane *, ! struct evbuffer *); void control_notify_pane_mode_changed(int); void control_notify_window_layout_changed(struct window *); void control_notify_window_pane_changed(struct window *); --- 2429,2435 ---- /* control-notify.c */ void control_notify_input(struct client *, struct window_pane *, ! const u_char *, size_t); void control_notify_pane_mode_changed(int); void control_notify_window_layout_changed(struct window *); void control_notify_window_pane_changed(struct window *);