Mercurial > emacs
annotate src/character.h @ 89740:78c1fd14ed42
(Fdefine_coding_system_internal): Fix previous change.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Sun, 25 Jan 2004 07:50:35 +0000 |
parents | 9ff7a41a549a |
children | 028a1f06f612 |
rev | line source |
---|---|
88363 | 1 /* Header for multibyte character handler. |
2 Copyright (C) 1995, 1997, 1998 Electrotechnical Laboratory, JAPAN. | |
89483 | 3 Licensed to the Free Software Foundation. |
4 Copyright (C) 2003 | |
88363 | 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 |
89692 | 35 3FFF80-3FFFFF C0..C1 1100000x 10xxxxxx (for eight-bit-char) |
36 400000-... invalid | |
88363 | 37 |
89692 | 38 invalid 1st byte 80..BF 10xxxxxx |
39 F9..FF 11111xxx (xxx != 000) | |
88363 | 40 */ |
41 | |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
42 /* Maximum character code ((1 << CHARACTERBITS) - 1). */ |
88363 | 43 #define MAX_CHAR 0x3FFFFF |
44 | |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
45 /* Maximum Unicode character code. */ |
88363 | 46 #define MAX_UNICODE_CHAR 0x10FFFF |
47 | |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
48 /* Maximum N-byte character codes. */ |
88363 | 49 #define MAX_1_BYTE_CHAR 0x7F |
50 #define MAX_2_BYTE_CHAR 0x7FF | |
51 #define MAX_3_BYTE_CHAR 0xFFFF | |
52 #define MAX_4_BYTE_CHAR 0x1FFFFF | |
53 #define MAX_5_BYTE_CHAR 0x3FFF7F | |
54 | |
89053
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
55 /* Leading code range of Latin-1 chars. */ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
56 #define LEADING_CODE_LATIN_1_MIN 0xC2 |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
57 #define LEADING_CODE_LATIN_1_MAX 0xC3 |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
58 |
88946
233c080b5756
(CHAR_TO_BYTE8): If C is not eight-bit char, call
Kenichi Handa <handa@m17n.org>
parents:
88915
diff
changeset
|
59 /* 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
|
60 byte. */ |
233c080b5756
(CHAR_TO_BYTE8): If C is not eight-bit char, call
Kenichi Handa <handa@m17n.org>
parents:
88915
diff
changeset
|
61 #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
|
62 |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
63 /* Return the character code for raw 8-bit byte BYTE. */ |
88363 | 64 #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
|
65 |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
66 /* 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
|
67 #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
|
68 (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
|
69 ? (c) - 0x3FFF00 \ |
233c080b5756
(CHAR_TO_BYTE8): If C is not eight-bit char, call
Kenichi Handa <handa@m17n.org>
parents:
88915
diff
changeset
|
70 : multibyte_char_to_unibyte (c, Qnil)) |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
71 |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
72 /* 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
|
73 that corresponds to a raw 8-bit byte. */ |
88363 | 74 #define CHAR_BYTE8_HEAD_P(byte) ((byte) == 0xC0 || (byte) == 0xC1) |
75 | |
89053
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
76 /* Mapping table from unibyte chars to multibyte chars. */ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
77 extern int unibyte_to_multibyte_table[256]; |
89018
a9f683a73092
(MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88946
diff
changeset
|
78 |
89053
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
79 /* Convert the unibyte character C to the corresponding multibyte |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
80 character. If C can't be converted, return C. */ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
81 #define unibyte_char_to_multibyte(c) \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
82 ((c) < 256 ? unibyte_to_multibyte_table[(c)] : (c)) |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
83 |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
84 /* If C is not ASCII, make it unibyte. */ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
85 #define MAKE_CHAR_UNIBYTE(c) \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
86 do { \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
87 if (! ASCII_CHAR_P (c)) \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
88 c = CHAR_TO_BYTE8 (c); \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
89 } while (0) |
89018
a9f683a73092
(MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88946
diff
changeset
|
90 |
a9f683a73092
(MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88946
diff
changeset
|
91 |
89053
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
92 /* If C is not ASCII, make it multibyte. It assumes C < 256. */ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
93 #define MAKE_CHAR_MULTIBYTE(c) ((c) = unibyte_to_multibyte_table[(c)]) |
89018
a9f683a73092
(MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
Kenichi Handa <handa@m17n.org>
parents:
88946
diff
changeset
|
94 |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
95 /* This is the maximum byte length of multibyte form. */ |
88363 | 96 #define MAX_MULTIBYTE_LENGTH 5 |
97 | |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
98 /* Return a Lisp character whose character code is C. */ |
88363 | 99 #define make_char(c) make_number (c) |
100 | |
101 /* Nonzero iff C is an ASCII byte. */ | |
102 #define ASCII_BYTE_P(c) ((unsigned) (c) < 0x80) | |
103 | |
104 /* Nonzero iff X is a character. */ | |
105 #define CHARACTERP(x) (NATNUMP (x) && XFASTINT (x) <= MAX_CHAR) | |
106 | |
88832 | 107 /* 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
|
108 now. */ |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
109 #define CHAR_VALID_P(c, genericp) ((unsigned) (c) <= MAX_CHAR) |
88363 | 110 |
111 /* Check if Lisp object X is a character or not. */ | |
112 #define CHECK_CHARACTER(x) \ | |
113 do { \ | |
114 if (! CHARACTERP(x)) x = wrong_type_argument (Qcharacterp, (x)); \ | |
115 } while (0) | |
116 | |
89483 | 117 #define CHECK_CHARACTER_CAR(x) \ |
118 do { \ | |
119 Lisp_Object tmp = XCAR (x); \ | |
120 CHECK_CHARACTER (tmp); \ | |
121 XSETCAR ((x), tmp); \ | |
122 } while (0) | |
123 | |
124 #define CHECK_CHARACTER_CDR(x) \ | |
125 do { \ | |
126 Lisp_Object tmp = XCDR (x); \ | |
127 CHECK_CHARACTER (tmp); \ | |
128 XSETCDR ((x), tmp); \ | |
129 } while (0) | |
130 | |
88363 | 131 /* Nonzero iff C is an ASCII character. */ |
132 #define ASCII_CHAR_P(c) ((unsigned) (c) < 0x80) | |
133 | |
134 /* Nonzero iff C is a character of code less than 0x100. */ | |
135 #define SINGLE_BYTE_CHAR_P(c) ((unsigned) (c) < 0x100) | |
136 | |
137 /* Nonzero if character C has a printable glyph. */ | |
138 #define CHAR_PRINTABLE_P(c) \ | |
139 (((c) >= 32 && ((c) < 127) \ | |
140 || ! NILP (CHAR_TABLE_REF (Vprintable_chars, (c))))) | |
141 | |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
142 /* Return byte length of multibyte form for character C. */ |
88363 | 143 #define CHAR_BYTES(c) \ |
144 ( (c) <= MAX_1_BYTE_CHAR ? 1 \ | |
145 : (c) <= MAX_2_BYTE_CHAR ? 2 \ | |
146 : (c) <= MAX_3_BYTE_CHAR ? 3 \ | |
147 : (c) <= MAX_4_BYTE_CHAR ? 4 \ | |
148 : (c) <= MAX_5_BYTE_CHAR ? 5 \ | |
149 : 2) | |
150 | |
89053
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
151 |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
152 /* Return the leading code of multibyte form of C. */ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
153 #define CHAR_LEADING_CODE(c) \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
154 ((c) <= MAX_1_BYTE_CHAR ? c \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
155 : (c) <= MAX_2_BYTE_CHAR ? (0xC0 | ((c) >> 6)) \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
156 : (c) <= MAX_3_BYTE_CHAR ? (0xE0 | ((c) >> 12)) \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
157 : (c) <= MAX_4_BYTE_CHAR ? (0xF0 | ((c) >> 18)) \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
158 : (c) <= MAX_5_BYTE_CHAR ? 0xF8 \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
159 : (0xC0 | (((c) >> 6) & 0x01))) |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
160 |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
161 |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
162 /* 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
|
163 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
|
164 Returns the length of the multibyte form. */ |
88363 | 165 |
166 #define CHAR_STRING(c, p) \ | |
167 ((unsigned) (c) <= MAX_1_BYTE_CHAR \ | |
168 ? ((p)[0] = (c), \ | |
169 1) \ | |
170 : (unsigned) (c) <= MAX_2_BYTE_CHAR \ | |
171 ? ((p)[0] = (0xC0 | ((c) >> 6)), \ | |
172 (p)[1] = (0x80 | ((c) & 0x3F)), \ | |
173 2) \ | |
174 : (unsigned) (c) <= MAX_3_BYTE_CHAR \ | |
175 ? ((p)[0] = (0xE0 | ((c) >> 12)), \ | |
176 (p)[1] = (0x80 | (((c) >> 6) & 0x3F)), \ | |
177 (p)[2] = (0x80 | ((c) & 0x3F)), \ | |
178 3) \ | |
89180
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
179 : char_string (c, p)) |
88363 | 180 |
89180
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
181 /* Store multibyte form of byte B in P. The caller should allocate at |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
182 least MAX_MULTIBYTE_LENGTH bytes area at P in advance. Returns the |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
183 length of the multibyte form. */ |
89038
f60ed671d6e4
(BYTE8_STRING): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89018
diff
changeset
|
184 |
f60ed671d6e4
(BYTE8_STRING): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89018
diff
changeset
|
185 #define BYTE8_STRING(b, p) \ |
f60ed671d6e4
(BYTE8_STRING): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89018
diff
changeset
|
186 ((p)[0] = (0xC0 | (((b) >> 6) & 0x01)), \ |
f60ed671d6e4
(BYTE8_STRING): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89018
diff
changeset
|
187 (p)[1] = (0x80 | ((c) & 0x3F)), \ |
f60ed671d6e4
(BYTE8_STRING): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89018
diff
changeset
|
188 2) |
f60ed671d6e4
(BYTE8_STRING): New macro.
Kenichi Handa <handa@m17n.org>
parents:
89018
diff
changeset
|
189 |
88363 | 190 |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
191 /* 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
|
192 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
|
193 And, advance P to the end of the multibyte form. */ |
88363 | 194 |
89180
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
195 #define CHAR_STRING_ADVANCE(c, p) \ |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
196 do { \ |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
197 if ((c) <= MAX_1_BYTE_CHAR) \ |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
198 *(p)++ = (c); \ |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
199 else if ((c) <= MAX_2_BYTE_CHAR) \ |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
200 *(p)++ = (0xC0 | ((c) >> 6)), \ |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
201 *(p)++ = (0x80 | ((c) & 0x3F)); \ |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
202 else if ((c) <= MAX_3_BYTE_CHAR) \ |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
203 *(p)++ = (0xE0 | ((c) >> 12)), \ |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
204 *(p)++ = (0x80 | (((c) >> 6) & 0x3F)), \ |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
205 *(p)++ = (0x80 | ((c) & 0x3F)); \ |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
206 else \ |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
207 (p) += char_string ((c), (p)); \ |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
208 } while (0) |
88363 | 209 |
89180
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
210 |
88363 | 211 /* Nonzero iff BYTE starts a non-ASCII character in a multibyte |
212 form. */ | |
213 #define LEADING_CODE_P(byte) (((byte) & 0xC0) == 0xC0) | |
214 | |
88873
7d441bc35e9b
(TRAILING_CODE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88832
diff
changeset
|
215 /* 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
|
216 multibyte form. */ |
7d441bc35e9b
(TRAILING_CODE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88832
diff
changeset
|
217 #define TRAILING_CODE_P(byte) (((byte) & 0xC0) == 0x80) |
7d441bc35e9b
(TRAILING_CODE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88832
diff
changeset
|
218 |
88428
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
219 /* 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
|
220 This is equivalent to: |
5eaa8c11ab45
(CHAR_VALID_P): Don't call CHARACTERP.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
221 (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
|
222 #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
|
223 |
88363 | 224 /* Just kept for backward compatibility. This macro will be removed |
225 in the future. */ | |
226 #define BASE_LEADING_CODE_P LEADING_CODE_P | |
227 | |
228 /* How many bytes a character that starts with BYTE occupies in a | |
229 multibyte form. */ | |
230 #define BYTES_BY_CHAR_HEAD(byte) \ | |
231 (!((byte) & 0x80) ? 1 \ | |
232 : !((byte) & 0x20) ? 2 \ | |
233 : !((byte) & 0x10) ? 3 \ | |
234 : !((byte) & 0x08) ? 4 \ | |
235 : 5) | |
236 | |
237 | |
238 /* Return the length of the multi-byte form at string STR of length | |
239 LEN while assuming that STR points a valid multi-byte form. As | |
240 this macro isn't necessary anymore, all callers will be changed to | |
241 use BYTES_BY_CHAR_HEAD directly in the future. */ | |
242 | |
243 #define MULTIBYTE_FORM_LENGTH(str, len) \ | |
244 BYTES_BY_CHAR_HEAD (*(str)) | |
245 | |
246 /* Parse multibyte string STR of length LENGTH and set BYTES to the | |
247 byte length of a character at STR while assuming that STR points a | |
248 valid multibyte form. As this macro isn't necessary anymore, all | |
249 callers will be changed to use BYTES_BY_CHAR_HEAD directly in the | |
250 future. */ | |
251 | |
252 #define PARSE_MULTIBYTE_SEQ(str, length, bytes) \ | |
253 (bytes) = BYTES_BY_CHAR_HEAD (*(str)) | |
254 | |
255 /* The byte length of multibyte form at unibyte string P ending at | |
256 PEND. If STR doesn't point a valid multibyte form, return 0. */ | |
257 | |
258 #define MULTIBYTE_LENGTH(p, pend) \ | |
259 (p >= pend ? 0 \ | |
260 : !((p)[0] & 0x80) ? 1 \ | |
261 : ((p + 1 >= pend) || (((p)[1] & 0xC0) != 0x80)) ? 0 \ | |
262 : ((p)[0] & 0xE0) == 0xC0 ? 2 \ | |
263 : ((p + 2 >= pend) || (((p)[2] & 0xC0) != 0x80)) ? 0 \ | |
264 : ((p)[0] & 0xF0) == 0xE0 ? 3 \ | |
265 : ((p + 3 >= pend) || (((p)[3] & 0xC0) != 0x80)) ? 0 \ | |
266 : ((p)[0] & 0xF8) == 0xF0 ? 4 \ | |
267 : ((p + 4 >= pend) || (((p)[4] & 0xC0) != 0x80)) ? 0 \ | |
268 : (p)[0] == 0xF8 && ((p)[1] & 0xF0) == 0x80 ? 5 \ | |
269 : 0) | |
270 | |
271 | |
272 /* Like MULTIBYTE_LENGTH but don't check the ending address. */ | |
273 | |
274 #define MULTIBYTE_LENGTH_NO_CHECK(p) \ | |
275 (!((p)[0] & 0x80) ? 1 \ | |
276 : ((p)[1] & 0xC0) != 0x80 ? 0 \ | |
277 : ((p)[0] & 0xE0) == 0xC0 ? 2 \ | |
278 : ((p)[2] & 0xC0) != 0x80 ? 0 \ | |
279 : ((p)[0] & 0xF0) == 0xE0 ? 3 \ | |
280 : ((p)[3] & 0xC0) != 0x80 ? 0 \ | |
281 : ((p)[0] & 0xF8) == 0xF0 ? 4 \ | |
282 : ((p)[4] & 0xC0) != 0x80 ? 0 \ | |
283 : (p)[0] == 0xF8 && ((p)[1] & 0xF0) == 0x80 ? 5 \ | |
284 : 0) | |
285 | |
89483 | 286 /* If P is before LIMIT, advance P to the next character boundary. It |
287 assumes that P is already at a character boundary of the sane | |
288 mulitbyte form whose end address is LIMIT. */ | |
289 | |
290 #define NEXT_CHAR_BOUNDARY(p, limit) \ | |
291 do { \ | |
292 if ((p) < (limit)) \ | |
293 (p) += BYTES_BY_CHAR_HEAD (*(p)); \ | |
294 } while (0) | |
295 | |
296 | |
297 /* If P is after LIMIT, advance P to the previous character boundary. | |
298 It assumes that P is already at a character boundary of the sane | |
299 mulitbyte form whose beginning address is LIMIT. */ | |
300 | |
301 #define PREV_CHAR_BOUNDARY(p, limit) \ | |
302 do { \ | |
303 if ((p) > (limit)) \ | |
304 { \ | |
305 const unsigned char *p0 = (p); \ | |
306 do { \ | |
307 p0--; \ | |
308 } while (p0 >= limit && ! CHAR_HEAD_P (*p0)); \ | |
309 (p) = (BYTES_BY_CHAR_HEAD (*p0) == (p) - p0) ? p0 : (p) - 1; \ | |
310 } \ | |
311 } while (0) | |
88363 | 312 |
313 /* Return the character code of character whose multibyte form is at | |
314 P. The argument LEN is ignored. It will be removed in the | |
315 future. */ | |
316 | |
317 #define STRING_CHAR(p, len) \ | |
318 (!((p)[0] & 0x80) \ | |
319 ? (p)[0] \ | |
320 : ! ((p)[0] & 0x20) \ | |
321 ? (((((p)[0] & 0x1F) << 6) \ | |
322 | ((p)[1] & 0x3F)) \ | |
323 + (((unsigned char) (p)[0]) < 0xC2 ? 0x3FFF80 : 0)) \ | |
324 : ! ((p)[0] & 0x10) \ | |
325 ? ((((p)[0] & 0x0F) << 12) \ | |
326 | (((p)[1] & 0x3F) << 6) \ | |
327 | ((p)[2] & 0x3F)) \ | |
89180
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
328 : string_char ((p), NULL, NULL)) |
88363 | 329 |
330 | |
331 /* Like STRING_CHAR but set ACTUAL_LEN to the length of multibyte | |
332 form. The argument LEN is ignored. It will be removed in the | |
333 future. */ | |
334 | |
335 #define STRING_CHAR_AND_LENGTH(p, len, actual_len) \ | |
336 (!((p)[0] & 0x80) \ | |
337 ? ((actual_len) = 1, (p)[0]) \ | |
338 : ! ((p)[0] & 0x20) \ | |
339 ? ((actual_len) = 2, \ | |
340 (((((p)[0] & 0x1F) << 6) \ | |
341 | ((p)[1] & 0x3F)) \ | |
342 + (((unsigned char) (p)[0]) < 0xC2 ? 0x3FFF80 : 0))) \ | |
343 : ! ((p)[0] & 0x10) \ | |
344 ? ((actual_len) = 3, \ | |
345 ((((p)[0] & 0x0F) << 12) \ | |
346 | (((p)[1] & 0x3F) << 6) \ | |
347 | ((p)[2] & 0x3F))) \ | |
89180
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
348 : string_char ((p), NULL, &actual_len)) |
88363 | 349 |
350 | |
351 /* Like STRING_CHAR but advacen P to the end of multibyte form. */ | |
352 | |
353 #define STRING_CHAR_ADVANCE(p) \ | |
354 (!((p)[0] & 0x80) \ | |
355 ? *(p)++ \ | |
356 : ! ((p)[0] & 0x20) \ | |
357 ? ((p) += 2, \ | |
358 ((((p)[-2] & 0x1F) << 6) \ | |
359 | ((p)[-1] & 0x3F) \ | |
89483 | 360 | ((unsigned char) ((p)[-2]) < 0xC2 ? 0x3FFF80 : 0))) \ |
88363 | 361 : ! ((p)[0] & 0x10) \ |
362 ? ((p) += 3, \ | |
363 ((((p)[-3] & 0x0F) << 12) \ | |
364 | (((p)[-2] & 0x3F) << 6) \ | |
365 | ((p)[-1] & 0x3F))) \ | |
89180
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
366 : string_char ((p), &(p), NULL)) |
88363 | 367 |
368 | |
369 /* Fetch the "next" character from Lisp string STRING at byte position | |
370 BYTEIDX, character position CHARIDX. Store it into OUTPUT. | |
371 | |
372 All the args must be side-effect-free. | |
373 BYTEIDX and CHARIDX must be lvalues; | |
374 we increment them past the character fetched. */ | |
375 | |
376 #define FETCH_STRING_CHAR_ADVANCE(OUTPUT, STRING, CHARIDX, BYTEIDX) \ | |
377 if (1) \ | |
378 { \ | |
379 CHARIDX++; \ | |
380 if (STRING_MULTIBYTE (STRING)) \ | |
381 { \ | |
382 unsigned char *ptr = &XSTRING (STRING)->data[BYTEIDX]; \ | |
383 int len; \ | |
384 \ | |
385 OUTPUT = STRING_CHAR_AND_LENGTH (ptr, 0, len); \ | |
386 BYTEIDX += len; \ | |
387 } \ | |
388 else \ | |
389 OUTPUT = XSTRING (STRING)->data[BYTEIDX++]; \ | |
390 } \ | |
391 else | |
392 | |
89053
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
393 /* Like FETCH_STRING_CHAR_ADVANCE */ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
394 |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
395 #define FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE(OUTPUT, STRING, CHARIDX, BYTEIDX) \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
396 if (1) \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
397 { \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
398 CHARIDX++; \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
399 if (STRING_MULTIBYTE (STRING)) \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
400 { \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
401 unsigned char *ptr = &XSTRING (STRING)->data[BYTEIDX]; \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
402 int len; \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
403 \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
404 OUTPUT = STRING_CHAR_AND_LENGTH (ptr, 0, len); \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
405 BYTEIDX += len; \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
406 } \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
407 else \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
408 { \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
409 OUTPUT = XSTRING (STRING)->data[BYTEIDX++]; \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
410 MAKE_CHAR_MULTIBYTE (OUTPUT); \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
411 } \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
412 } \ |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
413 else |
06a2cbbeaee9
(LEADING_CODE_LATIN_1_MIN)
Kenichi Handa <handa@m17n.org>
parents:
89038
diff
changeset
|
414 |
88363 | 415 |
416 /* Like FETCH_STRING_CHAR_ADVANCE but assumes STRING is multibyte. */ | |
417 | |
418 #define FETCH_STRING_CHAR_ADVANCE_NO_CHECK(OUTPUT, STRING, CHARIDX, BYTEIDX) \ | |
419 if (1) \ | |
420 { \ | |
421 unsigned char *ptr = &XSTRING (STRING)->data[BYTEIDX]; \ | |
422 int len; \ | |
423 \ | |
424 OUTPUT = STRING_CHAR_AND_LENGTH (ptr, 0, len); \ | |
425 BYTEIDX += len; \ | |
426 CHARIDX++; \ | |
427 } \ | |
428 else | |
429 | |
430 | |
431 /* Like FETCH_STRING_CHAR_ADVANCE but fetch character from the current | |
432 buffer. */ | |
433 | |
434 #define FETCH_CHAR_ADVANCE(OUTPUT, CHARIDX, BYTEIDX) \ | |
435 if (1) \ | |
436 { \ | |
437 CHARIDX++; \ | |
438 if (!NILP (current_buffer->enable_multibyte_characters)) \ | |
439 { \ | |
440 unsigned char *ptr = BYTE_POS_ADDR (BYTEIDX); \ | |
441 int len; \ | |
442 \ | |
443 OUTPUT= STRING_CHAR_AND_LENGTH (ptr, 0, len); \ | |
444 BYTEIDX += len; \ | |
445 } \ | |
446 else \ | |
447 { \ | |
448 OUTPUT = *(BYTE_POS_ADDR (BYTEIDX)); \ | |
449 BYTEIDX++; \ | |
450 } \ | |
451 } \ | |
452 else | |
453 | |
454 | |
455 /* Like FETCH_CHAR_ADVANCE but assumes STRING is multibyte. */ | |
456 | |
457 #define FETCH_CHAR_ADVANCE_NO_CHECK(OUTPUT, CHARIDX, BYTEIDX) \ | |
458 if (1) \ | |
459 { \ | |
460 unsigned char *ptr = BYTE_POS_ADDR (BYTEIDX); \ | |
461 int len; \ | |
462 \ | |
463 OUTPUT= STRING_CHAR_AND_LENGTH (ptr, 0, len); \ | |
464 BYTEIDX += len; \ | |
465 CHARIDX++; \ | |
466 } \ | |
467 else | |
468 | |
469 | |
470 /* Increase the buffer byte position POS_BYTE of the current buffer to | |
471 the next character boundary. No range checking of POS. */ | |
472 | |
473 #define INC_POS(pos_byte) \ | |
474 do { \ | |
475 unsigned char *p = BYTE_POS_ADDR (pos_byte); \ | |
476 pos_byte += BYTES_BY_CHAR_HEAD (*p); \ | |
477 } while (0) | |
478 | |
479 | |
480 /* Decrease the buffer byte position POS_BYTE of the current buffer to | |
481 the previous character boundary. No range checking of POS. */ | |
482 | |
483 #define DEC_POS(pos_byte) \ | |
484 do { \ | |
485 unsigned char *p; \ | |
486 \ | |
487 pos_byte--; \ | |
488 if (pos_byte < GPT_BYTE) \ | |
489 p = BEG_ADDR + pos_byte - 1; \ | |
490 else \ | |
491 p = BEG_ADDR + GAP_SIZE + pos_byte - 1; \ | |
492 while (!CHAR_HEAD_P (*p)) \ | |
493 { \ | |
494 p--; \ | |
495 pos_byte--; \ | |
496 } \ | |
497 } while (0) | |
498 | |
499 /* Increment both CHARPOS and BYTEPOS, each in the appropriate way. */ | |
500 | |
501 #define INC_BOTH(charpos, bytepos) \ | |
502 do \ | |
503 { \ | |
504 (charpos)++; \ | |
505 if (NILP (current_buffer->enable_multibyte_characters)) \ | |
506 (bytepos)++; \ | |
507 else \ | |
508 INC_POS ((bytepos)); \ | |
509 } \ | |
510 while (0) | |
511 | |
512 | |
513 /* Decrement both CHARPOS and BYTEPOS, each in the appropriate way. */ | |
514 | |
515 #define DEC_BOTH(charpos, bytepos) \ | |
516 do \ | |
517 { \ | |
518 (charpos)--; \ | |
519 if (NILP (current_buffer->enable_multibyte_characters)) \ | |
520 (bytepos)--; \ | |
521 else \ | |
522 DEC_POS ((bytepos)); \ | |
523 } \ | |
524 while (0) | |
525 | |
526 | |
527 /* Increase the buffer byte position POS_BYTE of the current buffer to | |
528 the next character boundary. This macro relies on the fact that | |
529 *GPT_ADDR and *Z_ADDR are always accessible and the values are | |
530 '\0'. No range checking of POS_BYTE. */ | |
531 | |
532 #define BUF_INC_POS(buf, pos_byte) \ | |
533 do { \ | |
534 unsigned char *p = BUF_BYTE_ADDRESS (buf, pos_byte); \ | |
535 pos_byte += BYTES_BY_CHAR_HEAD (*p); \ | |
536 } while (0) | |
537 | |
538 | |
539 /* Decrease the buffer byte position POS_BYTE of the current buffer to | |
540 the previous character boundary. No range checking of POS_BYTE. */ | |
541 | |
542 #define BUF_DEC_POS(buf, pos_byte) \ | |
543 do { \ | |
544 unsigned char *p; \ | |
545 pos_byte--; \ | |
546 if (pos_byte < BUF_GPT_BYTE (buf)) \ | |
547 p = BUF_BEG_ADDR (buf) + pos_byte - 1; \ | |
548 else \ | |
549 p = BUF_BEG_ADDR (buf) + BUF_GAP_SIZE (buf) + pos_byte - 1; \ | |
550 while (!CHAR_HEAD_P (*p)) \ | |
551 { \ | |
552 p--; \ | |
553 pos_byte--; \ | |
554 } \ | |
555 } while (0) | |
556 | |
557 | |
88742
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
558 #define MAYBE_UNIFY_CHAR(c) \ |
89180
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
559 if (c > MAX_UNICODE_CHAR \ |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
560 && CHAR_TABLE_P (Vchar_unify_table)) \ |
88742
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
561 { \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
562 Lisp_Object val; \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
563 int unified; \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
564 \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
565 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
|
566 if (! NILP (val)) \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
567 { \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
568 if (SYMBOLP (val)) \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
569 { \ |
88873
7d441bc35e9b
(TRAILING_CODE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88832
diff
changeset
|
570 Funify_charset (val, Qnil, Qnil); \ |
88742
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
571 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
|
572 } \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
573 if ((unified = XINT (val)) >= 0) \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
574 c = unified; \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
575 } \ |
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
576 } \ |
88363 | 577 else |
578 | |
88742
55e36a0cf0ee
(MAYBE_UNIFY_CHAR): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
88545
diff
changeset
|
579 |
88363 | 580 /* Return the width of ASCII character C. The width is measured by |
581 how many columns occupied on the screen when displayed in the | |
582 current buffer. */ | |
583 | |
584 #define ASCII_CHAR_WIDTH(c) \ | |
585 (c < 0x20 \ | |
586 ? (c == '\t' \ | |
587 ? XFASTINT (current_buffer->tab_width) \ | |
588 : (c == '\n' ? 0 : (NILP (current_buffer->ctl_arrow) ? 4 : 2))) \ | |
589 : (c < 0x7f \ | |
590 ? 1 \ | |
591 : ((NILP (current_buffer->ctl_arrow) ? 4 : 2)))) | |
592 | |
593 /* Return the width of character C. The width is measured by how many | |
594 columns occupied on the screen when displayed in the current | |
595 buffer. */ | |
596 | |
597 #define CHAR_WIDTH(c) \ | |
598 (ASCII_CHAR_P (c) \ | |
599 ? ASCII_CHAR_WIDTH (c) \ | |
600 : XINT (CHAR_TABLE_REF (Vchar_width_table, c))) | |
601 | |
89180
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
602 extern int char_resolve_modifier_mask P_ ((int)); |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
603 extern int char_string P_ ((int, unsigned char *)); |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
604 extern int string_char P_ ((const unsigned char *, |
1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
Kenichi Handa <handa@m17n.org>
parents:
89053
diff
changeset
|
605 const unsigned char **, int *)); |
88363 | 606 |
607 extern int translate_char P_ ((Lisp_Object, int c)); | |
608 extern int char_printable_p P_ ((int c)); | |
89483 | 609 extern void parse_str_as_multibyte P_ ((const unsigned char *, int, int *, |
610 int *)); | |
88363 | 611 extern int parse_str_to_multibyte P_ ((unsigned char *, int)); |
612 extern int str_as_multibyte P_ ((unsigned char *, int, int, int *)); | |
613 extern int str_to_multibyte P_ ((unsigned char *, int, int)); | |
614 extern int str_as_unibyte P_ ((unsigned char *, int)); | |
615 extern int strwidth P_ ((unsigned char *, int)); | |
89483 | 616 extern int c_string_width P_ ((const unsigned char *, int, int, int *, int *)); |
88363 | 617 extern int lisp_string_width P_ ((Lisp_Object, int, int *, int *)); |
618 | |
619 extern Lisp_Object Vprintable_chars; | |
620 | |
621 extern Lisp_Object Qcharacterp, Qauto_fill_chars; | |
622 extern Lisp_Object Vtranslation_table_vector; | |
623 extern Lisp_Object Vchar_width_table; | |
624 extern Lisp_Object Vchar_direction_table; | |
625 extern Lisp_Object Vchar_unify_table; | |
626 | |
88545 | 627 extern Lisp_Object string_escape_byte8 P_ ((Lisp_Object)); |
628 | |
88363 | 629 /* Return a translation table of id number ID. */ |
630 #define GET_TRANSLATION_TABLE(id) \ | |
631 (XCDR(XVECTOR(Vtranslation_table_vector)->contents[(id)])) | |
632 | |
633 /* A char-table for characters which may invoke auto-filling. */ | |
634 extern Lisp_Object Vauto_fill_chars; | |
635 | |
88915
94184802d0cc
(Vchar_script_table): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
88873
diff
changeset
|
636 extern Lisp_Object Vchar_script_table; |
88873
7d441bc35e9b
(TRAILING_CODE_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
88832
diff
changeset
|
637 |
88363 | 638 /* Copy LEN bytes from FROM to TO. This macro should be used only |
639 when a caller knows that LEN is short and the obvious copy loop is | |
640 faster than calling bcopy which has some overhead. Copying a | |
641 multibyte sequence of a character is the typical case. */ | |
642 | |
643 #define BCOPY_SHORT(from, to, len) \ | |
644 do { \ | |
645 int i = len; \ | |
646 unsigned char *from_p = from, *to_p = to; \ | |
647 while (i--) *to_p++ = *from_p++; \ | |
648 } while (0) | |
649 | |
650 #define DEFSYM(sym, name) \ | |
651 do { (sym) = intern ((name)); staticpro (&(sym)); } while (0) | |
652 | |
653 #endif /* EMACS_CHARACTER_H */ |