=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/cmd-set-option.c,v retrieving revision 1.88 retrieving revision 1.89 diff -u -r1.88 -r1.89 --- src/usr.bin/tmux/cmd-set-option.c 2015/12/12 18:19:00 1.88 +++ src/usr.bin/tmux/cmd-set-option.c 2015/12/12 18:32:24 1.89 @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-set-option.c,v 1.88 2015/12/12 18:19:00 nicm Exp $ */ +/* $OpenBSD: cmd-set-option.c,v 1.89 2015/12/12 18:32:24 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -182,6 +182,10 @@ if (options_get_number(w->options, "automatic-rename")) w->active->flags |= PANE_CHANGED; } + } + if (strcmp(oe->name, "key-table") == 0) { + TAILQ_FOREACH(c, &clients, entry) + server_client_set_key_table(c, NULL); } if (strcmp(oe->name, "status") == 0 || strcmp(oe->name, "status-interval") == 0)