aboutsummaryrefslogtreecommitdiffstats
path: root/calmwm.c
diff options
context:
space:
mode:
authorokan2014-09-08 20:11:22 +0000
committerokan2014-09-08 20:11:22 +0000
commit943a3f1272a3549265acbce2060801cb669396bc (patch)
tree3aed9fd559210c85c755f7fee645ebaae5b54cdd /calmwm.c
parent25980c356984d6152dc3703f57d4680bb21c1f04 (diff)
downloadcwm-943a3f1272a3549265acbce2060801cb669396bc.tar.gz
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.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/calmwm.c b/calmwm.c
index 99e7729..a74a0fb 100644
--- a/calmwm.c
+++ b/calmwm.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: calmwm.c,v 1.91 2014/09/07 19:27:30 okan Exp $
+ * $OpenBSD: calmwm.c,v 1.92 2014/09/08 20:11:22 okan Exp $
*/
#include <sys/param.h>
@@ -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;