=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/status.c,v retrieving revision 1.106 retrieving revision 1.107 diff -c -r1.106 -r1.107 *** src/usr.bin/tmux/status.c 2013/07/05 14:41:36 1.106 --- src/usr.bin/tmux/status.c 2013/07/05 14:44:06 1.107 *************** *** 1,4 **** ! /* $OpenBSD: status.c,v 1.106 2013/07/05 14:41:36 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: status.c,v 1.107 2013/07/05 14:44:06 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 142,151 **** x += c->wlmouse; RB_FOREACH(wl, winlinks, &s->windows) { ! if (x < wl->status_width && ! session_select(s, wl->idx) == 0) { server_redraw_session(s); - } x -= wl->status_width + 1; } } --- 142,149 ---- x += c->wlmouse; RB_FOREACH(wl, winlinks, &s->windows) { ! if (x < wl->status_width && session_select(s, wl->idx) == 0) server_redraw_session(s); x -= wl->status_width + 1; } }