aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libbb/read_key.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libbb/read_key.c b/libbb/read_key.c
index 470cf2f21..0f36d20b6 100644
--- a/libbb/read_key.c
+++ b/libbb/read_key.c
@@ -2,7 +2,8 @@
2/* 2/*
3 * Utility routines. 3 * Utility routines.
4 * 4 *
5 * Copyright (C) 2008 Denys Vlasenko 5 * Copyright (C) 2008 Rob Landley <rob@landley.net>
6 * Copyright (C) 2008 Denys Vlasenko <vda.linux@googlemail.com>
6 * 7 *
7 * Licensed under GPL version 2, see file LICENSE in this tarball for details. 8 * Licensed under GPL version 2, see file LICENSE in this tarball for details.
8 */ 9 */
@@ -26,7 +27,7 @@ int FAST_FUNC read_key(int fd, smalluint *nbuffered, char *buffer)
26#if 0 27#if 0
27 'O','P' |0x80,KEYCODE_FUN1 , 28 'O','P' |0x80,KEYCODE_FUN1 ,
28 /* [ESC] ESC O [2] P - [Alt-][Shift-]F1 */ 29 /* [ESC] ESC O [2] P - [Alt-][Shift-]F1 */
29 /* Ctrl seem to not affect sequences */ 30 /* Ctrl- seems to not affect sequences */
30 'O','Q' |0x80,KEYCODE_FUN2 , 31 'O','Q' |0x80,KEYCODE_FUN2 ,
31 'O','R' |0x80,KEYCODE_FUN3 , 32 'O','R' |0x80,KEYCODE_FUN3 ,
32 'O','S' |0x80,KEYCODE_FUN4 , 33 'O','S' |0x80,KEYCODE_FUN4 ,