From: Anselm R.Garbe Date: Fri, 11 Aug 2006 08:05:53 +0000 (+0200) Subject: applied Sander's patch as well X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=commitdiff_plain;h=895902b57adbfe26f982a3eb4e2ee8f3aa4dd408 applied Sander's patch as well --- diff --git a/client.c b/client.c index 8004272..9710989 100644 --- a/client.c +++ b/client.c @@ -467,8 +467,7 @@ zoom(Arg *arg) } /* pop */ - if(sel->prev) - sel->prev->next = sel->next; + sel->prev->next = sel->next; if(sel->next) sel->next->prev = sel->prev; sel->prev = NULL;