The check for a minimal new lastsel is not needed anymore. - tabbed - tab inter… | |
git clone git://git.suckless.org/tabbed | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 4ed0a2da67f742cfb75f85fc02f703e21a0206d6 | |
parent 4b2dfb110f4c2698ab27ea6ad2f6f2e914631b9f | |
Author: Christoph Lohmann <[email protected]> | |
Date: Sun, 26 Jan 2014 18:52:53 +0100 | |
The check for a minimal new lastsel is not needed anymore. | |
Diffstat: | |
M tabbed.c | 1 - | |
1 file changed, 0 insertions(+), 1 deletion(-) | |
--- | |
diff --git a/tabbed.c b/tabbed.c | |
@@ -1094,7 +1094,6 @@ unmanage(int c) { | |
} else if(lastsel > c) { | |
lastsel--; | |
} | |
- lastsel = MIN(lastsel, nclients - 1); | |
if(c == sel) { | |
/* Note that focus() will never set lastsel == sel, |