From 180f585ac379d9eb2250d8cc4c11fbea38a1b844 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Mon, 26 Oct 2009 00:59:59 +0100 Subject: read_key: remove handling for ctrl-up/down, we don't use that. -12 bytes Signed-off-by: Denys Vlasenko --- libbb/read_key.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libbb/read_key.c') diff --git a/libbb/read_key.c b/libbb/read_key.c index 88ea79dc6..02c381dd5 100644 --- a/libbb/read_key.c +++ b/libbb/read_key.c @@ -83,8 +83,8 @@ int64_t FAST_FUNC read_key(int fd, char *buffer) /* ESC [ 2 4 ; 5 ~ - Ctrl-F12 */ /* ESC [ 2 4 ; 6 ~ - Ctrl-Shift-F12 */ #endif - '[','1',';','5','A' |0x80,KEYCODE_CTRL_UP , - '[','1',';','5','B' |0x80,KEYCODE_CTRL_DOWN , + /* '[','1',';','5','A' |0x80,KEYCODE_CTRL_UP , - unused */ + /* '[','1',';','5','B' |0x80,KEYCODE_CTRL_DOWN , - unused */ '[','1',';','5','C' |0x80,KEYCODE_CTRL_RIGHT, '[','1',';','5','D' |0x80,KEYCODE_CTRL_LEFT , 0 -- cgit v1.2.3