conditional have void type, for standard C compilers.
+2000-08-18 Gerd Moellmann <gerd@gnu.org>
+
+ * lisp.h (CHECK) [ENABLE_CHECKING]: Make both side of the
+ conditional have void type, for standard C compilers.
+
+ * xdisp.c (redisplay_internal): Compare windows for equality with
+ EQ, instead of applying XWINDOW to something that might not
+ be a window.
+
2000-08-18 Kenichi Handa <handa@etl.go.jp>
* fontset.c (Finternal_char_font): Search only the selected frame
#ifdef ENABLE_CHECKING
#define CHECK(check,msg) ((check || suppress_checking \
- ? 0 \
+ ? (void) 0 \
: die (msg, __FILE__, __LINE__)), \
0)