diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-11-28 14:41:17 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-11-28 14:41:17 +0000 |
commit | 635d36f92870a732770aacd6ef2620470c44e8af (patch) | |
tree | 239d193a437563d487a0301f2f2692682e45b9bd /tmux.h | |
parent | 5f366e6d54c4825eb760424f86388e8813bb6189 (diff) | |
download | rtmux-635d36f92870a732770aacd6ef2620470c44e8af.tar.gz rtmux-635d36f92870a732770aacd6ef2620470c44e8af.tar.bz2 rtmux-635d36f92870a732770aacd6ef2620470c44e8af.zip |
Sync OpenBSD patchset 562:
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 | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.522 2009-11-19 22:37:04 tcunha Exp $ */ +/* $Id: tmux.h,v 1.523 2009-11-28 14:41:17 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -526,7 +526,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 /* |