From: Andreas Schwab Date: Sat, 30 Jan 2010 10:32:39 +0000 (+0100) Subject: * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning. X-Git-Tag: emacs-pretest-23.1.93~138 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=944c7a26953d6b4b107fe7a14a05cd1d3459bd17;p=emacs.git * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning. --- diff --git a/src/ChangeLog b/src/ChangeLog index 6aa252fcf92..795b6059a6f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2010-01-30 Andreas Schwab + + * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning. + 2010-01-29 Chong Yidong * frame.c (DEFAULT_ROWS): Change default to 35. diff --git a/src/character.h b/src/character.h index 2d75c9113fb..1f1f6eade84 100644 --- a/src/character.h +++ b/src/character.h @@ -136,8 +136,8 @@ along with GNU Emacs. If not, see . */ /* 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) \