From: Anselm R.Garbe Date: Fri, 11 Aug 2006 06:34:42 +0000 (+0200) Subject: removed the if(clients) check from popping code X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=commitdiff_plain;h=735ca9ccd61c8e498b04fa6928a42afe24a6b361 removed the if(clients) check from popping code --- diff --git a/client.c b/client.c index 8ec8ffb..57ea617 100644 --- 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);