diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 1998-05-11 03:50:40 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 1998-05-11 03:50:40 -0400 |
commit | 116ac6932821c4a82256313792b26ab28259e8f0 (patch) | |
tree | a076f5e67aaf9b33585da9d079acde9d52def50c /WWW/Library/Implementation/HTFormat.c | |
parent | ee5cdfe9af88df5a276ac105bf757a6967522b7a (diff) | |
download | lynx-snapshots-116ac6932821c4a82256313792b26ab28259e8f0.tar.gz |
snapshot of project "lynx", label v2-8-1dev_10
Diffstat (limited to 'WWW/Library/Implementation/HTFormat.c')
-rw-r--r-- | WWW/Library/Implementation/HTFormat.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/WWW/Library/Implementation/HTFormat.c b/WWW/Library/Implementation/HTFormat.c index cdd2fa9b..db0b59c1 100644 --- a/WWW/Library/Implementation/HTFormat.c +++ b/WWW/Library/Implementation/HTFormat.c @@ -48,6 +48,7 @@ PUBLIC long int HTMaxBytes = 0; /* No effective limit */ #include <LYexit.h> #include <LYUtils.h> +#include <GridText.h> #include <LYGlobalDefs.h> #include <LYLeaks.h> @@ -577,6 +578,11 @@ PUBLIC int HTCopy ARGS4( (*targetClass.put_block)(sink, input_buffer, status); +#ifdef DISP_PARTIAL + if (display_partial) + HText_pageDisplay(Newline,""); +#endif /* DISP_PARTIAL */ + bytes += status; if (anchor && anchor->content_length > 0) sprintf(line, "Read %d of %d bytes of data.", @@ -637,6 +643,11 @@ PUBLIC int HTFileCopy ARGS2( } (*targetClass.put_block)(sink, input_buffer, status); +#ifdef DISP_PARTIAL + if (display_partial) + HText_pageDisplay(Newline,""); +#endif /* DISP_PARTIAL */ + bytes += status; if (nreads >= 100) { /* @@ -726,6 +737,11 @@ PRIVATE int HTGzFileCopy ARGS2( } (*targetClass.put_block)(sink, input_buffer, status); +#ifdef DISP_PARTIAL + if (display_partial) + HText_pageDisplay(Newline,""); +#endif /* DISP_PARTIAL */ + bytes += status; if (nreads >= 100) { /* |