Yet another fix. I think I got it this time.
-Erik
This commit is contained in:
parent
41492d6c23
commit
5723934f7c
14
more.c
14
more.c
@ -67,8 +67,8 @@ static int terminal_height = 24;
|
|||||||
|
|
||||||
extern int more_main(int argc, char **argv)
|
extern int more_main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
int c, lines = 0, input = 0;
|
int c, lines, input = 0;
|
||||||
int please_display_more_prompt = 0;
|
int please_display_more_prompt;
|
||||||
struct stat st;
|
struct stat st;
|
||||||
FILE *file;
|
FILE *file;
|
||||||
int len, page_height;
|
int len, page_height;
|
||||||
@ -114,12 +114,12 @@ extern int more_main(int argc, char **argv)
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
len=0;
|
len=0;
|
||||||
|
lines = 0;
|
||||||
page_height = terminal_height;
|
page_height = terminal_height;
|
||||||
|
please_display_more_prompt = 0;
|
||||||
while ((c = getc(file)) != EOF) {
|
while ((c = getc(file)) != EOF) {
|
||||||
|
|
||||||
if (please_display_more_prompt) {
|
if (please_display_more_prompt) {
|
||||||
lines = 0;
|
|
||||||
please_display_more_prompt = 0;
|
|
||||||
len = printf("--More-- ");
|
len = printf("--More-- ");
|
||||||
if (file != stdin) {
|
if (file != stdin) {
|
||||||
#if _FILE_OFFSET_BITS == 64
|
#if _FILE_OFFSET_BITS == 64
|
||||||
@ -163,7 +163,9 @@ extern int more_main(int argc, char **argv)
|
|||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
#endif
|
#endif
|
||||||
len=0;
|
len=0;
|
||||||
|
lines = 0;
|
||||||
page_height = terminal_height;
|
page_height = terminal_height;
|
||||||
|
please_display_more_prompt = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -188,7 +190,7 @@ extern int more_main(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
/* Adjust the terminal height for any overlap, so that
|
/* Adjust the terminal height for any overlap, so that
|
||||||
* no lines get lost off the top. */
|
* no lines get lost off the top. */
|
||||||
if (len) {
|
if (len >= terminal_width) {
|
||||||
div_t result = div( len, terminal_width);
|
div_t result = div( len, terminal_width);
|
||||||
if (result.quot) {
|
if (result.quot) {
|
||||||
if (result.rem)
|
if (result.rem)
|
||||||
@ -197,7 +199,7 @@ extern int more_main(int argc, char **argv)
|
|||||||
page_height-=(result.quot-1);
|
page_height-=(result.quot-1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (++lines == page_height) {
|
if (++lines >= page_height) {
|
||||||
please_display_more_prompt = 1;
|
please_display_more_prompt = 1;
|
||||||
}
|
}
|
||||||
len=0;
|
len=0;
|
||||||
|
@ -67,8 +67,8 @@ static int terminal_height = 24;
|
|||||||
|
|
||||||
extern int more_main(int argc, char **argv)
|
extern int more_main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
int c, lines = 0, input = 0;
|
int c, lines, input = 0;
|
||||||
int please_display_more_prompt = 0;
|
int please_display_more_prompt;
|
||||||
struct stat st;
|
struct stat st;
|
||||||
FILE *file;
|
FILE *file;
|
||||||
int len, page_height;
|
int len, page_height;
|
||||||
@ -114,12 +114,12 @@ extern int more_main(int argc, char **argv)
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
len=0;
|
len=0;
|
||||||
|
lines = 0;
|
||||||
page_height = terminal_height;
|
page_height = terminal_height;
|
||||||
|
please_display_more_prompt = 0;
|
||||||
while ((c = getc(file)) != EOF) {
|
while ((c = getc(file)) != EOF) {
|
||||||
|
|
||||||
if (please_display_more_prompt) {
|
if (please_display_more_prompt) {
|
||||||
lines = 0;
|
|
||||||
please_display_more_prompt = 0;
|
|
||||||
len = printf("--More-- ");
|
len = printf("--More-- ");
|
||||||
if (file != stdin) {
|
if (file != stdin) {
|
||||||
#if _FILE_OFFSET_BITS == 64
|
#if _FILE_OFFSET_BITS == 64
|
||||||
@ -163,7 +163,9 @@ extern int more_main(int argc, char **argv)
|
|||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
#endif
|
#endif
|
||||||
len=0;
|
len=0;
|
||||||
|
lines = 0;
|
||||||
page_height = terminal_height;
|
page_height = terminal_height;
|
||||||
|
please_display_more_prompt = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -188,7 +190,7 @@ extern int more_main(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
/* Adjust the terminal height for any overlap, so that
|
/* Adjust the terminal height for any overlap, so that
|
||||||
* no lines get lost off the top. */
|
* no lines get lost off the top. */
|
||||||
if (len) {
|
if (len >= terminal_width) {
|
||||||
div_t result = div( len, terminal_width);
|
div_t result = div( len, terminal_width);
|
||||||
if (result.quot) {
|
if (result.quot) {
|
||||||
if (result.rem)
|
if (result.rem)
|
||||||
@ -197,7 +199,7 @@ extern int more_main(int argc, char **argv)
|
|||||||
page_height-=(result.quot-1);
|
page_height-=(result.quot-1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (++lines == page_height) {
|
if (++lines >= page_height) {
|
||||||
please_display_more_prompt = 1;
|
please_display_more_prompt = 1;
|
||||||
}
|
}
|
||||||
len=0;
|
len=0;
|
||||||
|
Loading…
Reference in New Issue
Block a user