Mercurial > emacs
annotate src/character.h @ 89026:7f85fb19352a
(read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
of direct code 0x3ffff.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Tue, 20 Aug 2002 08:20:31 +0000 |
parents | a9f683a73092 |
children | f60ed671d6e4 |
rev | line source |
---|---|
88363 | 1 /* Header for multibyte character handler. |
2 Copyright (C) 1995, 1997, 1998 Electrotechnical Laboratory, JAPAN. | |
3 Licensed to the Free Software Foundation. | |
4 Copyright (C) 2001, 2002 | |
5 National Institute of Advanced Industrial Science and Technology (AIST) | |
6 Registration Number H13PRO009 | |
7 | |
8 This file is part of GNU Emacs. | |
9 | |
10 GNU Emacs is free software; you can redistribute it and/or modify | |
11 it under the terms of the GNU General Public License as published by | |
12 the Free Software Foundation; either version 2, or (at your option) | |
13 any later version. | |
14 | |
15 GNU Emacs is distributed in the hope that it will be useful, | |
16 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 GNU General Public License for more details. | |
19 | |
20 You should have received a copy of the GNU General Public License | |
21 along with GNU Emacs; see the file COPYING. If not, write to | |
22 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 Boston, MA 02111-1307, USA. */ | |
24 | |
25 #ifndef EMACS_CHARACTER_H | |
26 #define EMACS_CHARACTER_H | |
27 | |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
28 /* character code 1st byte byte sequence |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
29 -------------- -------- ------------- |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
30 0-7F 00..7F 0xxxxxxx |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
31 80-7FF C2..DF 110xxxxx 10xxxxxx |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
32 800-FFFF E0..EF 1110xxxx 10xxxxxx 10xxxxxx |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
33 10000-1FFFFF F0..F7 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
34 200000-3FFF7F F8 11111000 1000xxxx 10xxxxxx 10xxxxxx 10xxxxxx |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
35 invalid F9..FF |
88363 | 36 |
37 raw-8-bit | |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
38 3FFF80-3FFFFF C0..C1 1100000x 10xxxxxx |
88363 | 39 */ |
40 | |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
41 /* Maximum character code ((1 << CHARACTERBITS) - 1). */ |
88363 | 42 #define MAX_CHAR 0x3FFFFF |
43 | |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
44 /* Maximum Unicode character code. */ |
88363 | 45 #define MAX_UNICODE_CHAR 0x10FFFF |
46 | |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
47 /* Maximum N-byte character codes. */ |
88363 | 48 #define MAX_1_BYTE_CHAR 0x7F |
49 #define MAX_2_BYTE_CHAR 0x7FF | |
50 #define MAX_3_BYTE_CHAR 0xFFFF | |
51 #define MAX_4_BYTE_CHAR 0x1FFFFF | |
52 #define MAX_5_BYTE_CHAR 0x3FFF7F | |
53 | |
88946
233c080b5756
(CHAR_TO_BYTE8): If C is not eight-bit char, call
Kenichi Handa <handa@m17n.org>
parents:
88915
diff
changeset
|
54 /* Nonzero iff C is a character that corresponds to a raw 8-bit |
233c080b5756
(CHAR_TO_BYTE8): If C is not eight-bit char, call
Kenichi Handa <handa@m17n.org>
parents:
88915
diff
changeset
|
55 byte. */ |
233c080b5756
(CHAR_TO_BYTE8): If C is not eight-bit char, call
Kenichi Handa <handa@m17n.org>
parents:
88915
diff
changeset
|
56 #define CHAR_BYTE8_P(c) ((c) > MAX_5_BYTE_CHAR) |
233c080b5756
(CHAR_TO_BYTE8): If C is not eight-bit char, call
Kenichi Handa <handa@m17n.org>
parents:
88915
diff
changeset
|
57 |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
58 /* Return the character code for raw 8-bit byte BYTE. */ |
88363 | 59 #define BYTE8_TO_CHAR(byte) ((byte) + 0x3FFF00) |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
60 |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
61 /* Return the raw 8-bit byte for character C. */ |
88946
233c080b5756
(CHAR_TO_BYTE8): If C is not eight-bit char, call
Kenichi Handa <handa@m17n.org>
parents:
88915
diff
changeset
|
62 #define CHAR_TO_BYTE8(c) \ |
233c080b5756
(CHAR_TO_BYTE8): If C is not eight-bit char, call
Kenichi Handa <handa@m17n.org>
parents:
88915
diff
changeset
|
63 (CHAR_BYTE8_P (c) \ |
233c080b5756
(CHAR_TO_BYTE8): If C is not eight-bit char, call
Kenichi Handa <handa@m17n.org>
parents:
88915
diff
changeset
|
64 ? (c) - 0x3FFF00 \ |
233c080b5756
(CHAR_TO_BYTE8): If C is not eight-bit char, call
Kenichi Handa <handa@m17n.org>
parents:
88915
diff
changeset
|
65 : multibyte_char_to_unibyte (c, Qnil)) |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
66 |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
67 /* Nonzero iff BYTE is the 1st byte of a multibyte form of a character |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
68 that corresponds to a raw 8-bit byte. */ |
88363 | 69 #define CHAR_BYTE8_HEAD_P(byte) ((byte) == 0xC0 || (byte) == 0xC1) |
70 | |
89018
a9f683a73092
(MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88946
diff
changeset
|
71 /* If C is not ASCII, make it unibyte. */ |
a9f683a73092
(MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88946
diff
changeset
|
72 |
a9f683a73092
(MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88946
diff
changeset
|
73 #define MAKE_CHAR_UNIBYTE(c) \ |
a9f683a73092
(MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88946
diff
changeset
|
74 if (! ASCII_CHAR_P (c)) \ |
a9f683a73092
(MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88946
diff
changeset
|
75 c = multibyte_char_to_unibyte (c, Qnil); \ |
a9f683a73092
(MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88946
diff
changeset
|
76 else |
a9f683a73092
(MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88946
diff
changeset
|
77 |
a9f683a73092
(MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88946
diff
changeset
|
78 |
a9f683a73092
(MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88946
diff
changeset
|
79 /* If C is not ASCII, make it multibyte. */ |
a9f683a73092
(MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88946
diff
changeset
|
80 |
a9f683a73092
(MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88946
diff
changeset
|
81 #define MAKE_CHAR_MULTIBYTE(c) \ |
a9f683a73092
(MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88946
diff
changeset
|
82 if (! ASCII_CHAR_P (c)) \ |
a9f683a73092
(MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88946
diff
changeset
|
83 c = unibyte_char_to_multibyte (c); \ |
a9f683a73092
(MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88946
diff
changeset
|
84 else |
a9f683a73092
(MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88946
diff
changeset
|
85 |
a9f683a73092
(MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88946
diff
changeset
|
86 |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
87 /* This is the maximum byte length of multibyte form. */ |
88363 | 88 #define MAX_MULTIBYTE_LENGTH 5 |
89 | |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
90 /* Return a Lisp character whose character code is C. */ |
88363 | 91 #define make_char(c) make_number (c) |
92 | |
93 /* Nonzero iff C is an ASCII byte. */ | |
94 #define ASCII_BYTE_P(c) ((unsigned) (c) < 0x80) | |
95 | |
96 /* Nonzero iff X is a character. */ | |
97 #define CHARACTERP(x) (NATNUMP (x) && XFASTINT (x) <= MAX_CHAR) | |
98 | |
88832 | 99 /* Nonzero iff C is valid as a character code. GENERICP is not used |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
100 now. */ |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
101 #define CHAR_VALID_P(c, genericp) ((unsigned) (c) <= MAX_CHAR) |
88363 | 102 |
103 /* Check if Lisp object X is a character or not. */ | |
104 #define CHECK_CHARACTER(x) \ | |
105 do { \ | |
106 if (! CHARACTERP(x)) x = wrong_type_argument (Qcharacterp, (x)); \ | |
107 } while (0) | |
108 | |
109 /* Nonzero iff C is an ASCII character. */ | |
110 #define ASCII_CHAR_P(c) ((unsigned) (c) < 0x80) | |
111 | |
112 /* Nonzero iff C is a character of code less than 0x100. */ | |
113 #define SINGLE_BYTE_CHAR_P(c) ((unsigned) (c) < 0x100) | |
114 | |
115 /* Nonzero if character C has a printable glyph. */ | |
116 #define CHAR_PRINTABLE_P(c) \ | |
117 (((c) >= 32 && ((c) < 127) \ | |
118 || ! NILP (CHAR_TABLE_REF (Vprintable_chars, (c))))) | |
119 | |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
120 /* Return byte length of multibyte form for character C. */ |
88363 | 121 #define CHAR_BYTES(c) \ |
122 ( (c) <= MAX_1_BYTE_CHAR ? 1 \ | |
123 : (c) <= MAX_2_BYTE_CHAR ? 2 \ | |
124 : (c) <= MAX_3_BYTE_CHAR ? 3 \ | |
125 : (c) <= MAX_4_BYTE_CHAR ? 4 \ | |
126 : (c) <= MAX_5_BYTE_CHAR ? 5 \ | |
127 : 2) | |
128 | |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
129 /* Store multibyte form of the character C in P. The caller should |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
130 allocate at least MAX_MULTIBYTE_LENGTH bytes area at P in advance. |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
131 Returns the length of the multibyte form. */ |
88363 | 132 |
133 #define CHAR_STRING(c, p) \ | |
134 ((unsigned) (c) <= MAX_1_BYTE_CHAR \ | |
135 ? ((p)[0] = (c), \ | |
136 1) \ | |
137 : (unsigned) (c) <= MAX_2_BYTE_CHAR \ | |
138 ? ((p)[0] = (0xC0 | ((c) >> 6)), \ | |
139 (p)[1] = (0x80 | ((c) & 0x3F)), \ | |
140 2) \ | |
141 : (unsigned) (c) <= MAX_3_BYTE_CHAR \ | |
142 ? ((p)[0] = (0xE0 | ((c) >> 12)), \ | |
143 (p)[1] = (0x80 | (((c) >> 6) & 0x3F)), \ | |
144 (p)[2] = (0x80 | ((c) & 0x3F)), \ | |
145 3) \ | |
146 : (unsigned) (c) <= MAX_5_BYTE_CHAR \ | |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
147 ? char_string_with_unification (c, p) \ |
88363 | 148 : ((p)[0] = (0xC0 | (((c) >> 6) & 0x01)), \ |
149 (p)[1] = (0x80 | ((c) & 0x3F)), \ | |
150 2)) | |
151 | |
152 | |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
153 /* Store multibyte form of the character C in P. The caller should |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
154 allocate at least MAX_MULTIBYTE_LENGTH bytes area at P in advance. |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
155 And, advance P to the end of the multibyte form. */ |
88363 | 156 |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
157 #define CHAR_STRING_ADVANCE(c, p) \ |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
158 do { \ |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
159 if ((c) <= MAX_1_BYTE_CHAR) \ |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
160 *(p)++ = (c); \ |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
161 else if ((c) <= MAX_2_BYTE_CHAR) \ |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
162 *(p)++ = (0xC0 | ((c) >> 6)), \ |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
163 *(p)++ = (0x80 | ((c) & 0x3F)); \ |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
164 else if ((c) <= MAX_3_BYTE_CHAR) \ |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
165 *(p)++ = (0xE0 | ((c) >> 12)), \ |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
166 *(p)++ = (0x80 | (((c) >> 6) & 0x3F)), \ |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
167 *(p)++ = (0x80 | ((c) & 0x3F)); \ |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
168 else if ((c) <= MAX_5_BYTE_CHAR) \ |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
169 (p) += char_string_with_unification ((c), (p)); \ |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
170 else \ |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
171 *(p)++ = (0xC0 | (((c) >> 6) & 0x01)), \ |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
172 *(p)++ = (0x80 | ((c) & 0x3F)); \ |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
173 } while (0) |
88363 | 174 |
175 /* Nonzero iff BYTE starts a non-ASCII character in a multibyte | |
176 form. */ | |
177 #define LEADING_CODE_P(byte) (((byte) & 0xC0) == 0xC0) | |
178 | |
88873
7d441bc35e9b
(TRAILING_CODE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88832
diff
changeset
|
179 /* Nonzero iff BYTE is a trailing code of a non-ASCII character in a |
7d441bc35e9b
(TRAILING_CODE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88832
diff
changeset
|
180 multibyte form. */ |
7d441bc35e9b
(TRAILING_CODE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88832
diff
changeset
|
181 #define TRAILING_CODE_P(byte) (((byte) & 0xC0) == 0x80) |
7d441bc35e9b
(TRAILING_CODE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88832
diff
changeset
|
182 |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
183 /* Nonzero iff BYTE starts a character in a multibyte form. |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
184 This is equivalent to: |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
185 (ASCII_BYTE_P (byte) || LEADING_CODE_P (byte)) */ |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
186 #define CHAR_HEAD_P(byte) (((byte) & 0xC0) != 0x80) |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
187 |
88363 | 188 /* Just kept for backward compatibility. This macro will be removed |
189 in the future. */ | |
190 #define BASE_LEADING_CODE_P LEADING_CODE_P | |
191 | |
192 /* How many bytes a character that starts with BYTE occupies in a | |
193 multibyte form. */ | |
194 #define BYTES_BY_CHAR_HEAD(byte) \ | |
195 (!((byte) & 0x80) ? 1 \ | |
196 : !((byte) & 0x20) ? 2 \ | |
197 : !((byte) & 0x10) ? 3 \ | |
198 : !((byte) & 0x08) ? 4 \ | |
199 : 5) | |
200 | |
201 | |
202 /* Return the length of the multi-byte form at string STR of length | |
203 LEN while assuming that STR points a valid multi-byte form. As | |
204 this macro isn't necessary anymore, all callers will be changed to | |
205 use BYTES_BY_CHAR_HEAD directly in the future. */ | |
206 | |
207 #define MULTIBYTE_FORM_LENGTH(str, len) \ | |
208 BYTES_BY_CHAR_HEAD (*(str)) | |
209 | |
210 /* Parse multibyte string STR of length LENGTH and set BYTES to the | |
211 byte length of a character at STR while assuming that STR points a | |
212 valid multibyte form. As this macro isn't necessary anymore, all | |
213 callers will be changed to use BYTES_BY_CHAR_HEAD directly in the | |
214 future. */ | |
215 | |
216 #define PARSE_MULTIBYTE_SEQ(str, length, bytes) \ | |
217 (bytes) = BYTES_BY_CHAR_HEAD (*(str)) | |
218 | |
219 /* The byte length of multibyte form at unibyte string P ending at | |
220 PEND. If STR doesn't point a valid multibyte form, return 0. */ | |
221 | |
222 #define MULTIBYTE_LENGTH(p, pend) \ | |
223 (p >= pend ? 0 \ | |
224 : !((p)[0] & 0x80) ? 1 \ | |
225 : ((p + 1 >= pend) || (((p)[1] & 0xC0) != 0x80)) ? 0 \ | |
226 : ((p)[0] & 0xE0) == 0xC0 ? 2 \ | |
227 : ((p + 2 >= pend) || (((p)[2] & 0xC0) != 0x80)) ? 0 \ | |
228 : ((p)[0] & 0xF0) == 0xE0 ? 3 \ | |
229 : ((p + 3 >= pend) || (((p)[3] & 0xC0) != 0x80)) ? 0 \ | |
230 : ((p)[0] & 0xF8) == 0xF0 ? 4 \ | |
231 : ((p + 4 >= pend) || (((p)[4] & 0xC0) != 0x80)) ? 0 \ | |
232 : (p)[0] == 0xF8 && ((p)[1] & 0xF0) == 0x80 ? 5 \ | |
233 : 0) | |
234 | |
235 | |
236 /* Like MULTIBYTE_LENGTH but don't check the ending address. */ | |
237 | |
238 #define MULTIBYTE_LENGTH_NO_CHECK(p) \ | |
239 (!((p)[0] & 0x80) ? 1 \ | |
240 : ((p)[1] & 0xC0) != 0x80 ? 0 \ | |
241 : ((p)[0] & 0xE0) == 0xC0 ? 2 \ | |
242 : ((p)[2] & 0xC0) != 0x80 ? 0 \ | |
243 : ((p)[0] & 0xF0) == 0xE0 ? 3 \ | |
244 : ((p)[3] & 0xC0) != 0x80 ? 0 \ | |
245 : ((p)[0] & 0xF8) == 0xF0 ? 4 \ | |
246 : ((p)[4] & 0xC0) != 0x80 ? 0 \ | |
247 : (p)[0] == 0xF8 && ((p)[1] & 0xF0) == 0x80 ? 5 \ | |
248 : 0) | |
249 | |
250 | |
251 /* Return the character code of character whose multibyte form is at | |
252 P. The argument LEN is ignored. It will be removed in the | |
253 future. */ | |
254 | |
255 #define STRING_CHAR(p, len) \ | |
256 (!((p)[0] & 0x80) \ | |
257 ? (p)[0] \ | |
258 : ! ((p)[0] & 0x20) \ | |
259 ? (((((p)[0] & 0x1F) << 6) \ | |
260 | ((p)[1] & 0x3F)) \ | |
261 + (((unsigned char) (p)[0]) < 0xC2 ? 0x3FFF80 : 0)) \ | |
262 : ! ((p)[0] & 0x10) \ | |
263 ? ((((p)[0] & 0x0F) << 12) \ | |
264 | (((p)[1] & 0x3F) << 6) \ | |
265 | ((p)[2] & 0x3F)) \ | |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
266 : string_char_with_unification ((p), NULL, NULL)) |
88363 | 267 |
268 | |
269 /* Like STRING_CHAR but set ACTUAL_LEN to the length of multibyte | |
270 form. The argument LEN is ignored. It will be removed in the | |
271 future. */ | |
272 | |
273 #define STRING_CHAR_AND_LENGTH(p, len, actual_len) \ | |
274 (!((p)[0] & 0x80) \ | |
275 ? ((actual_len) = 1, (p)[0]) \ | |
276 : ! ((p)[0] & 0x20) \ | |
277 ? ((actual_len) = 2, \ | |
278 (((((p)[0] & 0x1F) << 6) \ | |
279 | ((p)[1] & 0x3F)) \ | |
280 + (((unsigned char) (p)[0]) < 0xC2 ? 0x3FFF80 : 0))) \ | |
281 : ! ((p)[0] & 0x10) \ | |
282 ? ((actual_len) = 3, \ | |
283 ((((p)[0] & 0x0F) << 12) \ | |
284 | (((p)[1] & 0x3F) << 6) \ | |
285 | ((p)[2] & 0x3F))) \ | |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
286 : string_char_with_unification ((p), NULL, &actual_len)) |
88363 | 287 |
288 | |
289 /* Like STRING_CHAR but advacen P to the end of multibyte form. */ | |
290 | |
291 #define STRING_CHAR_ADVANCE(p) \ | |
292 (!((p)[0] & 0x80) \ | |
293 ? *(p)++ \ | |
294 : ! ((p)[0] & 0x20) \ | |
295 ? ((p) += 2, \ | |
296 ((((p)[-2] & 0x1F) << 6) \ | |
297 | ((p)[-1] & 0x3F) \ | |
298 | (((unsigned char) (p)[-2]) < 0xC2 ? 0x3FFF80 : 0))) \ | |
299 : ! ((p)[0] & 0x10) \ | |
300 ? ((p) += 3, \ | |
301 ((((p)[-3] & 0x0F) << 12) \ | |
302 | (((p)[-2] & 0x3F) << 6) \ | |
303 | ((p)[-1] & 0x3F))) \ | |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
304 : string_char_with_unification ((p), &(p), NULL)) |
88363 | 305 |
306 | |
307 /* Fetch the "next" character from Lisp string STRING at byte position | |
308 BYTEIDX, character position CHARIDX. Store it into OUTPUT. | |
309 | |
310 All the args must be side-effect-free. | |
311 BYTEIDX and CHARIDX must be lvalues; | |
312 we increment them past the character fetched. */ | |
313 | |
314 #define FETCH_STRING_CHAR_ADVANCE(OUTPUT, STRING, CHARIDX, BYTEIDX) \ | |
315 if (1) \ | |
316 { \ | |
317 CHARIDX++; \ | |
318 if (STRING_MULTIBYTE (STRING)) \ | |
319 { \ | |
320 unsigned char *ptr = &XSTRING (STRING)->data[BYTEIDX]; \ | |
321 int len; \ | |
322 \ | |
323 OUTPUT = STRING_CHAR_AND_LENGTH (ptr, 0, len); \ | |
324 BYTEIDX += len; \ | |
325 } \ | |
326 else \ | |
327 OUTPUT = XSTRING (STRING)->data[BYTEIDX++]; \ | |
328 } \ | |
329 else | |
330 | |
331 | |
332 /* Like FETCH_STRING_CHAR_ADVANCE but assumes STRING is multibyte. */ | |
333 | |
334 #define FETCH_STRING_CHAR_ADVANCE_NO_CHECK(OUTPUT, STRING, CHARIDX, BYTEIDX) \ | |
335 if (1) \ | |
336 { \ | |
337 unsigned char *ptr = &XSTRING (STRING)->data[BYTEIDX]; \ | |
338 int len; \ | |
339 \ | |
340 OUTPUT = STRING_CHAR_AND_LENGTH (ptr, 0, len); \ | |
341 BYTEIDX += len; \ | |
342 CHARIDX++; \ | |
343 } \ | |
344 else | |
345 | |
346 | |
347 /* Like FETCH_STRING_CHAR_ADVANCE but fetch character from the current | |
348 buffer. */ | |
349 | |
350 #define FETCH_CHAR_ADVANCE(OUTPUT, CHARIDX, BYTEIDX) \ | |
351 if (1) \ | |
352 { \ | |
353 CHARIDX++; \ | |
354 if (!NILP (current_buffer->enable_multibyte_characters)) \ | |
355 { \ | |
356 unsigned char *ptr = BYTE_POS_ADDR (BYTEIDX); \ | |
357 int len; \ | |
358 \ | |
359 OUTPUT= STRING_CHAR_AND_LENGTH (ptr, 0, len); \ | |
360 BYTEIDX += len; \ | |
361 } \ | |
362 else \ | |
363 { \ | |
364 OUTPUT = *(BYTE_POS_ADDR (BYTEIDX)); \ | |
365 BYTEIDX++; \ | |
366 } \ | |
367 } \ | |
368 else | |
369 | |
370 | |
371 /* Like FETCH_CHAR_ADVANCE but assumes STRING is multibyte. */ | |
372 | |
373 #define FETCH_CHAR_ADVANCE_NO_CHECK(OUTPUT, CHARIDX, BYTEIDX) \ | |
374 if (1) \ | |
375 { \ | |
376 unsigned char *ptr = BYTE_POS_ADDR (BYTEIDX); \ | |
377 int len; \ | |
378 \ | |
379 OUTPUT= STRING_CHAR_AND_LENGTH (ptr, 0, len); \ | |
380 BYTEIDX += len; \ | |
381 CHARIDX++; \ | |
382 } \ | |
383 else | |
384 | |
385 | |
386 /* Increase the buffer byte position POS_BYTE of the current buffer to | |
387 the next character boundary. No range checking of POS. */ | |
388 | |
389 #define INC_POS(pos_byte) \ | |
390 do { \ | |
391 unsigned char *p = BYTE_POS_ADDR (pos_byte); \ | |
392 pos_byte += BYTES_BY_CHAR_HEAD (*p); \ | |
393 } while (0) | |
394 | |
395 | |
396 /* Decrease the buffer byte position POS_BYTE of the current buffer to | |
397 the previous character boundary. No range checking of POS. */ | |
398 | |
399 #define DEC_POS(pos_byte) \ | |
400 do { \ | |
401 unsigned char *p; \ | |
402 \ | |
403 pos_byte--; \ | |
404 if (pos_byte < GPT_BYTE) \ | |
405 p = BEG_ADDR + pos_byte - 1; \ | |
406 else \ | |
407 p = BEG_ADDR + GAP_SIZE + pos_byte - 1; \ | |
408 while (!CHAR_HEAD_P (*p)) \ | |
409 { \ | |
410 p--; \ | |
411 pos_byte--; \ | |
412 } \ | |
413 } while (0) | |
414 | |
415 /* Increment both CHARPOS and BYTEPOS, each in the appropriate way. */ | |
416 | |
417 #define INC_BOTH(charpos, bytepos) \ | |
418 do \ | |
419 { \ | |
420 (charpos)++; \ | |
421 if (NILP (current_buffer->enable_multibyte_characters)) \ | |
422 (bytepos)++; \ | |
423 else \ | |
424 INC_POS ((bytepos)); \ | |
425 } \ | |
426 while (0) | |
427 | |
428 | |
429 /* Decrement both CHARPOS and BYTEPOS, each in the appropriate way. */ | |
430 | |
431 #define DEC_BOTH(charpos, bytepos) \ | |
432 do \ | |
433 { \ | |
434 (charpos)--; \ | |
435 if (NILP (current_buffer->enable_multibyte_characters)) \ | |
436 (bytepos)--; \ | |
437 else \ | |
438 DEC_POS ((bytepos)); \ | |
439 } \ | |
440 while (0) | |
441 | |
442 | |
443 /* Increase the buffer byte position POS_BYTE of the current buffer to | |
444 the next character boundary. This macro relies on the fact that | |
445 *GPT_ADDR and *Z_ADDR are always accessible and the values are | |
446 '\0'. No range checking of POS_BYTE. */ | |
447 | |
448 #define BUF_INC_POS(buf, pos_byte) \ | |
449 do { \ | |
450 unsigned char *p = BUF_BYTE_ADDRESS (buf, pos_byte); \ | |
451 pos_byte += BYTES_BY_CHAR_HEAD (*p); \ | |
452 } while (0) | |
453 | |
454 | |
455 /* Decrease the buffer byte position POS_BYTE of the current buffer to | |
456 the previous character boundary. No range checking of POS_BYTE. */ | |
457 | |
458 #define BUF_DEC_POS(buf, pos_byte) \ | |
459 do { \ | |
460 unsigned char *p; \ | |
461 pos_byte--; \ | |
462 if (pos_byte < BUF_GPT_BYTE (buf)) \ | |
463 p = BUF_BEG_ADDR (buf) + pos_byte - 1; \ | |
464 else \ | |
465 p = BUF_BEG_ADDR (buf) + BUF_GAP_SIZE (buf) + pos_byte - 1; \ | |
466 while (!CHAR_HEAD_P (*p)) \ | |
467 { \ | |
468 p--; \ | |
469 pos_byte--; \ | |
470 } \ | |
471 } while (0) | |
472 | |
473 | |
88742
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
474 #define MAYBE_UNIFY_CHAR(c) \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
475 if (CHAR_TABLE_P (Vchar_unify_table)) \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
476 { \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
477 Lisp_Object val; \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
478 int unified; \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
479 \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
480 val = CHAR_TABLE_REF (Vchar_unify_table, c); \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
481 if (! NILP (val)) \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
482 { \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
483 if (SYMBOLP (val)) \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
484 { \ |
88873
7d441bc35e9b
(TRAILING_CODE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88832
diff
changeset
|
485 Funify_charset (val, Qnil, Qnil); \ |
88742
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
486 val = CHAR_TABLE_REF (Vchar_unify_table, c); \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
487 } \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
488 if ((unified = XINT (val)) >= 0) \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
489 c = unified; \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
490 } \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
491 } \ |
88363 | 492 else |
493 | |
88742
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
494 |
88363 | 495 /* Return the width of ASCII character C. The width is measured by |
496 how many columns occupied on the screen when displayed in the | |
497 current buffer. */ | |
498 | |
499 #define ASCII_CHAR_WIDTH(c) \ | |
500 (c < 0x20 \ | |
501 ? (c == '\t' \ | |
502 ? XFASTINT (current_buffer->tab_width) \ | |
503 : (c == '\n' ? 0 : (NILP (current_buffer->ctl_arrow) ? 4 : 2))) \ | |
504 : (c < 0x7f \ | |
505 ? 1 \ | |
506 : ((NILP (current_buffer->ctl_arrow) ? 4 : 2)))) | |
507 | |
508 /* Return the width of character C. The width is measured by how many | |
509 columns occupied on the screen when displayed in the current | |
510 buffer. */ | |
511 | |
512 #define CHAR_WIDTH(c) \ | |
513 (ASCII_CHAR_P (c) \ | |
514 ? ASCII_CHAR_WIDTH (c) \ | |
515 : XINT (CHAR_TABLE_REF (Vchar_width_table, c))) | |
516 | |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
517 extern int char_string_with_unification P_ ((int, unsigned char *)); |
88873
7d441bc35e9b
(TRAILING_CODE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88832
diff
changeset
|
518 extern int string_char_with_unification P_ ((const unsigned char *, |
7d441bc35e9b
(TRAILING_CODE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88832
diff
changeset
|
519 const unsigned char **, int *)); |
88363 | 520 |
521 extern int translate_char P_ ((Lisp_Object, int c)); | |
522 extern int char_printable_p P_ ((int c)); | |
523 extern void parse_str_as_multibyte P_ ((unsigned char *, int, int *, int *)); | |
524 extern int parse_str_to_multibyte P_ ((unsigned char *, int)); | |
525 extern int str_as_multibyte P_ ((unsigned char *, int, int, int *)); | |
526 extern int str_to_multibyte P_ ((unsigned char *, int, int)); | |
527 extern int str_as_unibyte P_ ((unsigned char *, int)); | |
528 extern int strwidth P_ ((unsigned char *, int)); | |
529 extern int c_string_width P_ ((unsigned char *, int, int, int *, int *)); | |
530 extern int lisp_string_width P_ ((Lisp_Object, int, int *, int *)); | |
531 | |
532 extern Lisp_Object Vprintable_chars; | |
533 | |
534 extern Lisp_Object Qcharacterp, Qauto_fill_chars; | |
535 extern Lisp_Object Vtranslation_table_vector; | |
536 extern Lisp_Object Vchar_width_table; | |
537 extern Lisp_Object Vchar_direction_table; | |
538 extern Lisp_Object Vchar_unify_table; | |
539 | |
88545 | 540 extern Lisp_Object string_escape_byte8 P_ ((Lisp_Object)); |
541 | |
88363 | 542 /* Return a translation table of id number ID. */ |
543 #define GET_TRANSLATION_TABLE(id) \ | |
544 (XCDR(XVECTOR(Vtranslation_table_vector)->contents[(id)])) | |
545 | |
546 /* A char-table for characters which may invoke auto-filling. */ | |
547 extern Lisp_Object Vauto_fill_chars; | |
548 | |
88915
94184802d0cc
(Vchar_script_table): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
88873
diff
changeset
|
549 extern Lisp_Object Vchar_script_table; |
88873
7d441bc35e9b
(TRAILING_CODE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88832
diff
changeset
|
550 |
88363 | 551 /* Copy LEN bytes from FROM to TO. This macro should be used only |
552 when a caller knows that LEN is short and the obvious copy loop is | |
553 faster than calling bcopy which has some overhead. Copying a | |
554 multibyte sequence of a character is the typical case. */ | |
555 | |
556 #define BCOPY_SHORT(from, to, len) \ | |
557 do { \ | |
558 int i = len; \ | |
559 unsigned char *from_p = from, *to_p = to; \ | |
560 while (i--) *to_p++ = *from_p++; \ | |
561 } while (0) | |
562 | |
563 #define DEFSYM(sym, name) \ | |
564 do { (sym) = intern ((name)); staticpro (&(sym)); } while (0) | |
565 | |
566 #endif /* EMACS_CHARACTER_H */ |