diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-11-25 12:24:31 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-11-25 12:24:31 +0000 |
commit | 094bca5ac3024957700ff5c0af74fbec18a79172 (patch) | |
tree | 7c407c1612d4208af13505990ab9937ad2a796b1 /tmux.h | |
parent | 87821fce0e3f8d55657fdc4fba39cc1186e2ed3c (diff) | |
download | rtmux-094bca5ac3024957700ff5c0af74fbec18a79172.tar.gz rtmux-094bca5ac3024957700ff5c0af74fbec18a79172.tar.bz2 rtmux-094bca5ac3024957700ff5c0af74fbec18a79172.zip |
Output the right keys for application and number keypad modes (they were the
wrong way round).
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -527,7 +527,7 @@ struct mode_key_table { #define MODE_CURSOR 0x1 #define MODE_INSERT 0x2 #define MODE_KCURSOR 0x4 -#define MODE_KKEYPAD 0x8 +#define MODE_KKEYPAD 0x8 /* set = application, clear = number */ #define MODE_MOUSE 0x10 /* |