aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii <[email protected]>2004-04-04 21:00:49 +0000
committerEli Zaretskii <[email protected]>2004-04-04 21:00:49 +0000
commit6f1a3d53d7ad2a72fe994e3a3787b334bde9bb4e (patch)
tree70749766f753f9b30f45b3a58f77f4647090cd9b
parentd14a46f77ec7e907f43c5748ea2a747b27895dfa (diff)
(SINGLE_BYTE_CHAR_P): Fix macro to avoid warnings from GCC.
-rw-r--r--src/charset.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/charset.h b/src/charset.h
index 3a4eb5cbfc..b49ed87a3a 100644
--- a/src/charset.h
+++ b/src/charset.h
@@ -216,7 +216,7 @@ extern int charset_big5_2; /* Big5 Level 2 (Chinese Traditional) */
#define MAX_CHAR (0x1F << 14)
/* 1 if C is a single byte character, else 0. */
-#define SINGLE_BYTE_CHAR_P(c) ((unsigned) (c) < 0x100)
+#define SINGLE_BYTE_CHAR_P(c) (((unsigned)(c) & 0xFF) == (c))
/* 1 if BYTE is an ASCII character in itself, in multibyte mode. */
#define ASCII_BYTE_P(byte) ((byte) < 0x80)
@@ -535,7 +535,7 @@ extern int iso_charset_table[2][2][128];
#define CHAR_STRING(c, str) \
(SINGLE_BYTE_CHAR_P (c) \
- ? ((ASCII_BYTE_P (c) || c >= 0xA0) \
+ ? ((ASCII_BYTE_P (c) || c >= 0xA0) \
? (*(str) = (unsigned char)(c), 1) \
: (*(str) = LEADING_CODE_8_BIT_CONTROL, *((str)+ 1) = c + 0x20, 2)) \
: char_to_string (c, (unsigned char *) str))