From 64d8bb630afbe1d278a721d45c8e8d2c46d147f0 Mon Sep 17 00:00:00 2001 From: okan Date: Sun, 15 May 2011 17:58:47 +0000 Subject: [PATCH] fix botched client and group cycle defines; noticed by Thomas Pfaff. "no cookie! fix it" - oga@ --- calmwm.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/calmwm.h b/calmwm.h index 23b34cc..11fce47 100644 --- a/calmwm.h +++ b/calmwm.h @@ -68,12 +68,12 @@ #define CWM_EXEC_WM 0x0002 /* client cycle */ -#define CWM_CYCLE 0x0001 -#define CWM_RCYCLE 0x0002 +#define CWM_CYCLE 0 +#define CWM_RCYCLE 1 /* group cycle */ -#define CWM_CYCLEGROUP 0x0001 -#define CWM_RCYCLEGROUP 0x0002 +#define CWM_CYCLEGROUP 0 +#define CWM_RCYCLEGROUP 1 #define KBTOGROUP(X) ((X) - 1)