summary refs log tree commit diff
diff options
context:
space:
mode:
authorokan <okan>2011-05-15 17:58:47 +0000
committerokan <okan>2011-05-15 17:58:47 +0000
commit64d8bb630afbe1d278a721d45c8e8d2c46d147f0 (patch)
tree53546c7e1eafe06c74de7cbe2c83619b3f3864ef
parentfa64bc2f32dd4635bd90712eb1a144c7ea593288 (diff)
downloadcwm-64d8bb630afbe1d278a721d45c8e8d2c46d147f0.tar.gz
cwm-64d8bb630afbe1d278a721d45c8e8d2c46d147f0.tar.xz
cwm-64d8bb630afbe1d278a721d45c8e8d2c46d147f0.zip
fix botched client and group cycle defines; noticed by Thomas Pfaff.
"no cookie! fix it" - oga@
-rw-r--r--calmwm.h8
1 files 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)