]> git.eshelyaron.com Git - emacs.git/commitdiff
* character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
authorAndreas Schwab <schwab@linux-m68k.org>
Sat, 30 Jan 2010 10:32:39 +0000 (11:32 +0100)
committerAndreas Schwab <schwab@linux-m68k.org>
Sat, 30 Jan 2010 10:32:39 +0000 (11:32 +0100)
src/ChangeLog
src/character.h

index 6aa252fcf92f9029c4a7f4f90ad42c2946ccd364..795b6059a6f10149b4bd5d1fe836d06e650f27c7 100644 (file)
@@ -1,3 +1,7 @@
+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.
index 2d75c9113fb729a7fef71dc187e3ebeeb156f582..1f1f6eade84be74434c28654104d440bca3a8223 100644 (file)
@@ -136,8 +136,8 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 
 /* 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)                  \