diff options
Diffstat (limited to 'more.c')
-rw-r--r-- | more.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -154,12 +154,10 @@ extern int more_main(int argc, char **argv) #ifdef BB_FEATURE_USE_TERMIOS /* Erase the "More" message */ + putc('\r', stdout); while (--len >= 0) - putc('\b', stdout); - while (++len <= terminal_width) putc(' ', stdout); - while (--len >= 0) - putc('\b', stdout); + putc('\r', stdout); fflush(stdout); #endif len=0; |