aboutsummaryrefslogtreecommitdiffstats
path: root/buffer.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2002-03-13 15:51:36 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2002-03-13 15:51:36 +0000
commit2033fa16bcf15aff2678e153c97ec6b89b161702 (patch)
tree5bb210b85df124e72166caa10e8d37c98e1aa71d /buffer.c
parent[w3m-dev 03125] w3m -m < image (diff)
downloadw3m-2033fa16bcf15aff2678e153c97ec6b89b161702.tar.gz
w3m-2033fa16bcf15aff2678e153c97ec6b89b161702.zip
[w3m-dev 03126] reshapeBuffer() and -m option
* buffer.c (reshapeBuffer): fix reshapeBuffer() in case of -m option From: Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
Diffstat (limited to '')
-rw-r--r--buffer.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/buffer.c b/buffer.c
index d306f92..4c341fa 100644
--- a/buffer.c
+++ b/buffer.c
@@ -1,4 +1,4 @@
-/* $Id: buffer.c,v 1.10 2002/01/31 17:54:49 ukai Exp $ */
+/* $Id: buffer.c,v 1.11 2002/03/13 15:51:36 ukai Exp $ */
#include "fm.h"
#ifdef USE_MOUSE
@@ -497,6 +497,9 @@ reshapeBuffer(Buffer *buf)
buf->need_reshape = FALSE;
if (buf->sourcefile == NULL)
return;
+ if (buf->currentURL.scheme == SCM_LOCAL &&
+ !strcmp(buf->currentURL.file, "-"))
+ return;
init_stream(&f, SCM_LOCAL, NULL);
examineFile(buf->mailcap_source ? buf->mailcap_source : buf->sourcefile,
&f);
@@ -520,6 +523,8 @@ reshapeBuffer(Buffer *buf)
UseContentCharset = FALSE;
UseAutoDetect = FALSE;
#endif
+ if (buf->search_header && buf->currentURL.scheme == SCM_LOCAL)
+ readHeader(&f, buf, TRUE, NULL);
if (!strcasecmp(buf->type, "text/html"))
loadHTMLBuffer(&f, buf);
else