=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/server-client.c,v retrieving revision 1.221 retrieving revision 1.222 diff -c -r1.221 -r1.222 *** src/usr.bin/tmux/server-client.c 2017/04/20 15:16:20 1.221 --- src/usr.bin/tmux/server-client.c 2017/04/21 14:01:19 1.222 *************** *** 1,4 **** ! /* $OpenBSD: server-client.c,v 1.221 2017/04/20 15:16:20 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: server-client.c,v 1.222 2017/04/21 14:01:19 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott *************** *** 908,914 **** * non-repeating binding was found, stop repeating and try * again in the root table. */ ! if ((c->flags & CLIENT_REPEAT) && !bd->can_repeat) { server_client_set_key_table(c, NULL); c->flags &= ~CLIENT_REPEAT; server_status_client(c); --- 908,915 ---- * non-repeating binding was found, stop repeating and try * again in the root table. */ ! if ((c->flags & CLIENT_REPEAT) && ! (~bd->flags & KEY_BINDING_REPEAT)) { server_client_set_key_table(c, NULL); c->flags &= ~CLIENT_REPEAT; server_status_client(c); *************** *** 926,932 **** * the client back to the root table. */ xtimeout = options_get_number(s->options, "repeat-time"); ! if (xtimeout != 0 && bd->can_repeat) { c->flags |= CLIENT_REPEAT; tv.tv_sec = xtimeout / 1000; --- 927,933 ---- * the client back to the root table. */ xtimeout = options_get_number(s->options, "repeat-time"); ! if (xtimeout != 0 && (bd->flags & KEY_BINDING_REPEAT)) { c->flags |= CLIENT_REPEAT; tv.tv_sec = xtimeout / 1000;