diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-11-25 12:24:32 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-11-25 12:24:32 +0000 |
commit | 674e626b074b00e33480e10b0663f7a62a5bcfaa (patch) | |
tree | 8a411627a4cdd771f9f18aa95fbfa6ff31f01391 /usr.bin/tmux/tmux.h | |
parent | 1f4d78146b59c1500eb9d4c1bf729fa8aded5476 (diff) |
Output the right keys for application and number keypad modes (they were the
wrong way round).
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index daba60e5097..e76dc267103 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.184 2009/11/19 19:47:28 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.185 2009/11/25 12:24:31 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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 /* |