diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-04-06 16:02:22 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-04-06 16:02:22 +0000 |
commit | aa21e0f91332afe909723b841b838ebe562df71e (patch) | |
tree | 291adba05988b11dbd5ff2b7373013ec9ca6fa8a /util-linux/more.c | |
parent | 250a22176815303f9af072a11278108f7767282b (diff) | |
download | busybox-w32-aa21e0f91332afe909723b841b838ebe562df71e.tar.gz busybox-w32-aa21e0f91332afe909723b841b838ebe562df71e.tar.bz2 busybox-w32-aa21e0f91332afe909723b841b838ebe562df71e.zip |
An optimization from Vladimir
Diffstat (limited to 'util-linux/more.c')
-rw-r--r-- | util-linux/more.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/util-linux/more.c b/util-linux/more.c index 1d918cf5c..732396f03 100644 --- a/util-linux/more.c +++ b/util-linux/more.c | |||
@@ -154,12 +154,10 @@ extern int more_main(int argc, char **argv) | |||
154 | 154 | ||
155 | #ifdef BB_FEATURE_USE_TERMIOS | 155 | #ifdef BB_FEATURE_USE_TERMIOS |
156 | /* Erase the "More" message */ | 156 | /* Erase the "More" message */ |
157 | putc('\r', stdout); | ||
157 | while (--len >= 0) | 158 | while (--len >= 0) |
158 | putc('\b', stdout); | ||
159 | while (++len <= terminal_width) | ||
160 | putc(' ', stdout); | 159 | putc(' ', stdout); |
161 | while (--len >= 0) | 160 | putc('\r', stdout); |
162 | putc('\b', stdout); | ||
163 | fflush(stdout); | 161 | fflush(stdout); |
164 | #endif | 162 | #endif |
165 | len=0; | 163 | len=0; |