dwm

my fork of dwm
Index Commits Files Refs README LICENSE
commit b5d297f02fb545c421468398cabca56c61bab36c
parent 9056d7ea8828822868614eab925c69cd17ba8b37
Author: arg@mig29 <unknown>
Date:   Tue,  2 Jan 2007 14:40:18 +0100

fixed cleanup, using clients instead of sel
Diffstat:
Mmain.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/main.c b/main.c
@@ -40,9 +40,9 @@ static Bool otherwm, readin;
 static void
 cleanup(void) {
     close(STDIN_FILENO);
-    while(sel) {
-        resize(sel, True, TopLeft);
-        unmanage(sel);
+    while(clients) {
+        resize(clients, True, TopLeft);
+        unmanage(clients);
     }
     if(dc.font.set)
         XFreeFontSet(dpy, dc.font.set);