about summary refs log tree commit diff stats
path: root/main.c
diff options
context:
space:
mode:
authorarg@mig29 <unknown>2007-01-02 16:25:01 +0100
committerarg@mig29 <unknown>2007-01-02 16:25:01 +0100
commit6a9300e8158ec0c35d92f09e886c653758408948 (patch)
tree9cbe396726db5878ed1cd238c3638ff0253f9ebb /main.c
parentac24f132dba7e59d9d9ff98d984f5e0b0d20fd09 (diff)
downloaddwm-6a9300e8158ec0c35d92f09e886c653758408948.tar.gz
changed arg's color scheme
Diffstat (limited to 'main.c')
-rw-r--r--main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.c b/main.c
index c3526aa..47749fe 100644
--- a/main.c
+++ b/main.c
@@ -40,9 +40,9 @@ static Bool otherwm, readin;
 static void
 cleanup(void) {
 	close(STDIN_FILENO);
-	while(clients) {
-		resize(clients, True, TopLeft);
-		unmanage(clients);
+	while(stack) {
+		resize(stack, True, TopLeft);
+		unmanage(stack);
 	}
 	if(dc.font.set)
 		XFreeFontSet(dpy, dc.font.set);
'>140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180