dwm

my fork of dwm
Index Commits Files Refs README LICENSE
commit 895902b57adbfe26f982a3eb4e2ee8f3aa4dd408
parent 7d4184dc5c5381d638efb9f26fd8bd6d8a6fe372
Author: Anselm R.Garbe <arg@10ksloc.org>
Date:   Fri, 11 Aug 2006 10:05:53 +0200

applied Sander's patch as well

Diffstat:
Mclient.c | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git 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;