summary refs log tree commit diff
path: root/calmwm.c
diff options
context:
space:
mode:
authorokan <okan>2013-04-12 14:46:30 +0000
committerokan <okan>2013-04-12 14:46:30 +0000
commit6296efadaa6bcc09068030bec4cb01904ca1a010 (patch)
tree45ea8b0efcb09a022ef8c6e1097334c6da1e48ad /calmwm.c
parent90f95416c6f4461625dd37d5cc44dd92a067a030 (diff)
downloadcwm-6296efadaa6bcc09068030bec4cb01904ca1a010.tar.gz
cwm-6296efadaa6bcc09068030bec4cb01904ca1a010.tar.xz
cwm-6296efadaa6bcc09068030bec4cb01904ca1a010.zip
push Screenq into screen_init
Diffstat (limited to 'calmwm.c')
-rw-r--r--calmwm.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/calmwm.c b/calmwm.c
index 25ac559..d2aecf9 100644
--- a/calmwm.c
+++ b/calmwm.c
@@ -146,7 +146,6 @@ dpy_init(const char *dpyname)
 static void
 x_setup(void)
 {
-	struct screen_ctx	*sc;
 	struct keybinding	*kb;
 	int			 i;
 
@@ -156,11 +155,8 @@ x_setup(void)
 	Cursor_question = XCreateFontCursor(X_Dpy, XC_question_arrow);
 	Cursor_resize = XCreateFontCursor(X_Dpy, XC_bottom_right_corner);
 
-	for (i = 0; i < ScreenCount(X_Dpy); i++) {
-		sc = xcalloc(1, sizeof(*sc));
-		screen_init(sc, i);
-		TAILQ_INSERT_TAIL(&Screenq, sc, entry);
-	}
+	for (i = 0; i < ScreenCount(X_Dpy); i++)
+		screen_init(i);
 
 	/*
 	 * XXX key grabs weren't done before, since Screenq was empty,