From: Matt Kraai Date: Thu, 12 Apr 2001 20:51:01 +0000 (-0000) Subject: Fix return code and don't output spurious newlines. X-Git-Tag: 0_52~357 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d6cde0bcf43903c9f691ee7e745891f713419a9b;p=oweals%2Fbusybox.git Fix return code and don't output spurious newlines. --- diff --git a/more.c b/more.c index 732396f03..ffc79b179 100644 --- a/more.c +++ b/more.c @@ -164,6 +164,9 @@ extern int more_main(int argc, char **argv) lines = 0; page_height = terminal_height; please_display_more_prompt = 0; + + if (input == 'q') + goto end; } /* @@ -177,15 +180,10 @@ extern int more_main(int argc, char **argv) * allows the user to quit while in the middle of a file. */ if (c == '\n') { - switch (input) { - case 'q': - goto end; - case '\n': - /* increment by just one line if we are at - * the end of this line*/ + /* increment by just one line if we are at + * the end of this line */ + if (input == '\n') please_display_more_prompt = 1; - break; - } /* Adjust the terminal height for any overlap, so that * no lines get lost off the top. */ if (len >= terminal_width) { @@ -216,7 +214,7 @@ extern int more_main(int argc, char **argv) } while (--argc > 0); end: #ifdef BB_FEATURE_USE_TERMIOS - gotsig(0); + setTermSettings(fileno(cin), &initial_settings); #endif - return(TRUE); + return 0; } diff --git a/util-linux/more.c b/util-linux/more.c index 732396f03..ffc79b179 100644 --- a/util-linux/more.c +++ b/util-linux/more.c @@ -164,6 +164,9 @@ extern int more_main(int argc, char **argv) lines = 0; page_height = terminal_height; please_display_more_prompt = 0; + + if (input == 'q') + goto end; } /* @@ -177,15 +180,10 @@ extern int more_main(int argc, char **argv) * allows the user to quit while in the middle of a file. */ if (c == '\n') { - switch (input) { - case 'q': - goto end; - case '\n': - /* increment by just one line if we are at - * the end of this line*/ + /* increment by just one line if we are at + * the end of this line */ + if (input == '\n') please_display_more_prompt = 1; - break; - } /* Adjust the terminal height for any overlap, so that * no lines get lost off the top. */ if (len >= terminal_width) { @@ -216,7 +214,7 @@ extern int more_main(int argc, char **argv) } while (--argc > 0); end: #ifdef BB_FEATURE_USE_TERMIOS - gotsig(0); + setTermSettings(fileno(cin), &initial_settings); #endif - return(TRUE); + return 0; }