From: arg@mig29 Date: Tue, 2 Jan 2007 13:40:18 +0000 (+0100) Subject: fixed cleanup, using clients instead of sel X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=commitdiff_plain;h=b5d297f02fb545c421468398cabca56c61bab36c fixed cleanup, using clients instead of sel --- diff --git a/main.c b/main.c index c42d1ff..5a22982 100644 --- 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);