emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r99421: * character.h (CHAR_PRINTABLE


From: Andreas Schwab
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r99421: * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
Date: Sat, 30 Jan 2010 11:32:39 +0100
User-agent: Bazaar (2.0.2)

------------------------------------------------------------
revno: 99421
committer: Andreas Schwab <address@hidden>
branch nick: emacs
timestamp: Sat 2010-01-30 11:32:39 +0100
message:
  * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
modified:
  src/ChangeLog
  src/character.h
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2010-01-29 19:02:02 +0000
+++ b/src/ChangeLog     2010-01-30 10:32:39 +0000
@@ -1,3 +1,7 @@
+2010-01-30  Andreas Schwab  <address@hidden>
+
+       * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
+
 2010-01-29  Chong Yidong  <address@hidden>
 
        * frame.c (DEFAULT_ROWS): Change default to 35.

=== modified file 'src/character.h'
--- a/src/character.h   2010-01-13 08:35:10 +0000
+++ b/src/character.h   2010-01-30 10:32:39 +0000
@@ -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)                  \


reply via email to

[Prev in Thread] Current Thread [Next in Thread]