diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2010-01-30 11:32:39 +0100 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2010-01-30 11:32:39 +0100 |
commit | 944c7a26953d6b4b107fe7a14a05cd1d3459bd17 (patch) | |
tree | f1fba9981abf6fc02901b0f4508e8c4ca491a0c2 /src/character.h | |
parent | bf0b361c4071275488f710122a89b4965dfd8aba (diff) | |
download | emacs-944c7a26953d6b4b107fe7a14a05cd1d3459bd17.tar.gz emacs-944c7a26953d6b4b107fe7a14a05cd1d3459bd17.tar.bz2 emacs-944c7a26953d6b4b107fe7a14a05cd1d3459bd17.zip |
* character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
Diffstat (limited to 'src/character.h')
-rw-r--r-- | src/character.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 <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) \ |