Mercurial > emacs
annotate src/charset.h @ 27207:e87656cfaac5
Mention Autotype.
paragraph-indent-minor-mode.
author | Dave Love <fx@gnu.org> |
---|---|
date | Wed, 05 Jan 2000 23:02:56 +0000 |
parents | 85c7cda1975f |
children | d2e19a90c9ef |
rev | line source |
---|---|
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
1 /* Header for multibyte character handler. |
20708 | 2 Copyright (C) 1995, 1997, 1998 Electrotechnical Laboratory, JAPAN. |
18341
33e78cc7f058
Change copyright notices.
Richard M. Stallman <rms@gnu.org>
parents:
17833
diff
changeset
|
3 Licensed to the Free Software Foundation. |
17052 | 4 |
17071 | 5 This file is part of GNU Emacs. |
6 | |
7 GNU Emacs is free software; you can redistribute it and/or modify | |
8 it under the terms of the GNU General Public License as published by | |
9 the Free Software Foundation; either version 2, or (at your option) | |
10 any later version. | |
17052 | 11 |
17071 | 12 GNU Emacs is distributed in the hope that it will be useful, |
13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 GNU General Public License for more details. | |
17052 | 16 |
17071 | 17 You should have received a copy of the GNU General Public License |
18 along with GNU Emacs; see the file COPYING. If not, write to | |
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
20 Boston, MA 02111-1307, USA. */ | |
17052 | 21 |
22 #ifndef _CHARSET_H | |
23 #define _CHARSET_H | |
24 | |
25 /*** GENERAL NOTE on CHARACTER SET (CHARSET) *** | |
26 | |
27 A character set ("charset" hereafter) is a meaningful collection | |
28 (i.e. language, culture, functionality, etc) of characters. Emacs | |
29 handles multiple charsets at once. Each charset corresponds to one | |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
30 of ISO charsets. Emacs identifies a charset by a unique |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
31 identification number, whereas ISO identifies a charset by a triplet |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
32 of DIMENSION, CHARS and FINAL-CHAR. So, hereafter, just saying |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
33 "charset" means an identification number (integer value). |
17052 | 34 |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
35 The value range of charset is 0x00, 0x81..0xFE. There are four |
17052 | 36 kinds of charset depending on DIMENSION (1 or 2) and CHARS (94 or |
37 96). For instance, a charset of DIMENSION2_CHARS94 contains 94x94 | |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
38 characters. |
17052 | 39 |
40 Within Emacs Lisp, a charset is treated as a symbol which has a | |
41 property `charset'. The property value is a vector containing | |
42 various information about the charset. For readability of C codes, | |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
43 we use the following convention for C variable names: |
17052 | 44 charset_symbol: Emacs Lisp symbol of a charset |
45 charset_id: Emacs Lisp integer of an identification number of a charset | |
46 charset: C integer of an identification number of a charset | |
47 | |
48 Each charset (except for ASCII) is assigned a base leading-code | |
49 (range 0x80..0x9D). In addition, a charset of greater than 0xA0 | |
50 (whose base leading-code is 0x9A..0x9D) is assigned an extended | |
51 leading-code (range 0xA0..0xFE). In this case, each base | |
52 leading-code specify the allowable range of extended leading-code as | |
53 shown in the table below. A leading-code is used to represent a | |
54 character in Emacs' buffer and string. | |
55 | |
56 We call a charset which has extended leading-code as "private | |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
57 charset" because those are mainly for a charset which is not yet |
17052 | 58 registered by ISO. On the contrary, we call a charset which does |
59 not have extended leading-code as "official charset". | |
60 | |
61 --------------------------------------------------------------------------- | |
62 charset dimension base leading-code extended leading-code | |
63 --------------------------------------------------------------------------- | |
64 0x00 official dim1 -- none -- -- none -- | |
65 (ASCII) | |
66 0x01..0x7F --never used-- | |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
67 0x80 --never used-- |
17052 | 68 0x81..0x8F official dim1 same as charset -- none -- |
69 0x90..0x99 official dim2 same as charset -- none -- | |
70 0x9A..0x9F --never used-- | |
71 0xA0..0xDF private dim1 0x9A same as charset | |
72 of 1-column width | |
73 0xE0..0xEF private dim1 0x9B same as charset | |
74 of 2-column width | |
75 0xF0..0xF4 private dim2 0x9C same as charset | |
76 of 1-column width | |
77 0xF5..0xFE private dim2 0x9D same as charset | |
78 of 2-column width | |
79 0xFF --never used-- | |
80 --------------------------------------------------------------------------- | |
81 | |
82 */ | |
83 | |
84 /* Definition of special leading-codes. */ | |
85 /* Leading-code followed by extended leading-code. */ | |
86 #define LEADING_CODE_PRIVATE_11 0x9A /* for private DIMENSION1 of 1-column */ | |
87 #define LEADING_CODE_PRIVATE_12 0x9B /* for private DIMENSION1 of 2-column */ | |
88 #define LEADING_CODE_PRIVATE_21 0x9C /* for private DIMENSION2 of 1-column */ | |
19643
1defeafe575b
(LEADING_CODE_PRIVATE_22): Comment fixed.
Kenichi Handa <handa@m17n.org>
parents:
19319
diff
changeset
|
89 #define LEADING_CODE_PRIVATE_22 0x9D /* for private DIMENSION2 of 2-column */ |
17052 | 90 |
91 /* Extended leading-code. */ | |
92 /* Start of each extended leading-codes. */ | |
93 #define LEADING_CODE_EXT_11 0xA0 /* follows LEADING_CODE_PRIVATE_11 */ | |
94 #define LEADING_CODE_EXT_12 0xE0 /* follows LEADING_CODE_PRIVATE_12 */ | |
95 #define LEADING_CODE_EXT_21 0xF0 /* follows LEADING_CODE_PRIVATE_21 */ | |
96 #define LEADING_CODE_EXT_22 0xF5 /* follows LEADING_CODE_PRIVATE_22 */ | |
97 /* Maximum value of extended leading-codes. */ | |
98 #define LEADING_CODE_EXT_MAX 0xFE | |
99 | |
100 /* Definition of minimum/maximum charset of each DIMENSION. */ | |
101 #define MIN_CHARSET_OFFICIAL_DIMENSION1 0x81 | |
102 #define MAX_CHARSET_OFFICIAL_DIMENSION1 0x8F | |
103 #define MIN_CHARSET_OFFICIAL_DIMENSION2 0x90 | |
104 #define MAX_CHARSET_OFFICIAL_DIMENSION2 0x99 | |
105 #define MIN_CHARSET_PRIVATE_DIMENSION1 LEADING_CODE_EXT_11 | |
106 #define MIN_CHARSET_PRIVATE_DIMENSION2 LEADING_CODE_EXT_21 | |
107 | |
17185
0d5a1bae9d73
(MAX_CHARSET): Definition changed to the actual
Kenichi Handa <handa@m17n.org>
parents:
17120
diff
changeset
|
108 /* Maximum value of overall charset identification number. */ |
0d5a1bae9d73
(MAX_CHARSET): Definition changed to the actual
Kenichi Handa <handa@m17n.org>
parents:
17120
diff
changeset
|
109 #define MAX_CHARSET 0xFE |
0d5a1bae9d73
(MAX_CHARSET): Definition changed to the actual
Kenichi Handa <handa@m17n.org>
parents:
17120
diff
changeset
|
110 |
17052 | 111 /* Definition of special charsets. */ |
112 #define CHARSET_ASCII 0 | |
113 | |
114 extern int charset_ascii; /* ASCII */ | |
115 extern int charset_latin_iso8859_1; /* ISO8859-1 (Latin-1) */ | |
116 extern int charset_jisx0208_1978; /* JISX0208.1978 (Japanese Kanji old set) */ | |
117 extern int charset_jisx0208; /* JISX0208.1983 (Japanese Kanji) */ | |
118 extern int charset_katakana_jisx0201; /* JISX0201.Kana (Japanese Katakana) */ | |
119 extern int charset_latin_jisx0201; /* JISX0201.Roman (Japanese Roman) */ | |
120 extern int charset_big5_1; /* Big5 Level 1 (Chinese Traditional) */ | |
121 extern int charset_big5_2; /* Big5 Level 2 (Chinese Traditional) */ | |
122 | |
20531
f019e056ad9a
(CHAR_HEAD_P): Take char, not pointer, as arg.
Richard M. Stallman <rms@gnu.org>
parents:
20352
diff
changeset
|
123 /* Check if CH is the head of multi-byte form, i.e., |
f019e056ad9a
(CHAR_HEAD_P): Take char, not pointer, as arg.
Richard M. Stallman <rms@gnu.org>
parents:
20352
diff
changeset
|
124 an ASCII character or a base leading-code. */ |
f019e056ad9a
(CHAR_HEAD_P): Take char, not pointer, as arg.
Richard M. Stallman <rms@gnu.org>
parents:
20352
diff
changeset
|
125 #define CHAR_HEAD_P(ch) ((unsigned char) (ch) < 0xA0) |
17052 | 126 |
127 /*** GENERAL NOTE on CHARACTER REPRESENTATION *** | |
128 | |
129 At first, the term "character" or "char" is used for a multilingual | |
130 character (of course, including ASCII character), not for a byte in | |
131 computer memory. We use the term "code" or "byte" for the latter | |
132 case. | |
133 | |
134 A character is identified by charset and one or two POSITION-CODEs. | |
135 POSITION-CODE is the position of the character in the charset. A | |
136 character of DIMENSION1 charset has one POSITION-CODE: POSITION-CODE-1. | |
137 A character of DIMENSION2 charset has two POSITION-CODE: | |
138 POSITION-CODE-1 and POSITION-CODE-2. The code range of | |
139 POSITION-CODE is 0x20..0x7F. | |
140 | |
141 Emacs has two kinds of representation of a character: multi-byte | |
142 form (for buffer and string) and single-word form (for character | |
143 object in Emacs Lisp). The latter is called "character code" here | |
22529 | 144 after. Both representations encode the information of charset and |
17052 | 145 POSITION-CODE but in a different way (for instance, MSB of |
146 POSITION-CODE is set in multi-byte form). | |
147 | |
148 For details of multi-byte form, see the section "2. Emacs internal | |
149 format handlers" of `coding.c'. | |
150 | |
151 Emacs uses 19 bits for a character code. The bits are divided into | |
152 3 fields: FIELD1(5bits):FIELD2(7bits):FIELD3(7bits). | |
153 | |
154 A character code of DIMENSION1 character uses FIELD2 to hold charset | |
155 and FIELD3 to hold POSITION-CODE-1. A character code of DIMENSION2 | |
156 character uses FIELD1 to hold charset, FIELD2 and FIELD3 to hold | |
157 POSITION-CODE-1 and POSITION-CODE-2 respectively. | |
158 | |
159 More precisely... | |
160 | |
161 FIELD2 of DIMENSION1 character (except for ASCII) is "charset - 0x70". | |
162 This is to make all character codes except for ASCII greater than | |
163 256 (ASCII's FIELD2 is 0). So, the range of FIELD2 of DIMENSION1 | |
164 character is 0 or 0x11..0x7F. | |
165 | |
166 FIELD1 of DIMENSION2 character is "charset - 0x8F" for official | |
167 charset and "charset - 0xE0" for private charset. So, the range of | |
168 FIELD1 of DIMENSION2 character is 0x01..0x1E. | |
169 | |
170 ----------------------------------------------------------------------- | |
171 charset FIELD1 (5-bit) FIELD2 (7-bit) FIELD3 (7-bit) | |
172 ----------------------------------------------------------------------- | |
173 ASCII 0 0 POSITION-CODE-1 | |
174 DIMENSION1 0 charset - 0x70 POSITION-CODE-1 | |
175 DIMENSION2(o) charset - 0x8F POSITION-CODE-1 POSITION-CODE-2 | |
176 DIMENSION2(p) charset - 0xE0 POSITION-CODE-1 POSITION-CODE-2 | |
177 ----------------------------------------------------------------------- | |
178 "(o)": official, "(p)": private | |
179 ----------------------------------------------------------------------- | |
180 | |
181 */ | |
182 | |
183 /* Masks of each field of character code. */ | |
184 #define CHAR_FIELD1_MASK (0x1F << 14) | |
185 #define CHAR_FIELD2_MASK (0x7F << 7) | |
186 #define CHAR_FIELD3_MASK 0x7F | |
187 | |
188 /* Macros to access each field of character C. */ | |
189 #define CHAR_FIELD1(c) (((c) & CHAR_FIELD1_MASK) >> 14) | |
190 #define CHAR_FIELD2(c) (((c) & CHAR_FIELD2_MASK) >> 7) | |
191 #define CHAR_FIELD3(c) ((c) & CHAR_FIELD3_MASK) | |
192 | |
193 /* Minimum character code of character of each DIMENSION. */ | |
194 #define MIN_CHAR_OFFICIAL_DIMENSION1 \ | |
195 ((MIN_CHARSET_OFFICIAL_DIMENSION1 - 0x70) << 7) | |
196 #define MIN_CHAR_PRIVATE_DIMENSION1 \ | |
197 ((MIN_CHARSET_PRIVATE_DIMENSION1 - 0x70) << 7) | |
198 #define MIN_CHAR_OFFICIAL_DIMENSION2 \ | |
199 ((MIN_CHARSET_OFFICIAL_DIMENSION2 - 0x8F) << 14) | |
200 #define MIN_CHAR_PRIVATE_DIMENSION2 \ | |
201 ((MIN_CHARSET_PRIVATE_DIMENSION2 - 0xE0) << 14) | |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
202 /* Maximum character code currently used plus 1. */ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
203 #define MAX_CHAR (0x1F << 14) |
17052 | 204 |
205 /* 1 if C is an ASCII character, else 0. */ | |
23719
5802b0df4800
(SINGLE_BYTE_CHAR_P): Check if C is negative or not.
Kenichi Handa <handa@m17n.org>
parents:
23667
diff
changeset
|
206 #define SINGLE_BYTE_CHAR_P(c) ((c) >= 0 && (c) < 0x100) |
17052 | 207 |
20257 | 208 /* 1 if BYTE is a character in itself, in multibyte mode. */ |
209 #define ASCII_BYTE_P(byte) ((byte) < 0x80) | |
210 | |
17052 | 211 /* A char-table containing information of each character set. |
212 | |
213 Unlike ordinary char-tables, this doesn't contain any nested table. | |
214 Only the top level elements are used. Each element is a vector of | |
215 the following information: | |
216 CHARSET-ID, BYTES, DIMENSION, CHARS, WIDTH, DIRECTION, | |
217 LEADING-CODE-BASE, LEADING-CODE-EXT, | |
218 ISO-FINAL-CHAR, ISO-GRAPHIC-PLANE, | |
219 REVERSE-CHARSET, SHORT-NAME, LONG-NAME, DESCRIPTION, | |
220 PLIST. | |
221 | |
222 CHARSET-ID (integer) is the identification number of the charset. | |
223 | |
24779 | 224 BYTES (integer) is the length of multi-byte form of a character in |
17052 | 225 the charset: one of 1, 2, 3, and 4. |
226 | |
227 DIMENSION (integer) is the number of bytes to represent a character: 1 or 2. | |
228 | |
229 CHARS (integer) is the number of characters in a dimension: 94 or 96. | |
230 | |
231 WIDTH (integer) is the number of columns a character in the charset | |
232 occupies on the screen: one of 0, 1, and 2. | |
233 | |
234 DIRECTION (integer) is the rendering direction of characters in the | |
24777
d9d0dd9ebcb5
(Vcharset_table): Comment fixed.
Kenichi Handa <handa@m17n.org>
parents:
23882
diff
changeset
|
235 charset when rendering. If 0, render from left to right, else |
d9d0dd9ebcb5
(Vcharset_table): Comment fixed.
Kenichi Handa <handa@m17n.org>
parents:
23882
diff
changeset
|
236 render from right to left. |
17052 | 237 |
238 LEADING-CODE-BASE (integer) is the base leading-code for the | |
239 charset. | |
240 | |
241 LEADING-CODE-EXT (integer) is the extended leading-code for the | |
242 charset. All charsets of less than 0xA0 has the value 0. | |
243 | |
244 ISO-FINAL-CHAR (character) is the final character of the | |
245 corresponding ISO 2022 charset. | |
246 | |
247 ISO-GRAPHIC-PLANE (integer) is the graphic plane to be invoked | |
248 while encoding to variants of ISO 2022 coding system, one of the | |
249 following: 0/graphic-plane-left(GL), 1/graphic-plane-right(GR). | |
250 | |
251 REVERSE-CHARSET (integer) is the charset which differs only in | |
252 LEFT-TO-RIGHT value from the charset. If there's no such a | |
253 charset, the value is -1. | |
254 | |
255 SHORT-NAME (string) is the short name to refer to the charset. | |
256 | |
257 LONG-NAME (string) is the long name to refer to the charset. | |
258 | |
259 DESCRIPTION (string) is the description string of the charset. | |
260 | |
261 PLIST (property list) may contain any type of information a user | |
262 want to put and get by functions `put-charset-property' and | |
263 `get-charset-property' respectively. */ | |
264 extern Lisp_Object Vcharset_table; | |
265 | |
266 /* Macros to access various information of CHARSET in Vcharset_table. | |
267 We provide these macros for efficiency. No range check of CHARSET. */ | |
268 | |
269 /* Return entry of CHARSET (lisp integer) in Vcharset_table. */ | |
17321
9f837bea89e3
(CHARSET_TABLE_ENTRY): Handle ASCII charset correctly.
Kenichi Handa <handa@m17n.org>
parents:
17185
diff
changeset
|
270 #define CHARSET_TABLE_ENTRY(charset) \ |
9f837bea89e3
(CHARSET_TABLE_ENTRY): Handle ASCII charset correctly.
Kenichi Handa <handa@m17n.org>
parents:
17185
diff
changeset
|
271 XCHAR_TABLE (Vcharset_table)->contents[((charset) == CHARSET_ASCII \ |
9f837bea89e3
(CHARSET_TABLE_ENTRY): Handle ASCII charset correctly.
Kenichi Handa <handa@m17n.org>
parents:
17185
diff
changeset
|
272 ? 0 : (charset) + 128)] |
17052 | 273 |
274 /* Return information INFO-IDX of CHARSET. */ | |
275 #define CHARSET_TABLE_INFO(charset, info_idx) \ | |
276 XVECTOR (CHARSET_TABLE_ENTRY (charset))->contents[info_idx] | |
277 | |
278 #define CHARSET_ID_IDX (0) | |
279 #define CHARSET_BYTES_IDX (1) | |
280 #define CHARSET_DIMENSION_IDX (2) | |
281 #define CHARSET_CHARS_IDX (3) | |
282 #define CHARSET_WIDTH_IDX (4) | |
283 #define CHARSET_DIRECTION_IDX (5) | |
284 #define CHARSET_LEADING_CODE_BASE_IDX (6) | |
285 #define CHARSET_LEADING_CODE_EXT_IDX (7) | |
286 #define CHARSET_ISO_FINAL_CHAR_IDX (8) | |
287 #define CHARSET_ISO_GRAPHIC_PLANE_IDX (9) | |
288 #define CHARSET_REVERSE_CHARSET_IDX (10) | |
289 #define CHARSET_SHORT_NAME_IDX (11) | |
290 #define CHARSET_LONG_NAME_IDX (12) | |
291 #define CHARSET_DESCRIPTION_IDX (13) | |
292 #define CHARSET_PLIST_IDX (14) | |
293 /* Size of a vector of each entry of Vcharset_table. */ | |
294 #define CHARSET_MAX_IDX (15) | |
295 | |
296 /* And several more macros to be used frequently. */ | |
297 #define CHARSET_BYTES(charset) \ | |
298 XFASTINT (CHARSET_TABLE_INFO (charset, CHARSET_BYTES_IDX)) | |
299 #define CHARSET_DIMENSION(charset) \ | |
300 XFASTINT (CHARSET_TABLE_INFO (charset, CHARSET_DIMENSION_IDX)) | |
301 #define CHARSET_CHARS(charset) \ | |
302 XFASTINT (CHARSET_TABLE_INFO (charset, CHARSET_CHARS_IDX)) | |
303 #define CHARSET_WIDTH(charset) \ | |
304 XFASTINT (CHARSET_TABLE_INFO (charset, CHARSET_WIDTH_IDX)) | |
305 #define CHARSET_DIRECTION(charset) \ | |
306 XFASTINT (CHARSET_TABLE_INFO (charset, CHARSET_DIRECTION_IDX)) | |
307 #define CHARSET_LEADING_CODE_BASE(charset) \ | |
308 XFASTINT (CHARSET_TABLE_INFO (charset, CHARSET_LEADING_CODE_BASE_IDX)) | |
309 #define CHARSET_LEADING_CODE_EXT(charset) \ | |
310 XFASTINT (CHARSET_TABLE_INFO (charset, CHARSET_LEADING_CODE_EXT_IDX)) | |
311 #define CHARSET_ISO_FINAL_CHAR(charset) \ | |
312 XFASTINT (CHARSET_TABLE_INFO (charset, CHARSET_ISO_FINAL_CHAR_IDX)) | |
313 #define CHARSET_ISO_GRAPHIC_PLANE(charset) \ | |
314 XFASTINT (CHARSET_TABLE_INFO (charset, CHARSET_ISO_GRAPHIC_PLANE_IDX)) | |
315 #define CHARSET_REVERSE_CHARSET(charset) \ | |
316 XINT (CHARSET_TABLE_INFO (charset, CHARSET_REVERSE_CHARSET_IDX)) | |
317 | |
318 /* Macros to specify direction of a charset. */ | |
319 #define CHARSET_DIRECTION_LEFT_TO_RIGHT 0 | |
320 #define CHARSET_DIRECTION_RIGHT_TO_LEFT 1 | |
321 | |
322 /* A vector of charset symbol indexed by charset-id. This is used | |
323 only for returning charset symbol from C functions. */ | |
324 extern Lisp_Object Vcharset_symbol_table; | |
325 | |
326 /* Return symbol of CHARSET. */ | |
327 #define CHARSET_SYMBOL(charset) \ | |
328 XVECTOR (Vcharset_symbol_table)->contents[charset] | |
329 | |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
330 /* 1 if CHARSET is in valid value range, else 0. */ |
17052 | 331 #define CHARSET_VALID_P(charset) \ |
332 ((charset) == 0 \ | |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
333 || ((charset) > 0x80 && (charset) <= MAX_CHARSET_OFFICIAL_DIMENSION2) \ |
17185
0d5a1bae9d73
(MAX_CHARSET): Definition changed to the actual
Kenichi Handa <handa@m17n.org>
parents:
17120
diff
changeset
|
334 || ((charset) >= MIN_CHARSET_PRIVATE_DIMENSION1 && (charset) <= MAX_CHARSET)) |
17052 | 335 |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
336 /* 1 if CHARSET is already defined, else 0. */ |
17052 | 337 #define CHARSET_DEFINED_P(charset) \ |
17185
0d5a1bae9d73
(MAX_CHARSET): Definition changed to the actual
Kenichi Handa <handa@m17n.org>
parents:
17120
diff
changeset
|
338 (((charset) >= 0) && ((charset) <= MAX_CHARSET) \ |
17052 | 339 && !NILP (CHARSET_TABLE_ENTRY (charset))) |
340 | |
341 /* Since the information CHARSET-BYTES and CHARSET-WIDTH of | |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
342 Vcharset_table can be retrieved only the first byte of |
17052 | 343 multi-byte form (an ASCII code or a base leading-code), we provide |
344 here tables to be used by macros BYTES_BY_CHAR_HEAD and | |
345 WIDTH_BY_CHAR_HEAD for faster information retrieval. */ | |
346 extern int bytes_by_char_head[256]; | |
347 extern int width_by_char_head[256]; | |
348 | |
349 #define BYTES_BY_CHAR_HEAD(char_head) bytes_by_char_head[char_head] | |
350 #define WIDTH_BY_CHAR_HEAD(char_head) width_by_char_head[char_head] | |
351 | |
352 /* Charset of the character C. */ | |
353 #define CHAR_CHARSET(c) \ | |
354 (SINGLE_BYTE_CHAR_P (c) \ | |
355 ? CHARSET_ASCII \ | |
356 : ((c) < MIN_CHAR_OFFICIAL_DIMENSION2 \ | |
357 ? CHAR_FIELD2 (c) + 0x70 \ | |
358 : ((c) < MIN_CHAR_PRIVATE_DIMENSION2 \ | |
359 ? CHAR_FIELD1 (c) + 0x8F \ | |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
360 : CHAR_FIELD1 (c) + 0xE0))) |
17052 | 361 |
362 /* Return charset at the place pointed by P. */ | |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
363 #define CHARSET_AT(p) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
364 (*(p) < 0x80 \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
365 ? CHARSET_ASCII \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
366 : (*(p) < LEADING_CODE_PRIVATE_11 \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
367 ? (int)*(p) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
368 : (*(p) <= LEADING_CODE_PRIVATE_22 \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
369 ? (int)*((p) + 1) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
370 : -1))) |
17052 | 371 |
372 /* Same as `CHARSET_AT ()' but perhaps runs faster because of an | |
373 additional argument C which is the code (byte) at P. */ | |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
374 #define FIRST_CHARSET_AT(p, c) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
375 ((c) < 0x80 \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
376 ? CHARSET_ASCII \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
377 : ((c) < LEADING_CODE_PRIVATE_11 \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
378 ? (int)(c) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
379 : ((c) <= LEADING_CODE_PRIVATE_22 \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
380 ? (int)*((p) + 1) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
381 : -1))) |
17052 | 382 |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
383 /* Check if two characters C1 and C2 belong to the same charset. */ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
384 #define SAME_CHARSET_P(c1, c2) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
385 (SINGLE_BYTE_CHAR_P (c1) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
386 ? SINGLE_BYTE_CHAR_P (c2) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
387 : (c1 < MIN_CHAR_OFFICIAL_DIMENSION2 \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
388 ? (c1 & CHAR_FIELD2_MASK) == (c2 & CHAR_FIELD2_MASK) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
389 : (c1 & CHAR_FIELD1_MASK) == (c2 & CHAR_FIELD1_MASK))) |
17052 | 390 |
391 /* Return a non-ASCII character of which charset is CHARSET and | |
392 position-codes are C1 and C2. DIMENSION1 character ignores C2. */ | |
23648
06e645781762
(MAKE_NON_ASCII_CHAR): Check validity of CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
23488
diff
changeset
|
393 #define MAKE_NON_ASCII_CHAR(charset, c1, c2) \ |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
394 (! CHARSET_DEFINED_P (charset) || CHARSET_DIMENSION (charset) == 1 \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
395 ? (((charset) - 0x70) << 7) | ((c1) <= 0 ? 0 : (c1)) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
396 : ((charset) < MIN_CHARSET_PRIVATE_DIMENSION2 \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
397 ? ((((charset) - 0x8F) << 14) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
398 | ((c1) <= 0 ? 0 : ((c1) << 7)) | ((c2) <= 0 ? 0 : (c2))) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
399 : ((((charset) - 0xE0) << 14) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
400 | ((c1) <= 0 ? 0 : ((c1) << 7)) | ((c2) <= 0 ? 0 : (c2))))) |
17052 | 401 |
402 /* Return a character of which charset is CHARSET and position-codes | |
403 are C1 and C2. DIMENSION1 character ignores C2. */ | |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
404 #define MAKE_CHAR(charset, c1, c2) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
405 ((charset) == CHARSET_ASCII \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
406 ? (c1) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
407 : MAKE_NON_ASCII_CHAR ((charset), (c1), (c2))) |
17052 | 408 |
20151
82ca32c55fa3
(CHAR_VALID_P): Renamed from VALID_CHAR_P, new
Kenichi Handa <handa@m17n.org>
parents:
19643
diff
changeset
|
409 /* If GENERICP is nonzero, return nonzero iff C is a valid normal or |
82ca32c55fa3
(CHAR_VALID_P): Renamed from VALID_CHAR_P, new
Kenichi Handa <handa@m17n.org>
parents:
19643
diff
changeset
|
410 generic character. If GENERICP is zero, return nonzero iff C is a |
82ca32c55fa3
(CHAR_VALID_P): Renamed from VALID_CHAR_P, new
Kenichi Handa <handa@m17n.org>
parents:
19643
diff
changeset
|
411 valid normal character. */ |
82ca32c55fa3
(CHAR_VALID_P): Renamed from VALID_CHAR_P, new
Kenichi Handa <handa@m17n.org>
parents:
19643
diff
changeset
|
412 #define CHAR_VALID_P(c, genericp) \ |
82ca32c55fa3
(CHAR_VALID_P): Renamed from VALID_CHAR_P, new
Kenichi Handa <handa@m17n.org>
parents:
19643
diff
changeset
|
413 ((c) >= 0 \ |
82ca32c55fa3
(CHAR_VALID_P): Renamed from VALID_CHAR_P, new
Kenichi Handa <handa@m17n.org>
parents:
19643
diff
changeset
|
414 && (SINGLE_BYTE_CHAR_P (c) || char_valid_p (c, genericp))) |
17833
59aa4a0772f6
(VALID_CHAR_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
17726
diff
changeset
|
415 |
22184
003ac1231096
(STRING_CHAR_AND_CHAR_LENGTH): New macro.
Kenichi Handa <handa@m17n.org>
parents:
22167
diff
changeset
|
416 /* This default value is used when nonascii-translation-table or |
21033
9f32198e0d9f
(NONASCII_INSERT_OFFSET): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20932
diff
changeset
|
417 nonascii-insert-offset fail to convert unibyte character to a valid |
9f32198e0d9f
(NONASCII_INSERT_OFFSET): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20932
diff
changeset
|
418 multibyte character. This makes a Latin-1 character. */ |
9f32198e0d9f
(NONASCII_INSERT_OFFSET): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20932
diff
changeset
|
419 |
9f32198e0d9f
(NONASCII_INSERT_OFFSET): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20932
diff
changeset
|
420 #define DEFAULT_NONASCII_INSERT_OFFSET 0x800 |
9f32198e0d9f
(NONASCII_INSERT_OFFSET): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20932
diff
changeset
|
421 |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
422 /* Parse string STR of length LENGTH and check if a multibyte |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
423 characters is at STR. If so, set BYTES for that character, else |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
424 set BYTES to 1. */ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
425 |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
426 #define PARSE_MULTIBYTE_SEQ(str, length, bytes) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
427 do { \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
428 int i = 1; \ |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
429 while (i < (length) && ! CHAR_HEAD_P ((str)[i])) i++; \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
430 if (i == 1) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
431 (bytes) = 1; \ |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
432 else \ |
25583 | 433 { \ |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
434 (bytes) = BYTES_BY_CHAR_HEAD ((str)[0]); \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
435 if ((bytes) > (length)) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
436 (bytes) = (length); \ |
25583 | 437 } \ |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
438 } while (0) |
21033
9f32198e0d9f
(NONASCII_INSERT_OFFSET): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20932
diff
changeset
|
439 |
19319 | 440 /* The charset of non-ASCII character C is stored in CHARSET, and the |
441 position-codes of C are stored in C1 and C2. | |
442 We store -1 in C2 if the character is just 2 bytes. | |
443 | |
444 Do not use this macro for an ASCII character. */ | |
445 | |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
446 #define SPLIT_NON_ASCII_CHAR(c, charset, c1, c2) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
447 ((c) & CHAR_FIELD1_MASK \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
448 ? (charset = (CHAR_FIELD1 (c) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
449 + ((c) < MIN_CHAR_PRIVATE_DIMENSION2 ? 0x8F : 0xE0)), \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
450 c1 = CHAR_FIELD2 (c), \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
451 c2 = CHAR_FIELD3 (c)) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
452 : (charset = CHAR_FIELD2 (c) + 0x70, \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
453 c1 = CHAR_FIELD3 (c), \ |
23653
67907ea2c6ac
(SPLIT_NON_ASCII_CHAR): Check dimension of an invalid
Kenichi Handa <handa@m17n.org>
parents:
23648
diff
changeset
|
454 c2 = -1)) |
17052 | 455 |
19319 | 456 /* The charset of character C is stored in CHARSET, and the |
457 position-codes of C are stored in C1 and C2. | |
25583 | 458 We store -1 in C2 if the dimension of the charset is 1. */ |
19319 | 459 |
17052 | 460 #define SPLIT_CHAR(c, charset, c1, c2) \ |
461 (SINGLE_BYTE_CHAR_P (c) \ | |
17321
9f837bea89e3
(CHARSET_TABLE_ENTRY): Handle ASCII charset correctly.
Kenichi Handa <handa@m17n.org>
parents:
17185
diff
changeset
|
462 ? charset = CHARSET_ASCII, c1 = (c), c2 = -1 \ |
17052 | 463 : SPLIT_NON_ASCII_CHAR (c, charset, c1, c2)) |
464 | |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
465 /* Return 1 iff character C has valid printable glyph. */ |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
466 #define CHAR_PRINTABLE_P(c) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
467 (SINGLE_BYTE_CHAR_P (c) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
468 || char_printable_p (c)) |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
469 |
19319 | 470 /* The charset of the character at STR is stored in CHARSET, and the |
471 position-codes are stored in C1 and C2. | |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
472 We store -1 in C2 if the character is just 2 bytes. */ |
19319 | 473 |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
474 #define SPLIT_STRING(str, len, charset, c1, c2) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
475 ((BYTES_BY_CHAR_HEAD ((unsigned char) *(str)) < 2 \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
476 || BYTES_BY_CHAR_HEAD ((unsigned char) *(str)) > len \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
477 || split_string (str, len, &charset, &c1, &c2) < 0) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
478 ? c1 = *(str), charset = CHARSET_ASCII \ |
17052 | 479 : charset) |
480 | |
481 /* Mapping table from ISO2022's charset (specified by DIMENSION, | |
482 CHARS, and FINAL_CHAR) to Emacs' charset. Should be accessed by | |
483 macro ISO_CHARSET_TABLE (DIMENSION, CHARS, FINAL_CHAR). */ | |
484 extern int iso_charset_table[2][2][128]; | |
485 | |
486 #define ISO_CHARSET_TABLE(dimension, chars, final_char) \ | |
487 iso_charset_table[XINT (dimension) - 1][XINT (chars) > 94][XINT (final_char)] | |
488 | |
489 #define BASE_LEADING_CODE_P(c) (BYTES_BY_CHAR_HEAD ((unsigned char) (c)) > 1) | |
490 | |
23130 | 491 /* Return how many bytes C will occupy in a multibyte buffer. */ |
26995
85c7cda1975f
(CHAR_BYTES): Use ((1 << CHARACTERBITS) - 1) instead
Kenichi Handa <handa@m17n.org>
parents:
26843
diff
changeset
|
492 #define CHAR_BYTES(c) \ |
85c7cda1975f
(CHAR_BYTES): Use ((1 << CHARACTERBITS) - 1) instead
Kenichi Handa <handa@m17n.org>
parents:
26843
diff
changeset
|
493 ((SINGLE_BYTE_CHAR_P ((c)) || ((c) & ~((1 << CHARACTERBITS) - 1))) \ |
85c7cda1975f
(CHAR_BYTES): Use ((1 << CHARACTERBITS) - 1) instead
Kenichi Handa <handa@m17n.org>
parents:
26843
diff
changeset
|
494 ? 1 : char_bytes (c)) |
23130 | 495 |
17052 | 496 /* The following two macros CHAR_STRING and STRING_CHAR are the main |
497 entry points to convert between Emacs two types of character | |
498 representations: multi-byte form and single-word form (character | |
499 code). */ | |
500 | |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
501 /* Store multi-byte form of the character C in STR. The caller should |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
502 allocate at least 4-byte area at STR in advance. Returns the |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
503 length of the multi-byte form. If C is an invalid character code, |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
504 signal an error. */ |
17052 | 505 |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
506 #define CHAR_STRING(c, str) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
507 (SINGLE_BYTE_CHAR_P (c) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
508 ? *(str) = (unsigned char)(c), 1 \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
509 : char_to_string (c, (unsigned char *)str)) |
17052 | 510 |
511 /* Return a character code of the character of which multi-byte form | |
512 is at STR and the length is LEN. If STR doesn't contain valid | |
513 multi-byte form, only the first byte in STR is returned. */ | |
514 | |
23653
67907ea2c6ac
(SPLIT_NON_ASCII_CHAR): Check dimension of an invalid
Kenichi Handa <handa@m17n.org>
parents:
23648
diff
changeset
|
515 #define STRING_CHAR(str, len) \ |
67907ea2c6ac
(SPLIT_NON_ASCII_CHAR): Check dimension of an invalid
Kenichi Handa <handa@m17n.org>
parents:
23648
diff
changeset
|
516 (BYTES_BY_CHAR_HEAD ((unsigned char) *(str)) == 1 \ |
67907ea2c6ac
(SPLIT_NON_ASCII_CHAR): Check dimension of an invalid
Kenichi Handa <handa@m17n.org>
parents:
23648
diff
changeset
|
517 ? (unsigned char) *(str) \ |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
518 : string_to_char (str, len, 0)) |
17052 | 519 |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
520 /* This is like STRING_CHAR but the third arg ACTUAL_LEN is set to the |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
521 length of the multi-byte form. Just to know the length, use |
17052 | 522 MULTIBYTE_FORM_LENGTH. */ |
523 | |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
524 #define STRING_CHAR_AND_LENGTH(str, len, actual_len) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
525 (BYTES_BY_CHAR_HEAD ((unsigned char) *(str)) == 1 \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
526 ? ((actual_len) = 1), (unsigned char) *(str) \ |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
527 : string_to_char (str, len, &(actual_len))) |
22184
003ac1231096
(STRING_CHAR_AND_CHAR_LENGTH): New macro.
Kenichi Handa <handa@m17n.org>
parents:
22167
diff
changeset
|
528 |
20589
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
529 /* Fetch the "next" multibyte character from Lisp string STRING |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
530 at byte position BYTEIDX, character position CHARIDX. |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
531 Store it into OUTPUT. |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
532 |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
533 All the args must be side-effect-free. |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
534 BYTEIDX and CHARIDX must be lvalues; |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
535 we increment them past the character fetched. */ |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
536 |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
537 #define FETCH_STRING_CHAR_ADVANCE(OUTPUT, STRING, CHARIDX, BYTEIDX) \ |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
538 if (1) \ |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
539 { \ |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
540 unsigned char *fetch_string_char_ptr = &XSTRING (STRING)->data[BYTEIDX]; \ |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
541 int fetch_string_char_space_left = XSTRING (STRING)->size_byte - BYTEIDX; \ |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
542 int actual_len; \ |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
543 \ |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
544 OUTPUT \ |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
545 = STRING_CHAR_AND_LENGTH (fetch_string_char_ptr, \ |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
546 fetch_string_char_space_left, actual_len); \ |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
547 \ |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
548 BYTEIDX += actual_len; \ |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
549 CHARIDX++; \ |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
550 } \ |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
551 else |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
552 |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
553 /* Like FETCH_STRING_CHAR_SPACE_LEFT but fetch character from the |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
554 current buffer. */ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
555 |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
556 #define FETCH_CHAR_ADVANCE(OUTPUT, CHARIDX, BYTEIDX) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
557 if (1) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
558 { \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
559 unsigned char *fetch_buf_char_ptr = BYTE_POS_ADDR (BYTEIDX); \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
560 int fetch_buf_char_space_left = ((CHARIDX < GPT ? GPT_BYTE : Z_BYTE) \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
561 - BYTEIDX); \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
562 int actual_len; \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
563 \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
564 OUTPUT \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
565 = STRING_CHAR_AND_LENGTH (fetch_buf_char_ptr, \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
566 fetch_buf_char_space_left, actual_len); \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
567 \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
568 BYTEIDX += actual_len; \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
569 CHARIDX++; \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
570 } \ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
571 else |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
572 |
17052 | 573 /* Return the length of the multi-byte form at string STR of length LEN. */ |
574 | |
21444
0cba6f211d7c
(MULTIBYTE_FORM_LENGTH): Don't check LEN here.
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
575 #define MULTIBYTE_FORM_LENGTH(str, len) \ |
0cba6f211d7c
(MULTIBYTE_FORM_LENGTH): Don't check LEN here.
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
576 (BYTES_BY_CHAR_HEAD (*(unsigned char *)(str)) == 1 \ |
0cba6f211d7c
(MULTIBYTE_FORM_LENGTH): Don't check LEN here.
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
577 ? 1 \ |
17052 | 578 : multibyte_form_length (str, len)) |
579 | |
580 /* Set C a (possibly multibyte) character at P. P points into a | |
581 string which is the virtual concatenation of STR1 (which ends at | |
582 END1) or STR2 (which ends at END2). */ | |
583 | |
584 #define GET_CHAR_AFTER_2(c, p, str1, end1, str2, end2) \ | |
585 do { \ | |
586 const char *dtemp = (p) == (end1) ? (str2) : (p); \ | |
587 const char *dlimit = ((p) >= (str1) && (p) < (end1)) ? (end1) : (end2); \ | |
588 c = STRING_CHAR (dtemp, dlimit - dtemp); \ | |
589 } while (0) | |
590 | |
591 /* Set C a (possibly multibyte) character before P. P points into a | |
592 string which is the virtual concatenation of STR1 (which ends at | |
593 END1) or STR2 (which ends at END2). */ | |
594 | |
595 #define GET_CHAR_BEFORE_2(c, p, str1, end1, str2, end2) \ | |
596 do { \ | |
597 const char *dtemp = (p); \ | |
598 const char *dlimit = ((p) > (str2) && (p) <= (end2)) ? (str2) : (str1); \ | |
599 while (dtemp-- > dlimit && (unsigned char) *dtemp >= 0xA0); \ | |
600 c = STRING_CHAR (dtemp, p - dtemp); \ | |
601 } while (0) | |
602 | |
603 #ifdef emacs | |
604 | |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
605 /* Increase the buffer byte position POS_BYTE of the current buffer to |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
606 the next character boundary. This macro relies on the fact that |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
607 *GPT_ADDR and *Z_ADDR are always accessible and the values are |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
608 '\0'. No range checking of POS. */ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
609 #define INC_POS(pos_byte) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
610 do { \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
611 unsigned char *p = BYTE_POS_ADDR (pos_byte); \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
612 if (BASE_LEADING_CODE_P (*p)) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
613 { \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
614 int len, bytes; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
615 len = Z_BYTE - pos_byte; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
616 PARSE_MULTIBYTE_SEQ (p, len, bytes); \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
617 pos_byte += bytes; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
618 } \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
619 else \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
620 pos_byte++; \ |
17052 | 621 } while (0) |
622 | |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
623 /* Decrease the buffer byte position POS_BYTE of the current buffer to |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
624 the previous character boundary. No range checking of POS. */ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
625 #define DEC_POS(pos_byte) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
626 do { \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
627 unsigned char *p, *p_min; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
628 \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
629 pos_byte--; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
630 if (pos_byte < GPT_BYTE) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
631 p = BEG_ADDR + pos_byte - 1, p_min = BEG_ADDR; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
632 else \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
633 p = BEG_ADDR + GAP_SIZE + pos_byte - 1, p_min = GAP_END_ADDR; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
634 if (p > p_min && !CHAR_HEAD_P (*p)) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
635 { \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
636 unsigned char *pend = p--; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
637 int len, bytes; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
638 while (p > p_min && !CHAR_HEAD_P (*p)) p--; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
639 len = pend + 1 - p; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
640 PARSE_MULTIBYTE_SEQ (p, len, bytes); \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
641 if (bytes == len) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
642 pos_byte -= len - 1; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
643 } \ |
20531
f019e056ad9a
(CHAR_HEAD_P): Take char, not pointer, as arg.
Richard M. Stallman <rms@gnu.org>
parents:
20352
diff
changeset
|
644 } while (0) |
f019e056ad9a
(CHAR_HEAD_P): Take char, not pointer, as arg.
Richard M. Stallman <rms@gnu.org>
parents:
20352
diff
changeset
|
645 |
f019e056ad9a
(CHAR_HEAD_P): Take char, not pointer, as arg.
Richard M. Stallman <rms@gnu.org>
parents:
20352
diff
changeset
|
646 /* Increment both CHARPOS and BYTEPOS, each in the appropriate way. */ |
f019e056ad9a
(CHAR_HEAD_P): Take char, not pointer, as arg.
Richard M. Stallman <rms@gnu.org>
parents:
20352
diff
changeset
|
647 |
20904
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
648 #define INC_BOTH(charpos, bytepos) \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
649 do \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
650 { \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
651 (charpos)++; \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
652 if (NILP (current_buffer->enable_multibyte_characters)) \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
653 (bytepos)++; \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
654 else \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
655 INC_POS ((bytepos)); \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
656 } \ |
20531
f019e056ad9a
(CHAR_HEAD_P): Take char, not pointer, as arg.
Richard M. Stallman <rms@gnu.org>
parents:
20352
diff
changeset
|
657 while (0) |
f019e056ad9a
(CHAR_HEAD_P): Take char, not pointer, as arg.
Richard M. Stallman <rms@gnu.org>
parents:
20352
diff
changeset
|
658 |
f019e056ad9a
(CHAR_HEAD_P): Take char, not pointer, as arg.
Richard M. Stallman <rms@gnu.org>
parents:
20352
diff
changeset
|
659 /* Decrement both CHARPOS and BYTEPOS, each in the appropriate way. */ |
f019e056ad9a
(CHAR_HEAD_P): Take char, not pointer, as arg.
Richard M. Stallman <rms@gnu.org>
parents:
20352
diff
changeset
|
660 |
20904
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
661 #define DEC_BOTH(charpos, bytepos) \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
662 do \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
663 { \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
664 (charpos)--; \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
665 if (NILP (current_buffer->enable_multibyte_characters)) \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
666 (bytepos)--; \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
667 else \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
668 DEC_POS ((bytepos)); \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
669 } \ |
20531
f019e056ad9a
(CHAR_HEAD_P): Take char, not pointer, as arg.
Richard M. Stallman <rms@gnu.org>
parents:
20352
diff
changeset
|
670 while (0) |
f019e056ad9a
(CHAR_HEAD_P): Take char, not pointer, as arg.
Richard M. Stallman <rms@gnu.org>
parents:
20352
diff
changeset
|
671 |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
672 /* Increase the buffer byte position POS_BYTE of the current buffer to |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
673 the next character boundary. This macro relies on the fact that |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
674 *GPT_ADDR and *Z_ADDR are always accessible and the values are |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
675 '\0'. No range checking of POS_BYTE. */ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
676 #define BUF_INC_POS(buf, pos_byte) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
677 do { \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
678 unsigned char *p = BUF_BYTE_ADDRESS (buf, pos_byte); \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
679 if (BASE_LEADING_CODE_P (*p)) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
680 { \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
681 int len, bytes; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
682 len = BUF_Z_BYTE (buf) - pos_byte; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
683 PARSE_MULTIBYTE_SEQ (p, len, bytes); \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
684 pos_byte += bytes; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
685 } \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
686 else \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
687 pos_byte++; \ |
20531
f019e056ad9a
(CHAR_HEAD_P): Take char, not pointer, as arg.
Richard M. Stallman <rms@gnu.org>
parents:
20352
diff
changeset
|
688 } while (0) |
f019e056ad9a
(CHAR_HEAD_P): Take char, not pointer, as arg.
Richard M. Stallman <rms@gnu.org>
parents:
20352
diff
changeset
|
689 |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
690 /* Decrease the buffer byte position POS_BYTE of the current buffer to |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
691 the previous character boundary. No range checking of POS_BYTE. */ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
692 #define BUF_DEC_POS(buf, pos_byte) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
693 do { \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
694 unsigned char *p, *p_min; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
695 pos_byte--; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
696 if (pos_byte < BUF_GPT_BYTE (buf)) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
697 { \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
698 p = BUF_BEG_ADDR (buf) + pos_byte - 1; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
699 p_min = BUF_BEG_ADDR (buf); \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
700 } \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
701 else \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
702 { \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
703 p = BUF_BEG_ADDR (buf) + BUF_GAP_SIZE (buf) + pos_byte - 1; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
704 p_min = BUF_GAP_END_ADDR (buf); \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
705 } \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
706 if (p > p_min && !CHAR_HEAD_P (*p)) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
707 { \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
708 unsigned char *pend = p--; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
709 int len, bytes; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
710 while (p > p_min && !CHAR_HEAD_P (*p)) p--; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
711 len = pend + 1 - p; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
712 PARSE_MULTIBYTE_SEQ (p, len, bytes); \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
713 if (bytes == len) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
714 pos_byte -= len - 1; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
715 } \ |
17052 | 716 } while (0) |
717 | |
718 #endif /* emacs */ | |
719 | |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
720 /* This is the maximum byte length of multi-byte sequence. */ |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
721 #define MAX_MULTIBYTE_LENGTH 4 |
17185
0d5a1bae9d73
(MAX_CHARSET): Definition changed to the actual
Kenichi Handa <handa@m17n.org>
parents:
17120
diff
changeset
|
722 |
20932
3c2c8431c51d
(INC_POS): Use macro BASE_LEADING_CODE_P.
Kenichi Handa <handa@m17n.org>
parents:
20904
diff
changeset
|
723 extern void invalid_character P_ ((int)); |
3c2c8431c51d
(INC_POS): Use macro BASE_LEADING_CODE_P.
Kenichi Handa <handa@m17n.org>
parents:
20904
diff
changeset
|
724 |
22120
90f77c401689
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21444
diff
changeset
|
725 extern int translate_char P_ ((Lisp_Object, int, int, int, int)); |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
726 extern int split_string P_ ((const unsigned char *, int, int *, |
20308
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20257
diff
changeset
|
727 unsigned char *, unsigned char *)); |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
728 extern int char_to_string P_ ((int, unsigned char *)); |
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
729 extern int string_to_char P_ ((const unsigned char *, int, int *)); |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
730 extern int char_printable_p P_ ((int c)); |
21419
95aae2ff5fcd
(string_to_non_ascii_char, multibyte_form_length)
Karl Heuer <kwzh@gnu.org>
parents:
21416
diff
changeset
|
731 extern int multibyte_form_length P_ ((const unsigned char *, int)); |
20308
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20257
diff
changeset
|
732 extern int get_charset_id P_ ((Lisp_Object)); |
22167
bb7c53dee594
(find_charset_in_str): Number of arguments fixed.
Kenichi Handa <handa@m17n.org>
parents:
22120
diff
changeset
|
733 extern int find_charset_in_str P_ ((unsigned char *, int, int *, |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
734 Lisp_Object, int)); |
20308
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20257
diff
changeset
|
735 extern int strwidth P_ ((unsigned char *, int)); |
23130 | 736 extern int char_bytes P_ ((int)); |
23810 | 737 extern int char_valid_p P_ ((int, int)); |
17726 | 738 |
22184
003ac1231096
(STRING_CHAR_AND_CHAR_LENGTH): New macro.
Kenichi Handa <handa@m17n.org>
parents:
22167
diff
changeset
|
739 extern Lisp_Object Vtranslation_table_vector; |
22120
90f77c401689
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21444
diff
changeset
|
740 |
22184
003ac1231096
(STRING_CHAR_AND_CHAR_LENGTH): New macro.
Kenichi Handa <handa@m17n.org>
parents:
22167
diff
changeset
|
741 /* Return a translation table of id number ID. */ |
22120
90f77c401689
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21444
diff
changeset
|
742 #define GET_TRANSLATION_TABLE(id) \ |
25637
2e3ab6dece24
(GET_TRANSLATION_TABLE): Use XCDR.
Ken Raeburn <raeburn@raeburn.org>
parents:
25583
diff
changeset
|
743 (XCDR(XVECTOR(Vtranslation_table_vector)->contents[(id)])) |
20719 | 744 |
23488
958ab288116d
(Vauto_fill_chars): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
23202
diff
changeset
|
745 /* A char-table for characters which may invoke auto-filling. */ |
958ab288116d
(Vauto_fill_chars): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
23202
diff
changeset
|
746 extern Lisp_Object Vauto_fill_chars; |
958ab288116d
(Vauto_fill_chars): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
23202
diff
changeset
|
747 |
20719 | 748 /* Copy LEN bytes from FROM to TO. This macro should be used only |
749 when a caller knows that LEN is short and the obvious copy loop is | |
750 faster than calling bcopy which has some overhead. */ | |
751 | |
752 #define BCOPY_SHORT(from, to, len) \ | |
753 do { \ | |
754 int i = len; \ | |
25234
17336b4fc693
(BCOPY_SHORT): Fix typo `unsigined'.
Karl Heuer <kwzh@gnu.org>
parents:
25016
diff
changeset
|
755 unsigned char *from_p = from, *to_p = to; \ |
20719 | 756 while (i--) *from_p++ = *to_p++; \ |
757 } while (0) | |
758 | |
25016
15a2436cb80f
(CHAR_LEN): Moved here from dispextern.h.
Gerd Moellmann <gerd@gnu.org>
parents:
24779
diff
changeset
|
759 /* Length of C in bytes. */ |
15a2436cb80f
(CHAR_LEN): Moved here from dispextern.h.
Gerd Moellmann <gerd@gnu.org>
parents:
24779
diff
changeset
|
760 |
26843
0aadeca4a4a7
In this entry, just `Modified' means that codes for a
Kenichi Handa <handa@m17n.org>
parents:
25637
diff
changeset
|
761 #define CHAR_LEN(C) CHARSET_BYTES (CHAR_CHARSET ((C))) |
25016
15a2436cb80f
(CHAR_LEN): Moved here from dispextern.h.
Gerd Moellmann <gerd@gnu.org>
parents:
24779
diff
changeset
|
762 |
17052 | 763 #endif /* _CHARSET_H */ |