summaryrefslogtreecommitdiffstats
path: root/cmd-next-window.c
diff options
context:
space:
mode:
Diffstat (limited to 'cmd-next-window.c')
-rw-r--r--cmd-next-window.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cmd-next-window.c b/cmd-next-window.c
index 64ac3959..58a9ea2a 100644
--- a/cmd-next-window.c
+++ b/cmd-next-window.c
@@ -1,4 +1,4 @@
-/* $Id: cmd-next-window.c,v 1.17 2009-06-25 15:29:34 nicm Exp $ */
+/* $Id: cmd-next-window.c,v 1.18 2009-07-14 06:43:32 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -30,7 +30,7 @@ int cmd_next_window_exec(struct cmd *, struct cmd_ctx *);
const struct cmd_entry cmd_next_window_entry = {
"next-window", "next",
"[-a] " CMD_TARGET_SESSION_USAGE,
- CMD_AFLAG,
+ 0, CMD_CHFLAG('a'),
cmd_next_window_init,
cmd_target_parse,
cmd_next_window_exec,
@@ -49,7 +49,7 @@ cmd_next_window_init(struct cmd *self, int key)
data = self->data;
if (key == KEYC_ADDESC('n'))
- data->flags |= CMD_AFLAG;
+ data->chflags |= CMD_CHFLAG('a');
}
int
@@ -63,7 +63,7 @@ cmd_next_window_exec(struct cmd *self, struct cmd_ctx *ctx)
return (-1);
activity = 0;
- if (data->flags & CMD_AFLAG)
+ if (data->chflags & CMD_CHFLAG('a'))
activity = 1;
if (session_next(s, activity) == 0)