fix compiler warnings
* display.c (displayBuffer): fix suggest parentheses around && within || From: Fumitoshi UKAI <ukai@debian.or.jp>
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
2003-01-24 Fumitoshi UKAI <ukai@debian.or.jp>
|
||||||
|
|
||||||
|
* fix compiler warnings
|
||||||
|
* display.c (displayBuffer): fix suggest parentheses around && within ||
|
||||||
2003-01-24 Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
|
2003-01-24 Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
|
||||||
|
|
||||||
* [w3m-dev 03667] fold patch
|
* [w3m-dev 03667] fold patch
|
||||||
@@ -6815,4 +6819,4 @@ a * [w3m-dev 03276] compile error on EWS4800
|
|||||||
* release-0-2-1
|
* release-0-2-1
|
||||||
* import w3m-0.2.1
|
* import w3m-0.2.1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.709 2003/01/23 18:37:18 ukai Exp $
|
$Id: ChangeLog,v 1.710 2003/01/23 18:42:51 ukai Exp $
|
||||||
|
@@ -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 <signal.h>
|
||||||
#include "fm.h"
|
#include "fm.h"
|
||||||
|
|
||||||
@@ -363,8 +363,8 @@ displayBuffer(Buffer *buf, int mode)
|
|||||||
buf->width = COLS;
|
buf->width = COLS;
|
||||||
if (buf->height == 0)
|
if (buf->height == 0)
|
||||||
buf->height = LASTLINE + 1;
|
buf->height = LASTLINE + 1;
|
||||||
if ((buf->width != INIT_BUFFER_WIDTH && (buf->type &&
|
if ((buf->width != INIT_BUFFER_WIDTH && ((buf->type &&
|
||||||
!strcmp(buf->type, "text/html")
|
!strcmp(buf->type, "text/html"))
|
||||||
|| FoldLine))
|
|| FoldLine))
|
||||||
|| buf->need_reshape) {
|
|| buf->need_reshape) {
|
||||||
buf->need_reshape = TRUE;
|
buf->need_reshape = TRUE;
|
||||||
|
Reference in New Issue
Block a user