A tiny oops done by someone cleaning up calmwm.h making cyclegroup and
rcyclegroup behave the same.  The defines below are used as an argument
to group_cycle as a boolean to decide if the groups should be cycled
forward or backward, but now both values are true so it's always done
in reverse.

Index: calmwm.h
===================================================================
RCS file: /cvs/xenocara/app/cwm/calmwm.h,v
retrieving revision 1.125
diff -u -p -r1.125 calmwm.h
--- calmwm.h    11 May 2011 13:53:51 -0000      1.125
+++ calmwm.h    15 May 2011 16:26:23 -0000
@@ -72,8 +72,8 @@
 #define CWM_RCYCLE             0x0002
 
 /* group cycle */
-#define CWM_CYCLEGROUP         0x0001
-#define CWM_RCYCLEGROUP                0x0002
+#define CWM_CYCLEGROUP         0x0000
+#define CWM_RCYCLEGROUP                0x0001
 
 #define KBTOGROUP(X) ((X) - 1)

Reply via email to