Introduction
Introduction Statistics Contact Development Disclaimer Help
tsimplified unmanage - dwm - [fork] customized build of dwm, the dynamic window…
git clone git://src.adamsgaard.dk/dwm
Log
Files
Refs
README
LICENSE
---
commit d3969634ac3b2e145402295e9833ce149f87fe45
parent 735ca9ccd61c8e498b04fa6928a42afe24a6b361
Author: Anselm R.Garbe <[email protected]>
Date: Fri, 11 Aug 2006 08:47:55 +0200
simplified unmanage
Diffstat:
M client.c | 9 ++-------
1 file changed, 2 insertions(+), 7 deletions(-)
---
diff --git a/client.c b/client.c
t@@ -438,13 +438,8 @@ unmanage(Client *c)
c->next->prev = c->prev;
if(c == clients)
clients = c->next;
- if(sel == c) {
- sel = getnext(c->next);
- if(!sel)
- sel = getprev(c->prev);
- if(!sel)
- sel = clients;
- }
+ if(sel == c)
+ sel = getnext(clients);
free(c->tags);
free(c);
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.