[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>
This commit is contained in:
Fumitoshi UKAI
2002-03-13 15:51:36 +00:00
parent db2d61187d
commit 2033fa16bc
2 changed files with 12 additions and 2 deletions

View File

@@ -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