Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-04-22 01:53:58 +0400
committerErik Andersen <andersen@codepoet.org>2000-04-22 01:53:58 +0400
commite90f4045afbcdcae81c417fffa635b3a5ab9166b (patch)
tree0f515205daab08e90ee59594b76a8964551e7459 /util-linux
parent1d1d95051a288b6bf64498aac9fb20047f384b7d (diff)
Some more updates and such...
-Erik
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/more.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/util-linux/more.c b/util-linux/more.c
index 20aa37095..909ed286b 100644
--- a/util-linux/more.c
+++ b/util-linux/more.c
@@ -109,6 +109,8 @@ extern int more_main(int argc, char **argv)
cin = fopen("/dev/console", "r");
getTermSettings(fileno(cin), &initial_settings);
new_settings = initial_settings;
+ new_settings.c_cc[VMIN] = 1;
+ new_settings.c_cc[VTIME] = 0;
new_settings.c_lflag &= ~ICANON;
new_settings.c_lflag &= ~ECHO;
setTermSettings(fileno(cin), &new_settings);