simplified detach()

This commit is contained in:
Anselm R Garbe 2008-07-03 10:58:35 +01:00
parent 45768ee04b
commit f529d41ca1
1 changed files with 3 additions and 9 deletions

12
dwm.c
View File

@ -459,16 +459,10 @@ destroynotify(XEvent *e) {
void
detach(Client *c) {
Client *i;
Client **tc;
if (c != clients) {
for(i = clients; i->next != c; i = i->next);
i->next = c->next;
}
else {
clients = c->next;
}
c->next = NULL;
for(tc = &clients; *tc && *tc != c; tc = &(*tc)->next);
*tc = c->next;
}
void