diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-07-22 16:24:59 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-07-22 16:24:59 +0000 |
commit | a734488a4b84752000ee511b57f07d91ddc28a6d (patch) | |
tree | 091cec0e80ba02bc776c3ae1263c37dd2c9e670f /cmd-select-layout.c | |
parent | 94e2339842b813b608fa7726f67b985eb8592712 (diff) | |
download | rtmux-a734488a4b84752000ee511b57f07d91ddc28a6d.tar.gz rtmux-a734488a4b84752000ee511b57f07d91ddc28a6d.tar.bz2 rtmux-a734488a4b84752000ee511b57f07d91ddc28a6d.zip |
Sync OpenBSD patchset 151:
Tidy up keys: use an enum for the key codes, and remove the macros which just
wrap flag sets/clears/tests.
Diffstat (limited to 'cmd-select-layout.c')
-rw-r--r-- | cmd-select-layout.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cmd-select-layout.c b/cmd-select-layout.c index acca099f..0f305815 100644 --- a/cmd-select-layout.c +++ b/cmd-select-layout.c @@ -1,4 +1,4 @@ -/* $Id: cmd-select-layout.c,v 1.5 2009-07-20 15:42:05 tcunha Exp $ */ +/* $Id: cmd-select-layout.c,v 1.6 2009-07-22 16:24:59 tcunha Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> @@ -49,16 +49,16 @@ cmd_select_layout_init(struct cmd *self, int key) data = self->data; switch (key) { - case KEYC_ADDESC('1'): + case ('1' | KEYC_ESCAPE): data->arg = xstrdup("even-horizontal"); break; - case KEYC_ADDESC('2'): + case ('2' | KEYC_ESCAPE): data->arg = xstrdup("even-vertical"); - break; - case KEYC_ADDESC('3'): + break; + case ('3' | KEYC_ESCAPE): data->arg = xstrdup("main-horizontal"); break; - case KEYC_ADDESC('4'): + case ('4' | KEYC_ESCAPE): data->arg = xstrdup("main-vertical"); break; } |