aboutsummaryrefslogtreecommitdiffstats
path: root/image.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2003-01-28 16:45:15 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2003-01-28 16:45:15 +0000
commit6a009d94828520db87f2c6b13bdea87e92c9d8d8 (patch)
tree928598e260b53ad769ff3d8d055a0da538416a3a /image.c
parentfix indent (diff)
downloadw3m-6a009d94828520db87f2c6b13bdea87e92c9d8d8.tar.gz
w3m-6a009d94828520db87f2c6b13bdea87e92c9d8d8.zip
[w3m-dev 03707] Don't stop loading image when moving to next page.
* display.c (save_current_buf): required when defined USE_IMAGE (displayBuffer): stop only buffer changed * image.c (loadImage): IMG_FLAG_START load from maxLoadImage From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to '')
-rw-r--r--image.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/image.c b/image.c
index 5c0e2e8..aa8942d 100644
--- a/image.c
+++ b/image.c
@@ -1,4 +1,4 @@
-/* $Id: image.c,v 1.29 2003/01/28 16:46:54 ukai Exp $ */
+/* $Id: image.c,v 1.28 2003/01/28 16:45:19 ukai Exp $ */
#include "fm.h"
#include <sys/types.h>
@@ -340,7 +340,7 @@ loadImage(int flag)
i = 0;
else
i = maxLoadImage;
- for (; i < n_load_image; i++) {
+ for ( ; i < n_load_image; i++) {
cache = image_cache[i];
if (!cache)
continue;