summary refs log tree commit diff
path: root/calmwm.c
diff options
context:
space:
mode:
authorokan <okan>2014-09-08 20:11:22 +0000
committerokan <okan>2014-09-08 20:11:22 +0000
commit26ba1526929931660ac22757ac752f15d5b64fb2 (patch)
tree266554c068c841d567db0a0bbf67eda539ad606f /calmwm.c
parenta7f3f29ea91dc06ad326d22a161f046aab03697e (diff)
downloadcwm-26ba1526929931660ac22757ac752f15d5b64fb2.tar.gz
cwm-26ba1526929931660ac22757ac752f15d5b64fb2.tar.xz
cwm-26ba1526929931660ac22757ac752f15d5b64fb2.zip
Remove duplicate client queue (mruq); instead, remove and take the
global Clientq and place it inside screen_ctx since every client belongs
to a screen, then use the same per screen clientq to track stacking
order (the sole reason for mruq).
Diffstat (limited to 'calmwm.c')
-rw-r--r--calmwm.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/calmwm.c b/calmwm.c
index 06029a2..f85c4c2 100644
--- a/calmwm.c
+++ b/calmwm.c
@@ -41,7 +41,6 @@ Atom				 cwmh[CWMH_NITEMS];
 Atom				 ewmh[EWMH_NITEMS];
 
 struct screen_ctx_q		 Screenq = TAILQ_HEAD_INITIALIZER(Screenq);
-struct client_ctx_q		 Clientq = TAILQ_HEAD_INITIALIZER(Clientq);
 
 int				 HasRandr, Randr_ev;
 struct conf			 Conf;