diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-01-23 18:42:51 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-01-23 18:42:51 +0000 |
commit | 3b74155de01f9c37f8c0271feddc79d9bbbb1070 (patch) | |
tree | 3883827fc2b507dfc53020f0b82587f0e3b51978 /display.c | |
parent | fix indent (diff) | |
download | w3m-3b74155de01f9c37f8c0271feddc79d9bbbb1070.tar.gz w3m-3b74155de01f9c37f8c0271feddc79d9bbbb1070.zip |
fix compiler warnings
* display.c (displayBuffer): fix suggest parentheses around && within ||
From: Fumitoshi UKAI <ukai@debian.or.jp>
Diffstat (limited to '')
-rw-r--r-- | display.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* $Id: display.c,v 1.54 2003/01/23 18:38:05 ukai Exp $ */ +/* $Id: display.c,v 1.55 2003/01/23 18:42:52 ukai Exp $ */ #include <signal.h> #include "fm.h" @@ -363,8 +363,8 @@ displayBuffer(Buffer *buf, int mode) buf->width = COLS; if (buf->height == 0) buf->height = LASTLINE + 1; - if ((buf->width != INIT_BUFFER_WIDTH && (buf->type && - !strcmp(buf->type, "text/html") + if ((buf->width != INIT_BUFFER_WIDTH && ((buf->type && + !strcmp(buf->type, "text/html")) || FoldLine)) || buf->need_reshape) { buf->need_reshape = TRUE; |