=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/key-bindings.c,v retrieving revision 1.89 retrieving revision 1.90 diff -u -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 +1,4 @@ -/* $OpenBSD: key-bindings.c,v 1.89 2019/04/29 06:55:21 nicm Exp $ */ +/* $OpenBSD: key-bindings.c,v 1.90 2019/05/09 13:12:59 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -448,7 +448,7 @@ return (CMD_RETURN_ERROR); } -void +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,4 +472,5 @@ cmdq_insert_after(item, new_item); else cmdq_append(c, new_item); + return (new_item); }