]> git.eshelyaron.com Git - emacs.git/commitdiff
(ASCII_BYTE_P): New macro.
authorKarl Heuer <kwzh@gnu.org>
Sat, 15 Nov 1997 20:23:21 +0000 (20:23 +0000)
committerKarl Heuer <kwzh@gnu.org>
Sat, 15 Nov 1997 20:23:21 +0000 (20:23 +0000)
src/charset.h

index 1358a5be4dd2a2d7539740f7577395a5b02ac51d..34923a13d989f725c2e0a47edf806d5338d13469 100644 (file)
@@ -250,6 +250,9 @@ extern int charset_big5_2;  /* Big5 Level 2 (Chinese Traditional) */
 /* 1 if C is an composite character, else 0.  */
 #define COMPOSITE_CHAR_P(c) ((c) >= MIN_CHAR_COMPOSITION)
 
+/* 1 if BYTE is a character in itself, in multibyte mode.  */
+#define ASCII_BYTE_P(byte) ((byte) < 0x80)
+
 /* A char-table containing information of each character set.
 
    Unlike ordinary char-tables, this doesn't contain any nested table.