(CHAR_MULTIBYTE_P): Moved to mb-multibyte.h.
authortomo <tomo>
Sun, 5 Sep 1999 14:38:06 +0000 (14:38 +0000)
committertomo <tomo>
Sun, 5 Sep 1999 14:38:06 +0000 (14:38 +0000)
(CHAR_ASCII_P): Don't use `CHAR_MULTIBYTE_P'.

src/mule-charset.h

index 1fab443..a8dcad9 100644 (file)
@@ -602,11 +602,7 @@ REP_BYTES_BY_FIRST_BYTE (int fb)
 /*                        Dealing with characters                       */
 /************************************************************************/
 
-/* Is this character represented by more than one byte in a string? */
-
-#define CHAR_MULTIBYTE_P(c) ((c) >= 0x80)
-
-#define CHAR_ASCII_P(c) (!CHAR_MULTIBYTE_P (c))
+#define CHAR_ASCII_P(ch) ((ch) <= 0x7F)
 
 /* The bit fields of character are divided into 3 parts:
    FIELD1(5bits):FIELD2(7bits):FIELD3(7bits) */