fixed cleanup, using clients instead of sel - dwm - dynamic window manager HTML git clone https://git.parazyd.org/dwm DIR Log DIR Files DIR Refs DIR README DIR LICENSE --- DIR commit b5d297f02fb545c421468398cabca56c61bab36c DIR parent 9056d7ea8828822868614eab925c69cd17ba8b37 HTML Author: arg@mig29 <unknown> Date: Tue, 2 Jan 2007 14:40:18 +0100 fixed cleanup, using clients instead of sel Diffstat: M main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- DIR 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);