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