diff options
| author | 2017-01-28 16:11:27 +0000 | |
|---|---|---|
| committer | 2017-01-28 16:11:27 +0000 | |
| commit | 07b679ecd3d03d9d67d14405c469bceb90345fe8 (patch) | |
| tree | 59539718980b1fb3ff89fc1b6e364c26574bbc88 /usr.bin/tmux/cmd-attach-session.c | |
| parent | Make mira cope with out-of-range single frame error rate (SFER) values. (diff) | |
| download | wireguard-openbsd-07b679ecd3d03d9d67d14405c469bceb90345fe8.tar.xz wireguard-openbsd-07b679ecd3d03d9d67d14405c469bceb90345fe8.zip | |
Do not clear the key table when changing session on a client, so that
switch-client and friends work with bind -n.
Diffstat (limited to 'usr.bin/tmux/cmd-attach-session.c')
| -rw-r--r-- | usr.bin/tmux/cmd-attach-session.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-attach-session.c b/usr.bin/tmux/cmd-attach-session.c index bfa46113402..d87e4470849 100644 --- a/usr.bin/tmux/cmd-attach-session.c +++ b/usr.bin/tmux/cmd-attach-session.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-attach-session.c,v 1.66 2017/01/24 20:15:32 nicm Exp $ */ +/* $OpenBSD: cmd-attach-session.c,v 1.67 2017/01/28 16:11:27 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -98,7 +98,6 @@ cmd_attach_session(struct cmdq_item *item, int dflag, int rflag, environ_update(s->options, c->environ, s->environ); c->session = s; - server_client_set_key_table(c, NULL); status_timer_start(c); notify_client("client-session-changed", c); session_update_activity(s, NULL); |
