diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-26 00:59:59 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-26 00:59:59 +0100 |
commit | 180f585ac379d9eb2250d8cc4c11fbea38a1b844 (patch) | |
tree | 7c9ade97f02447ddf9b492b6b0b3f2869c121206 /include/libbb.h | |
parent | 9d71fc6381bb6fa3d0deb4f55a334f124e9e9abf (diff) |
read_key: remove handling for ctrl-up/down, we don't use that. -12 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 6274ea2e8..9865121d9 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -1222,7 +1222,7 @@ enum { KEYCODE_FUN11 = -22, KEYCODE_FUN12 = -23, #endif - KEYCODE_CURSOR_POS = -0x100, + KEYCODE_CURSOR_POS = -0x100, /* 0xfff..fff00 */ /* How long is the longest ESC sequence we know? * We want it big enough to be able to contain * cursor position sequence "ESC [ 9999 ; 9999 R" |