aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-10-14 11:52:01 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-10-14 11:52:01 +0200
commita68bd4b2aee3368d92cbb0fc86ae3f65ab9170b4 (patch)
tree0bffb5fac0f70e011906cbc7c72116c5e8c8c876
parenta1a3972f285a63501223f898360571cb7e7e6d26 (diff)
downloadbusybox-w32-a68bd4b2aee3368d92cbb0fc86ae3f65ab9170b4.tar.gz
busybox-w32-a68bd4b2aee3368d92cbb0fc86ae3f65ab9170b4.tar.bz2
busybox-w32-a68bd4b2aee3368d92cbb0fc86ae3f65ab9170b4.zip
comment anc Config.in changes, no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--libbb/Config.in3
-rw-r--r--libbb/read_key.c1
2 files changed, 2 insertions, 2 deletions
diff --git a/libbb/Config.in b/libbb/Config.in
index bdb6dfa90..60ae0ffe9 100644
--- a/libbb/Config.in
+++ b/libbb/Config.in
@@ -134,9 +134,8 @@ config FEATURE_VERBOSE_CP_MESSAGE
134 $ cp file /vmlinuz/file 134 $ cp file /vmlinuz/file
135 cp: cannot stat '/vmlinuz/file': Path has non-directory component 135 cp: cannot stat '/vmlinuz/file': Path has non-directory component
136 If this feature is not enabled, they will be, respectively: 136 If this feature is not enabled, they will be, respectively:
137 cp: cannot remove '/does_not_exist/file': No such file or directory 137 cp: cannot create '/does_not_exist/file': No such file or directory
138 cp: cannot stat '/vmlinuz/file': Not a directory 138 cp: cannot stat '/vmlinuz/file': Not a directory
139 respectively.
140 This will cost you ~60 bytes. 139 This will cost you ~60 bytes.
141 140
142config FEATURE_COPYBUF_KB 141config FEATURE_COPYBUF_KB
diff --git a/libbb/read_key.c b/libbb/read_key.c
index 6f6c39e45..d3832fa6c 100644
--- a/libbb/read_key.c
+++ b/libbb/read_key.c
@@ -22,6 +22,7 @@ int64_t FAST_FUNC read_key(int fd, char *buffer)
22 'O','B' |0x80,KEYCODE_DOWN , 22 'O','B' |0x80,KEYCODE_DOWN ,
23 'O','C' |0x80,KEYCODE_RIGHT , 23 'O','C' |0x80,KEYCODE_RIGHT ,
24 'O','D' |0x80,KEYCODE_LEFT , 24 'O','D' |0x80,KEYCODE_LEFT ,
25 /* Ctrl-<arrow>: ESC [ 1 ; 5 x, where x = A/B/C/D */
25 'O','H' |0x80,KEYCODE_HOME , 26 'O','H' |0x80,KEYCODE_HOME ,
26 'O','F' |0x80,KEYCODE_END , 27 'O','F' |0x80,KEYCODE_END ,
27#if 0 28#if 0