avoid gcc-3 warning.

This commit is contained in:
christos 2003-08-14 01:07:59 +00:00
parent 5aa0e076c6
commit 3b342f088b
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@
#define largest_char 255 /* Largest character value. */
#define CTRL_CHAR(c) ((c) < control_character_threshold && (c) >= 0)
#define META_CHAR(c) ((c) > meta_character_threshold && (c) <= largest_char)
#define META_CHAR(c) ((c) > meta_character_threshold)
#define CTRL(c) ((c) & control_character_mask)
#define META(c) ((c) | meta_character_bit)