From 094bca5ac3024957700ff5c0af74fbec18a79172 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 25 Nov 2009 12:24:31 +0000 Subject: Output the right keys for application and number keypad modes (they were the wrong way round). --- tmux.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 852203ee..61921ae2 100644 --- a/tmux.h +++ b/tmux.h @@ -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 /* -- cgit