aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1997-11-15 20:23:21 +0000
committerKarl Heuer1997-11-15 20:23:21 +0000
commit7614f779e06b6c24f313afce77d19851ece1af92 (patch)
treea95cceac5d3ba7a0472f6cb097cc8a3f736f7ea4 /src
parentfb9117773df724c8db96c544958374d953ca0012 (diff)
downloademacs-7614f779e06b6c24f313afce77d19851ece1af92.tar.gz
emacs-7614f779e06b6c24f313afce77d19851ece1af92.zip
(ASCII_BYTE_P): New macro.
Diffstat (limited to 'src')
-rw-r--r--src/charset.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/charset.h b/src/charset.h
index 1358a5be4dd..34923a13d98 100644
--- a/src/charset.h
+++ b/src/charset.h
@@ -250,6 +250,9 @@ extern int charset_big5_2; /* Big5 Level 2 (Chinese Traditional) */
250/* 1 if C is an composite character, else 0. */ 250/* 1 if C is an composite character, else 0. */
251#define COMPOSITE_CHAR_P(c) ((c) >= MIN_CHAR_COMPOSITION) 251#define COMPOSITE_CHAR_P(c) ((c) >= MIN_CHAR_COMPOSITION)
252 252
253/* 1 if BYTE is a character in itself, in multibyte mode. */
254#define ASCII_BYTE_P(byte) ((byte) < 0x80)
255
253/* A char-table containing information of each character set. 256/* A char-table containing information of each character set.
254 257
255 Unlike ordinary char-tables, this doesn't contain any nested table. 258 Unlike ordinary char-tables, this doesn't contain any nested table.