projects
/
suckless
/
dwm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4ee661d
)
removed the if(clients) check from popping code
author
Anselm R.Garbe
<arg@10ksloc.org>
Fri, 11 Aug 2006 06:34:42 +0000
(08:34 +0200)
committer
Anselm R.Garbe
<arg@10ksloc.org>
Fri, 11 Aug 2006 06:34:42 +0000
(08:34 +0200)
client.c
patch
|
blob
|
history
diff --git
a/client.c
b/client.c
index 8ec8ffb6836c8e69cd0877d68629a87b7b6a8be2..57ea617ab676624feed62305453fe323cfba9968 100644
(file)
--- a/
client.c
+++ b/
client.c
@@
-477,8
+477,7
@@
zoom(Arg *arg)
if(sel->next)
sel->next->prev = sel->prev;
sel->prev = NULL;
- if(clients)
- clients->prev = sel;
+ clients->prev = sel;
sel->next = clients;
clients = sel;
arrange(NULL);