aboutsummaryrefslogtreecommitdiff
path: root/util-linux/more.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-12-23 20:47:22 +0000
committerEric Andersen <andersen@codepoet.org>2003-12-23 20:47:22 +0000
commit5089534be00aaaf16c2ffcf2a7ed8d742d583e5a (patch)
tree3ab05df572b4f1e4867e0a4dbdd6f4b61b2fa014 /util-linux/more.c
parentd10f36fe2e553f804dff96a5b82770fd46be0834 (diff)
downloadbusybox-5089534be00aaaf16c2ffcf2a7ed8d742d583e5a.tar.gz
match changes made to cmdedit
Diffstat (limited to 'util-linux/more.c')
-rw-r--r--util-linux/more.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/util-linux/more.c b/util-linux/more.c
index f4018f5d1..e3a1d8656 100644
--- a/util-linux/more.c
+++ b/util-linux/more.c
@@ -84,11 +84,8 @@ extern int more_main(int argc, char **argv)
new_settings = initial_settings;
new_settings.c_lflag &= ~ICANON;
new_settings.c_lflag &= ~ECHO;
-#ifndef linux
- /* Hmm, in linux c_cc[] not parsed if set ~ICANON */
new_settings.c_cc[VMIN] = 1;
new_settings.c_cc[VTIME] = 0;
-#endif
setTermSettings(fileno(cin), &new_settings);
atexit(set_tty_to_initial_mode);
(void) signal(SIGINT, gotsig);