summary refs log tree commit diff
path: root/group.c
diff options
context:
space:
mode:
authorokan <okan>2015-11-10 20:05:33 +0000
committerokan <okan>2015-11-10 20:05:33 +0000
commite20110f3445ba7f388482f5be7b72a922e548c92 (patch)
treeb9ba53a37e27c9be31431ee065035ade6558710f /group.c
parent31c74e915752ef1c4ed637a4fd3cee5cd14a7d8b (diff)
downloadcwm-e20110f3445ba7f388482f5be7b72a922e548c92.tar.gz
cwm-e20110f3445ba7f388482f5be7b72a922e548c92.tar.xz
cwm-e20110f3445ba7f388482f5be7b72a922e548c92.zip
Start cleaning up name vs function differences; replace magic numbers.
Diffstat (limited to 'group.c')
-rw-r--r--group.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/group.c b/group.c
index c455bcd..c39e0f1 100644
--- a/group.c
+++ b/group.c
@@ -272,7 +272,7 @@ group_cycle(struct screen_ctx *sc, int flags)
 
 	newgc = oldgc;
 	for (;;) {
-		newgc = (flags & CWM_RCYCLE) ? group_prev(newgc) :
+		newgc = (flags & CWM_CLIENT_RCYCLE) ? group_prev(newgc) :
 		    group_next(newgc);
 
 		if (newgc == oldgc)