diff options
author | Ron Yorston <rmy@pobox.com> | 2015-04-22 21:17:44 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2015-04-22 21:17:44 +0100 |
commit | f40a7116939fce9574c8095a83026a0d68a20a27 (patch) | |
tree | 1bdedcf55439975222a28495c537feae712f8566 | |
parent | 32f8610c8978673aa5d4f51097f955cdd14c13d8 (diff) | |
download | busybox-w32-f40a7116939fce9574c8095a83026a0d68a20a27.tar.gz busybox-w32-f40a7116939fce9574c8095a83026a0d68a20a27.tar.bz2 busybox-w32-f40a7116939fce9574c8095a83026a0d68a20a27.zip |
mingw: remove unused code from read_key
-rw-r--r-- | win32/termios.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/win32/termios.c b/win32/termios.c index 2b1d2c761..658af4a26 100644 --- a/win32/termios.c +++ b/win32/termios.c | |||
@@ -67,11 +67,6 @@ int64_t FAST_FUNC read_key(int fd, char *buf UNUSED_PARAM, int timeout) | |||
67 | case VK_END: ret = KEYCODE_END; goto done; | 67 | case VK_END: ret = KEYCODE_END; goto done; |
68 | case VK_PRIOR: ret = KEYCODE_PAGEUP; goto done; | 68 | case VK_PRIOR: ret = KEYCODE_PAGEUP; goto done; |
69 | case VK_NEXT: ret = KEYCODE_PAGEDOWN; goto done; | 69 | case VK_NEXT: ret = KEYCODE_PAGEDOWN; goto done; |
70 | case VK_CAPITAL: | ||
71 | case VK_SHIFT: | ||
72 | case VK_CONTROL: | ||
73 | case VK_MENU: | ||
74 | break; | ||
75 | } | 70 | } |
76 | continue; | 71 | continue; |
77 | } | 72 | } |