aboutsummaryrefslogtreecommitdiffstats
path: root/group.c
diff options
context:
space:
mode:
authorokan2015-11-10 20:05:33 +0000
committerokan2015-11-10 20:05:33 +0000
commit7c8ffa9d8af57ad9db9d8e99a694aebfa76ea11a (patch)
tree840e52bc116bc07eb0260799d51bd46caeb1baee /group.c
parentab17ebd814c221350b2742d35cab1c572a0765ef (diff)
downloadcwm-7c8ffa9d8af57ad9db9d8e99a694aebfa76ea11a.tar.gz
Start cleaning up name vs function differences; replace magic numbers.
Diffstat (limited to '')
-rw-r--r--group.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/group.c b/group.c
index 11c2737..a671f33 100644
--- a/group.c
+++ b/group.c
@@ -16,7 +16,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: group.c,v 1.120 2015/08/27 18:53:15 okan Exp $
+ * $OpenBSD: group.c,v 1.121 2015/11/10 20:05:33 okan Exp $
*/
#include <sys/types.h>
@@ -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)