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