=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/key-bindings.c,v retrieving revision 1.89 retrieving revision 1.90 diff -c -r1.89 -r1.90 *** src/usr.bin/tmux/key-bindings.c 2019/04/29 06:55:21 1.89 --- src/usr.bin/tmux/key-bindings.c 2019/05/09 13:12:59 1.90 *************** *** 1,4 **** ! /* $OpenBSD: key-bindings.c,v 1.89 2019/04/29 06:55:21 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: key-bindings.c,v 1.90 2019/05/09 13:12:59 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 448,454 **** return (CMD_RETURN_ERROR); } ! void key_bindings_dispatch(struct key_binding *bd, struct cmdq_item *item, struct client *c, struct mouse_event *m, struct cmd_find_state *fs) { --- 448,454 ---- return (CMD_RETURN_ERROR); } ! struct cmdq_item * key_bindings_dispatch(struct key_binding *bd, struct cmdq_item *item, struct client *c, struct mouse_event *m, struct cmd_find_state *fs) { *************** *** 472,475 **** --- 472,476 ---- cmdq_insert_after(item, new_item); else cmdq_append(c, new_item); + return (new_item); }