summaryrefslogtreecommitdiff
path: root/src/charset.h
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2004-04-04 21:00:49 +0000
committerEli Zaretskii <eliz@gnu.org>2004-04-04 21:00:49 +0000
commit1172cabaddc03743fae326c7004b1d46d5fc6ee3 (patch)
tree9854831cdeec9b042ccce9bf30fd41566dc5b559 /src/charset.h
parent7b227084d6505b24802d346a6d41e9ced32ca00c (diff)
downloademacs-1172cabaddc03743fae326c7004b1d46d5fc6ee3.tar.gz
(SINGLE_BYTE_CHAR_P): Fix macro to avoid warnings from GCC.
Diffstat (limited to 'src/charset.h')
-rw-r--r--src/charset.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/charset.h b/src/charset.h
index 3a4eb5cbfcc..b49ed87a3ab 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))