1
0
mirror of https://github.com/tmux/tmux.git synced 2025-04-09 02:18:48 +00:00

Don't update last session when the session is unchanged, from Sina Siadat.

This commit is contained in:
nicm 2015-09-22 21:56:16 +00:00
parent d5f223a3fe
commit dc66795e35

View File

@ -124,7 +124,7 @@ cmd_switch_client_exec(struct cmd *self, struct cmd_q *cmdq)
environ_update(update, &c->environ, &s->environ);
}
if (c->session != NULL)
if (c->session != NULL && c->session != s)
c->last_session = c->session;
c->session = s;
status_timer_start(c);