+2010-01-30 Andreas Schwab <schwab@linux-m68k.org>
+
+ * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
+
2010-01-29 Chong Yidong <cyd@stupidchicken.com>
* frame.c (DEFAULT_ROWS): Change default to 35.
/* Nonzero if character C has a printable glyph. */
#define CHAR_PRINTABLE_P(c) \
- (((c) >= 32 && ((c) < 127) \
- || ! NILP (CHAR_TABLE_REF (Vprintable_chars, (c)))))
+ (((c) >= 32 && (c) < 127) \
+ || ! NILP (CHAR_TABLE_REF (Vprintable_chars, (c))))
/* Return byte length of multibyte form for character C. */
#define CHAR_BYTES(c) \