diff src/character.h @ 107056:a6dabb2fc53a

* character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
author Andreas Schwab <schwab@linux-m68k.org>
date Sat, 30 Jan 2010 11:32:39 +0100
parents 1d1d5d9bd884
children bef5d1738c0b b465aa3255ed
line wrap: on
line diff
--- a/src/character.h	Sat Jan 30 00:00:58 2010 +0000
+++ b/src/character.h	Sat Jan 30 11:32:39 2010 +0100
@@ -136,8 +136,8 @@
 
 /* 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)			\