aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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.