Mercurial > emacs
annotate src/charset.h @ 25524:095548b9a36c
Do nothing if included a second time.
(enum output_method): Add mac_output frame type.
(union output_data): Add new alternative `mac'.
(FRAME_MAC_P): New macro.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 03 Sep 1999 18:44:39 +0000 |
parents | 4d5f87073d63 |
children | 2c0d3a9d33e8 |
rev | line source |
---|---|
17052 | 1 /* Header for multilingual 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 | |
30 of ISO charsets (except for a special charset for composition | |
31 characters). Emacs identifies a charset by a unique identification | |
32 number, whereas ISO identifies a charset by a triplet of DIMENSION, | |
33 CHARS and FINAL-CHAR. So, hereafter, just saying "charset" means an | |
34 identification number (integer value). | |
35 | |
36 The value range of charset is 0x00, 0x80..0xFE. There are four | |
37 kinds of charset depending on DIMENSION (1 or 2) and CHARS (94 or | |
38 96). For instance, a charset of DIMENSION2_CHARS94 contains 94x94 | |
39 | |
40 | |
41 Within Emacs Lisp, a charset is treated as a symbol which has a | |
42 property `charset'. The property value is a vector containing | |
43 various information about the charset. For readability of C codes, | |
44 we use the following convention on C variable names: | |
45 charset_symbol: Emacs Lisp symbol of a charset | |
46 charset_id: Emacs Lisp integer of an identification number of a charset | |
47 charset: C integer of an identification number of a charset | |
48 | |
49 Each charset (except for ASCII) is assigned a base leading-code | |
50 (range 0x80..0x9D). In addition, a charset of greater than 0xA0 | |
51 (whose base leading-code is 0x9A..0x9D) is assigned an extended | |
52 leading-code (range 0xA0..0xFE). In this case, each base | |
53 leading-code specify the allowable range of extended leading-code as | |
54 shown in the table below. A leading-code is used to represent a | |
55 character in Emacs' buffer and string. | |
56 | |
57 We call a charset which has extended leading-code as "private | |
58 charset" because those are mainly for a charset which is not | |
59 registered by ISO. On the contrary, we call a charset which does | |
60 not have extended leading-code as "official charset". | |
61 | |
62 --------------------------------------------------------------------------- | |
63 charset dimension base leading-code extended leading-code | |
64 --------------------------------------------------------------------------- | |
65 0x00 official dim1 -- none -- -- none -- | |
66 (ASCII) | |
67 0x01..0x7F --never used-- | |
68 0x80 COMPOSITION same as charset -- none -- | |
69 0x81..0x8F official dim1 same as charset -- none -- | |
70 0x90..0x99 official dim2 same as charset -- none -- | |
71 0x9A..0x9F --never used-- | |
72 0xA0..0xDF private dim1 0x9A same as charset | |
73 of 1-column width | |
74 0xE0..0xEF private dim1 0x9B same as charset | |
75 of 2-column width | |
76 0xF0..0xF4 private dim2 0x9C same as charset | |
77 of 1-column width | |
78 0xF5..0xFE private dim2 0x9D same as charset | |
79 of 2-column width | |
80 0xFF --never used-- | |
81 --------------------------------------------------------------------------- | |
82 | |
83 In the table, "COMPOSITION" means a charset for a composite | |
84 character which is a character composed from several (up to 16) | |
85 non-composite characters (components). Although a composite | |
86 character can contain components of many charsets, a composite | |
87 character itself belongs to the charset CHARSET-COMPOSITION. See | |
88 the document "GENERAL NOTE on COMPOSITE CHARACTER" below for more | |
89 detail. | |
90 | |
91 */ | |
92 | |
93 /* Definition of special leading-codes. */ | |
94 /* Base leading-code. */ | |
95 /* Special leading-code followed by components of a composite character. */ | |
96 #define LEADING_CODE_COMPOSITION 0x80 | |
97 /* Leading-code followed by extended leading-code. */ | |
98 #define LEADING_CODE_PRIVATE_11 0x9A /* for private DIMENSION1 of 1-column */ | |
99 #define LEADING_CODE_PRIVATE_12 0x9B /* for private DIMENSION1 of 2-column */ | |
100 #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
|
101 #define LEADING_CODE_PRIVATE_22 0x9D /* for private DIMENSION2 of 2-column */ |
17052 | 102 |
103 /* Extended leading-code. */ | |
104 /* Start of each extended leading-codes. */ | |
105 #define LEADING_CODE_EXT_11 0xA0 /* follows LEADING_CODE_PRIVATE_11 */ | |
106 #define LEADING_CODE_EXT_12 0xE0 /* follows LEADING_CODE_PRIVATE_12 */ | |
107 #define LEADING_CODE_EXT_21 0xF0 /* follows LEADING_CODE_PRIVATE_21 */ | |
108 #define LEADING_CODE_EXT_22 0xF5 /* follows LEADING_CODE_PRIVATE_22 */ | |
109 /* Maximum value of extended leading-codes. */ | |
110 #define LEADING_CODE_EXT_MAX 0xFE | |
111 | |
112 /* Definition of minimum/maximum charset of each DIMENSION. */ | |
113 #define MIN_CHARSET_OFFICIAL_DIMENSION1 0x81 | |
114 #define MAX_CHARSET_OFFICIAL_DIMENSION1 0x8F | |
115 #define MIN_CHARSET_OFFICIAL_DIMENSION2 0x90 | |
116 #define MAX_CHARSET_OFFICIAL_DIMENSION2 0x99 | |
117 #define MIN_CHARSET_PRIVATE_DIMENSION1 LEADING_CODE_EXT_11 | |
118 #define MIN_CHARSET_PRIVATE_DIMENSION2 LEADING_CODE_EXT_21 | |
119 | |
17185
0d5a1bae9d73
(MAX_CHARSET): Definition changed to the actual
Kenichi Handa <handa@m17n.org>
parents:
17120
diff
changeset
|
120 /* Maximum value of overall charset identification number. */ |
0d5a1bae9d73
(MAX_CHARSET): Definition changed to the actual
Kenichi Handa <handa@m17n.org>
parents:
17120
diff
changeset
|
121 #define MAX_CHARSET 0xFE |
0d5a1bae9d73
(MAX_CHARSET): Definition changed to the actual
Kenichi Handa <handa@m17n.org>
parents:
17120
diff
changeset
|
122 |
17052 | 123 /* Definition of special charsets. */ |
124 #define CHARSET_ASCII 0 | |
125 #define CHARSET_COMPOSITION 0x80 | |
126 | |
127 extern int charset_ascii; /* ASCII */ | |
128 extern int charset_composition; /* for a composite character */ | |
129 extern int charset_latin_iso8859_1; /* ISO8859-1 (Latin-1) */ | |
130 extern int charset_jisx0208_1978; /* JISX0208.1978 (Japanese Kanji old set) */ | |
131 extern int charset_jisx0208; /* JISX0208.1983 (Japanese Kanji) */ | |
132 extern int charset_katakana_jisx0201; /* JISX0201.Kana (Japanese Katakana) */ | |
133 extern int charset_latin_jisx0201; /* JISX0201.Roman (Japanese Roman) */ | |
134 extern int charset_big5_1; /* Big5 Level 1 (Chinese Traditional) */ | |
135 extern int charset_big5_2; /* Big5 Level 2 (Chinese Traditional) */ | |
136 | |
20531
f019e056ad9a
(CHAR_HEAD_P): Take char, not pointer, as arg.
Richard M. Stallman <rms@gnu.org>
parents:
20352
diff
changeset
|
137 /* 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
|
138 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
|
139 #define CHAR_HEAD_P(ch) ((unsigned char) (ch) < 0xA0) |
17052 | 140 |
141 /*** GENERAL NOTE on CHARACTER REPRESENTATION *** | |
142 | |
143 At first, the term "character" or "char" is used for a multilingual | |
144 character (of course, including ASCII character), not for a byte in | |
145 computer memory. We use the term "code" or "byte" for the latter | |
146 case. | |
147 | |
148 A character is identified by charset and one or two POSITION-CODEs. | |
149 POSITION-CODE is the position of the character in the charset. A | |
150 character of DIMENSION1 charset has one POSITION-CODE: POSITION-CODE-1. | |
151 A character of DIMENSION2 charset has two POSITION-CODE: | |
152 POSITION-CODE-1 and POSITION-CODE-2. The code range of | |
153 POSITION-CODE is 0x20..0x7F. | |
154 | |
155 Emacs has two kinds of representation of a character: multi-byte | |
156 form (for buffer and string) and single-word form (for character | |
157 object in Emacs Lisp). The latter is called "character code" here | |
22529 | 158 after. Both representations encode the information of charset and |
17052 | 159 POSITION-CODE but in a different way (for instance, MSB of |
160 POSITION-CODE is set in multi-byte form). | |
161 | |
162 For details of multi-byte form, see the section "2. Emacs internal | |
163 format handlers" of `coding.c'. | |
164 | |
165 Emacs uses 19 bits for a character code. The bits are divided into | |
166 3 fields: FIELD1(5bits):FIELD2(7bits):FIELD3(7bits). | |
167 | |
168 A character code of DIMENSION1 character uses FIELD2 to hold charset | |
169 and FIELD3 to hold POSITION-CODE-1. A character code of DIMENSION2 | |
170 character uses FIELD1 to hold charset, FIELD2 and FIELD3 to hold | |
171 POSITION-CODE-1 and POSITION-CODE-2 respectively. | |
172 | |
173 More precisely... | |
174 | |
175 FIELD2 of DIMENSION1 character (except for ASCII) is "charset - 0x70". | |
176 This is to make all character codes except for ASCII greater than | |
177 256 (ASCII's FIELD2 is 0). So, the range of FIELD2 of DIMENSION1 | |
178 character is 0 or 0x11..0x7F. | |
179 | |
180 FIELD1 of DIMENSION2 character is "charset - 0x8F" for official | |
181 charset and "charset - 0xE0" for private charset. So, the range of | |
182 FIELD1 of DIMENSION2 character is 0x01..0x1E. | |
183 | |
184 ----------------------------------------------------------------------- | |
185 charset FIELD1 (5-bit) FIELD2 (7-bit) FIELD3 (7-bit) | |
186 ----------------------------------------------------------------------- | |
187 ASCII 0 0 POSITION-CODE-1 | |
188 DIMENSION1 0 charset - 0x70 POSITION-CODE-1 | |
189 DIMENSION2(o) charset - 0x8F POSITION-CODE-1 POSITION-CODE-2 | |
190 DIMENSION2(p) charset - 0xE0 POSITION-CODE-1 POSITION-CODE-2 | |
191 ----------------------------------------------------------------------- | |
192 "(o)": official, "(p)": private | |
193 ----------------------------------------------------------------------- | |
194 | |
195 */ | |
196 | |
197 /*** GENERAL NOTE on COMPOSITE CHARACTER *** | |
198 | |
199 A composite character is a character composed from several (up to | |
22529 | 200 16) non-composite characters (components). Although each component |
17052 | 201 can belong to any charset, a composite character itself belongs to |
202 the charset `charset-composition' and is assigned a special | |
203 leading-code `LEADING_CODE_COMPOSITION' for multi-byte form. See | |
204 the document "2. Emacs internal format handlers" in `coding.c' for | |
205 more detail about multi-byte form. | |
206 | |
207 A character code of composite character has special format. In the | |
208 above document, FIELD1 of a composite character is 0x1F. Each | |
209 composite character is assigned a sequential number CMPCHAR-ID. | |
210 FIELD2 and FIELD3 are combined to make 14bits field for holding | |
211 CMPCHAR-ID, which means that Emacs can handle at most 2^14 (= 16384) | |
212 composite characters at once. | |
213 | |
214 ----------------------------------------------------------------------- | |
215 charset FIELD1 (5-bit) FIELD2&3 (14-bit) | |
216 ----------------------------------------------------------------------- | |
217 CHARSET-COMPOSITION 0x1F CMPCHAR-ID | |
218 ----------------------------------------------------------------------- | |
219 | |
220 Emacs assigns CMPCHAR-ID to a composite character only when it | |
221 requires the character code of the composite character (e.g. while | |
222 displaying the composite character). | |
223 | |
224 */ | |
225 | |
226 /* Masks of each field of character code. */ | |
227 #define CHAR_FIELD1_MASK (0x1F << 14) | |
228 #define CHAR_FIELD2_MASK (0x7F << 7) | |
229 #define CHAR_FIELD3_MASK 0x7F | |
230 | |
231 /* Macros to access each field of character C. */ | |
232 #define CHAR_FIELD1(c) (((c) & CHAR_FIELD1_MASK) >> 14) | |
233 #define CHAR_FIELD2(c) (((c) & CHAR_FIELD2_MASK) >> 7) | |
234 #define CHAR_FIELD3(c) ((c) & CHAR_FIELD3_MASK) | |
235 | |
236 /* Minimum character code of character of each DIMENSION. */ | |
237 #define MIN_CHAR_OFFICIAL_DIMENSION1 \ | |
238 ((MIN_CHARSET_OFFICIAL_DIMENSION1 - 0x70) << 7) | |
239 #define MIN_CHAR_PRIVATE_DIMENSION1 \ | |
240 ((MIN_CHARSET_PRIVATE_DIMENSION1 - 0x70) << 7) | |
241 #define MIN_CHAR_OFFICIAL_DIMENSION2 \ | |
242 ((MIN_CHARSET_OFFICIAL_DIMENSION2 - 0x8F) << 14) | |
243 #define MIN_CHAR_PRIVATE_DIMENSION2 \ | |
244 ((MIN_CHARSET_PRIVATE_DIMENSION2 - 0xE0) << 14) | |
245 #define MIN_CHAR_COMPOSITION \ | |
246 (0x1F << 14) | |
22702
1e265354a43a
(MAX_CHAR_COMPOSITION): Defined as (GLYPH_MASK_CHAR -
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
247 #define MAX_CHAR_COMPOSITION (GLYPH_MASK_CHAR - 1) |
1e265354a43a
(MAX_CHAR_COMPOSITION): Defined as (GLYPH_MASK_CHAR -
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
248 |
1e265354a43a
(MAX_CHAR_COMPOSITION): Defined as (GLYPH_MASK_CHAR -
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
249 /* A generic character for composition characters. */ |
1e265354a43a
(MAX_CHAR_COMPOSITION): Defined as (GLYPH_MASK_CHAR -
Kenichi Handa <handa@m17n.org>
parents:
22529
diff
changeset
|
250 #define GENERIC_COMPOSITION_CHAR (GLYPH_MASK_CHAR) |
17052 | 251 |
252 /* 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
|
253 #define SINGLE_BYTE_CHAR_P(c) ((c) >= 0 && (c) < 0x100) |
17052 | 254 /* 1 if C is an composite character, else 0. */ |
255 #define COMPOSITE_CHAR_P(c) ((c) >= MIN_CHAR_COMPOSITION) | |
256 | |
20257 | 257 /* 1 if BYTE is a character in itself, in multibyte mode. */ |
258 #define ASCII_BYTE_P(byte) ((byte) < 0x80) | |
259 | |
17052 | 260 /* A char-table containing information of each character set. |
261 | |
262 Unlike ordinary char-tables, this doesn't contain any nested table. | |
263 Only the top level elements are used. Each element is a vector of | |
264 the following information: | |
265 CHARSET-ID, BYTES, DIMENSION, CHARS, WIDTH, DIRECTION, | |
266 LEADING-CODE-BASE, LEADING-CODE-EXT, | |
267 ISO-FINAL-CHAR, ISO-GRAPHIC-PLANE, | |
268 REVERSE-CHARSET, SHORT-NAME, LONG-NAME, DESCRIPTION, | |
269 PLIST. | |
270 | |
271 CHARSET-ID (integer) is the identification number of the charset. | |
272 | |
24779 | 273 BYTES (integer) is the length of multi-byte form of a character in |
17052 | 274 the charset: one of 1, 2, 3, and 4. |
275 | |
276 DIMENSION (integer) is the number of bytes to represent a character: 1 or 2. | |
277 | |
278 CHARS (integer) is the number of characters in a dimension: 94 or 96. | |
279 | |
280 WIDTH (integer) is the number of columns a character in the charset | |
281 occupies on the screen: one of 0, 1, and 2. | |
282 | |
283 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
|
284 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
|
285 render from right to left. |
17052 | 286 |
287 LEADING-CODE-BASE (integer) is the base leading-code for the | |
288 charset. | |
289 | |
290 LEADING-CODE-EXT (integer) is the extended leading-code for the | |
291 charset. All charsets of less than 0xA0 has the value 0. | |
292 | |
293 ISO-FINAL-CHAR (character) is the final character of the | |
294 corresponding ISO 2022 charset. | |
295 | |
296 ISO-GRAPHIC-PLANE (integer) is the graphic plane to be invoked | |
297 while encoding to variants of ISO 2022 coding system, one of the | |
298 following: 0/graphic-plane-left(GL), 1/graphic-plane-right(GR). | |
299 | |
300 REVERSE-CHARSET (integer) is the charset which differs only in | |
301 LEFT-TO-RIGHT value from the charset. If there's no such a | |
302 charset, the value is -1. | |
303 | |
304 SHORT-NAME (string) is the short name to refer to the charset. | |
305 | |
306 LONG-NAME (string) is the long name to refer to the charset. | |
307 | |
308 DESCRIPTION (string) is the description string of the charset. | |
309 | |
310 PLIST (property list) may contain any type of information a user | |
311 want to put and get by functions `put-charset-property' and | |
312 `get-charset-property' respectively. */ | |
313 extern Lisp_Object Vcharset_table; | |
314 | |
315 /* Macros to access various information of CHARSET in Vcharset_table. | |
316 We provide these macros for efficiency. No range check of CHARSET. */ | |
317 | |
318 /* 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
|
319 #define CHARSET_TABLE_ENTRY(charset) \ |
9f837bea89e3
(CHARSET_TABLE_ENTRY): Handle ASCII charset correctly.
Kenichi Handa <handa@m17n.org>
parents:
17185
diff
changeset
|
320 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
|
321 ? 0 : (charset) + 128)] |
17052 | 322 |
323 /* Return information INFO-IDX of CHARSET. */ | |
324 #define CHARSET_TABLE_INFO(charset, info_idx) \ | |
325 XVECTOR (CHARSET_TABLE_ENTRY (charset))->contents[info_idx] | |
326 | |
327 #define CHARSET_ID_IDX (0) | |
328 #define CHARSET_BYTES_IDX (1) | |
329 #define CHARSET_DIMENSION_IDX (2) | |
330 #define CHARSET_CHARS_IDX (3) | |
331 #define CHARSET_WIDTH_IDX (4) | |
332 #define CHARSET_DIRECTION_IDX (5) | |
333 #define CHARSET_LEADING_CODE_BASE_IDX (6) | |
334 #define CHARSET_LEADING_CODE_EXT_IDX (7) | |
335 #define CHARSET_ISO_FINAL_CHAR_IDX (8) | |
336 #define CHARSET_ISO_GRAPHIC_PLANE_IDX (9) | |
337 #define CHARSET_REVERSE_CHARSET_IDX (10) | |
338 #define CHARSET_SHORT_NAME_IDX (11) | |
339 #define CHARSET_LONG_NAME_IDX (12) | |
340 #define CHARSET_DESCRIPTION_IDX (13) | |
341 #define CHARSET_PLIST_IDX (14) | |
342 /* Size of a vector of each entry of Vcharset_table. */ | |
343 #define CHARSET_MAX_IDX (15) | |
344 | |
345 /* And several more macros to be used frequently. */ | |
346 #define CHARSET_BYTES(charset) \ | |
347 XFASTINT (CHARSET_TABLE_INFO (charset, CHARSET_BYTES_IDX)) | |
348 #define CHARSET_DIMENSION(charset) \ | |
349 XFASTINT (CHARSET_TABLE_INFO (charset, CHARSET_DIMENSION_IDX)) | |
350 #define CHARSET_CHARS(charset) \ | |
351 XFASTINT (CHARSET_TABLE_INFO (charset, CHARSET_CHARS_IDX)) | |
352 #define CHARSET_WIDTH(charset) \ | |
353 XFASTINT (CHARSET_TABLE_INFO (charset, CHARSET_WIDTH_IDX)) | |
354 #define CHARSET_DIRECTION(charset) \ | |
355 XFASTINT (CHARSET_TABLE_INFO (charset, CHARSET_DIRECTION_IDX)) | |
356 #define CHARSET_LEADING_CODE_BASE(charset) \ | |
357 XFASTINT (CHARSET_TABLE_INFO (charset, CHARSET_LEADING_CODE_BASE_IDX)) | |
358 #define CHARSET_LEADING_CODE_EXT(charset) \ | |
359 XFASTINT (CHARSET_TABLE_INFO (charset, CHARSET_LEADING_CODE_EXT_IDX)) | |
360 #define CHARSET_ISO_FINAL_CHAR(charset) \ | |
361 XFASTINT (CHARSET_TABLE_INFO (charset, CHARSET_ISO_FINAL_CHAR_IDX)) | |
362 #define CHARSET_ISO_GRAPHIC_PLANE(charset) \ | |
363 XFASTINT (CHARSET_TABLE_INFO (charset, CHARSET_ISO_GRAPHIC_PLANE_IDX)) | |
364 #define CHARSET_REVERSE_CHARSET(charset) \ | |
365 XINT (CHARSET_TABLE_INFO (charset, CHARSET_REVERSE_CHARSET_IDX)) | |
366 | |
367 /* Macros to specify direction of a charset. */ | |
368 #define CHARSET_DIRECTION_LEFT_TO_RIGHT 0 | |
369 #define CHARSET_DIRECTION_RIGHT_TO_LEFT 1 | |
370 | |
371 /* A vector of charset symbol indexed by charset-id. This is used | |
372 only for returning charset symbol from C functions. */ | |
373 extern Lisp_Object Vcharset_symbol_table; | |
374 | |
375 /* Return symbol of CHARSET. */ | |
376 #define CHARSET_SYMBOL(charset) \ | |
377 XVECTOR (Vcharset_symbol_table)->contents[charset] | |
378 | |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
379 /* 1 if CHARSET is in valid value range, else 0. */ |
17052 | 380 #define CHARSET_VALID_P(charset) \ |
381 ((charset) == 0 \ | |
382 || ((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
|
383 || ((charset) >= MIN_CHARSET_PRIVATE_DIMENSION1 && (charset) <= MAX_CHARSET)) |
17052 | 384 |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
385 /* 1 if CHARSET is already defined (and not CHARSET_COMPOSITION), else 0. */ |
17052 | 386 #define CHARSET_DEFINED_P(charset) \ |
17185
0d5a1bae9d73
(MAX_CHARSET): Definition changed to the actual
Kenichi Handa <handa@m17n.org>
parents:
17120
diff
changeset
|
387 (((charset) >= 0) && ((charset) <= MAX_CHARSET) \ |
17052 | 388 && !NILP (CHARSET_TABLE_ENTRY (charset))) |
389 | |
390 /* 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
|
391 Vcharset_table can be retrieved only the first byte of |
17052 | 392 multi-byte form (an ASCII code or a base leading-code), we provide |
393 here tables to be used by macros BYTES_BY_CHAR_HEAD and | |
394 WIDTH_BY_CHAR_HEAD for faster information retrieval. */ | |
395 extern int bytes_by_char_head[256]; | |
396 extern int width_by_char_head[256]; | |
397 | |
398 #define BYTES_BY_CHAR_HEAD(char_head) bytes_by_char_head[char_head] | |
399 #define WIDTH_BY_CHAR_HEAD(char_head) width_by_char_head[char_head] | |
400 | |
401 /* Charset of the character C. */ | |
402 #define CHAR_CHARSET(c) \ | |
403 (SINGLE_BYTE_CHAR_P (c) \ | |
404 ? CHARSET_ASCII \ | |
405 : ((c) < MIN_CHAR_OFFICIAL_DIMENSION2 \ | |
406 ? CHAR_FIELD2 (c) + 0x70 \ | |
407 : ((c) < MIN_CHAR_PRIVATE_DIMENSION2 \ | |
408 ? CHAR_FIELD1 (c) + 0x8F \ | |
409 : ((c) < MIN_CHAR_COMPOSITION \ | |
410 ? CHAR_FIELD1 (c) + 0xE0 \ | |
20719 | 411 : ((c) <= MAX_CHAR_COMPOSITION \ |
412 ? CHARSET_COMPOSITION \ | |
413 : CHARSET_ASCII))))) | |
17052 | 414 |
415 /* Return charset at the place pointed by P. */ | |
416 #define CHARSET_AT(p) \ | |
417 (*(p) < 0x80 \ | |
418 ? CHARSET_ASCII \ | |
419 : (*(p) == LEADING_CODE_COMPOSITION \ | |
420 ? CHARSET_COMPOSITION \ | |
421 : (*(p) < LEADING_CODE_PRIVATE_11 \ | |
422 ? (int)*(p) \ | |
423 : (*(p) <= LEADING_CODE_PRIVATE_22 \ | |
424 ? (int)*((p) + 1) \ | |
425 : -1)))) | |
426 | |
427 /* Same as `CHARSET_AT ()' but perhaps runs faster because of an | |
428 additional argument C which is the code (byte) at P. */ | |
429 #define FIRST_CHARSET_AT(p, c) \ | |
430 ((c) < 0x80 \ | |
431 ? CHARSET_ASCII \ | |
432 : ((c) == LEADING_CODE_COMPOSITION \ | |
433 ? CHARSET_COMPOSITION \ | |
434 : ((c) < LEADING_CODE_PRIVATE_11 \ | |
435 ? (int)(c) \ | |
436 : ((c) <= LEADING_CODE_PRIVATE_22 \ | |
437 ? (int)*((p) + 1) \ | |
438 : -1)))) | |
439 | |
440 /* Check if two characters C1 and C2 belong to the same charset. | |
441 Always return 0 for composite characters. */ | |
442 #define SAME_CHARSET_P(c1, c2) \ | |
443 (c1 < MIN_CHAR_COMPOSITION \ | |
444 && (SINGLE_BYTE_CHAR_P (c1) \ | |
445 ? SINGLE_BYTE_CHAR_P (c2) \ | |
446 : (c1 < MIN_CHAR_OFFICIAL_DIMENSION2 \ | |
447 ? (c1 & CHAR_FIELD2_MASK) == (c2 & CHAR_FIELD2_MASK) \ | |
448 : (c1 & CHAR_FIELD1_MASK) == (c2 & CHAR_FIELD1_MASK)))) | |
449 | |
450 /* Return a non-ASCII character of which charset is CHARSET and | |
451 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
|
452 #define MAKE_NON_ASCII_CHAR(charset, c1, c2) \ |
06e645781762
(MAKE_NON_ASCII_CHAR): Check validity of CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
23488
diff
changeset
|
453 ((charset) == CHARSET_COMPOSITION \ |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
454 ? ((c2) < 0 \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
455 ? (((charset) - 0x70) << 7) + (c1) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
456 : MAKE_COMPOSITE_CHAR (((c1) << 7) + (c2))) \ |
23648
06e645781762
(MAKE_NON_ASCII_CHAR): Check validity of CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
23488
diff
changeset
|
457 : (! CHARSET_DEFINED_P (charset) || CHARSET_DIMENSION (charset) == 1 \ |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
458 ? (((charset) - 0x70) << 7) | ((c1) <= 0 ? 0 : (c1)) \ |
23648
06e645781762
(MAKE_NON_ASCII_CHAR): Check validity of CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
23488
diff
changeset
|
459 : ((charset) < MIN_CHARSET_PRIVATE_DIMENSION2 \ |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
460 ? ((((charset) - 0x8F) << 14) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
461 | ((c1) <= 0 ? 0 : ((c1) << 7)) | ((c2) <= 0 ? 0 : (c2))) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
462 : ((((charset) - 0xE0) << 14) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
463 | ((c1) <= 0 ? 0 : ((c1) << 7)) | ((c2) <= 0 ? 0 : (c2)))))) |
17052 | 464 |
465 /* Return a composite character of which CMPCHAR-ID is ID. */ | |
466 #define MAKE_COMPOSITE_CHAR(id) (MIN_CHAR_COMPOSITION + (id)) | |
467 | |
468 /* Return CMPCHAR-ID of a composite character C. */ | |
469 #define COMPOSITE_CHAR_ID(c) ((c) - MIN_CHAR_COMPOSITION) | |
470 | |
471 /* Return a character of which charset is CHARSET and position-codes | |
472 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
|
473 #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
|
474 ((charset) == CHARSET_ASCII \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
475 ? (c1) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
476 : MAKE_NON_ASCII_CHAR ((charset), (c1), (c2))) |
17052 | 477 |
20151
82ca32c55fa3
(CHAR_VALID_P): Renamed from VALID_CHAR_P, new
Kenichi Handa <handa@m17n.org>
parents:
19643
diff
changeset
|
478 /* 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
|
479 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
|
480 valid normal character. */ |
82ca32c55fa3
(CHAR_VALID_P): Renamed from VALID_CHAR_P, new
Kenichi Handa <handa@m17n.org>
parents:
19643
diff
changeset
|
481 #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
|
482 ((c) >= 0 \ |
82ca32c55fa3
(CHAR_VALID_P): Renamed from VALID_CHAR_P, new
Kenichi Handa <handa@m17n.org>
parents:
19643
diff
changeset
|
483 && (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
|
484 |
22184
003ac1231096
(STRING_CHAR_AND_CHAR_LENGTH): New macro.
Kenichi Handa <handa@m17n.org>
parents:
22167
diff
changeset
|
485 /* 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
|
486 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
|
487 multibyte character. This makes a Latin-1 character. */ |
9f32198e0d9f
(NONASCII_INSERT_OFFSET): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20932
diff
changeset
|
488 |
9f32198e0d9f
(NONASCII_INSERT_OFFSET): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20932
diff
changeset
|
489 #define DEFAULT_NONASCII_INSERT_OFFSET 0x800 |
9f32198e0d9f
(NONASCII_INSERT_OFFSET): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20932
diff
changeset
|
490 |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
491 /* Parse string STR of length LENGTH (>= 2) and check if a composite |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
492 character is at STR. Actually, the whole multibyte sequence |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
493 starting with LEADING_CODE_COMPOSITION is treated as a single |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
494 multibyte character. So, here, we just set BYTES to LENGTH. */ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
495 |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
496 #define PARSE_COMPOSITE_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
|
497 do { \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
498 (bytes) = (length); \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
499 } while (0) |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
500 |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
501 |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
502 /* Parse string STR of length LENGTH (>= 2) and check if a |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
503 non-composite multibyte character is at STR. Set BYTES to the |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
504 actual sequence length. */ |
21033
9f32198e0d9f
(NONASCII_INSERT_OFFSET): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20932
diff
changeset
|
505 |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
506 #define PARSE_CHARACTER_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
|
507 do { \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
508 (bytes) = BYTES_BY_CHAR_HEAD ((str)[0]); \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
509 if ((bytes) > (length)) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
510 (bytes) = (length); \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
511 } while (0) |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
512 |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
513 /* 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
|
514 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
|
515 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
|
516 |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
517 #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
|
518 do { \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
519 int i = 1; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
520 while (i < (length) && ! CHAR_HEAD_P ((str)[i])) i++; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
521 if (i == 1) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
522 (bytes) = 1; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
523 else if ((str)[0] == LEADING_CODE_COMPOSITION) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
524 PARSE_COMPOSITE_SEQ (str, i, bytes); \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
525 else \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
526 PARSE_CHARACTER_SEQ (str, i, bytes); \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
527 } while (0) |
21033
9f32198e0d9f
(NONASCII_INSERT_OFFSET): New macro.
Kenichi Handa <handa@m17n.org>
parents:
20932
diff
changeset
|
528 |
19319 | 529 /* The charset of non-ASCII character C is stored in CHARSET, and the |
530 position-codes of C are stored in C1 and C2. | |
531 We store -1 in C2 if the character is just 2 bytes. | |
532 | |
533 Do not use this macro for an ASCII character. */ | |
534 | |
17052 | 535 #define SPLIT_NON_ASCII_CHAR(c, charset, c1, c2) \ |
23653
67907ea2c6ac
(SPLIT_NON_ASCII_CHAR): Check dimension of an invalid
Kenichi Handa <handa@m17n.org>
parents:
23648
diff
changeset
|
536 ((c) & CHAR_FIELD1_MASK \ |
67907ea2c6ac
(SPLIT_NON_ASCII_CHAR): Check dimension of an invalid
Kenichi Handa <handa@m17n.org>
parents:
23648
diff
changeset
|
537 ? (charset = ((c) < MIN_CHAR_COMPOSITION \ |
17052 | 538 ? (CHAR_FIELD1 (c) \ |
539 + ((c) < MIN_CHAR_PRIVATE_DIMENSION2 ? 0x8F : 0xE0)) \ | |
540 : CHARSET_COMPOSITION), \ | |
541 c1 = CHAR_FIELD2 (c), \ | |
23653
67907ea2c6ac
(SPLIT_NON_ASCII_CHAR): Check dimension of an invalid
Kenichi Handa <handa@m17n.org>
parents:
23648
diff
changeset
|
542 c2 = CHAR_FIELD3 (c)) \ |
67907ea2c6ac
(SPLIT_NON_ASCII_CHAR): Check dimension of an invalid
Kenichi Handa <handa@m17n.org>
parents:
23648
diff
changeset
|
543 : (charset = CHAR_FIELD2 (c) + 0x70, \ |
67907ea2c6ac
(SPLIT_NON_ASCII_CHAR): Check dimension of an invalid
Kenichi Handa <handa@m17n.org>
parents:
23648
diff
changeset
|
544 c1 = CHAR_FIELD3 (c), \ |
67907ea2c6ac
(SPLIT_NON_ASCII_CHAR): Check dimension of an invalid
Kenichi Handa <handa@m17n.org>
parents:
23648
diff
changeset
|
545 c2 = -1)) |
17052 | 546 |
19319 | 547 /* The charset of character C is stored in CHARSET, and the |
548 position-codes of C are stored in C1 and C2. | |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
549 We store -1 in C2 if the dimension of the charset 1. */ |
19319 | 550 |
17052 | 551 #define SPLIT_CHAR(c, charset, c1, c2) \ |
552 (SINGLE_BYTE_CHAR_P (c) \ | |
17321
9f837bea89e3
(CHARSET_TABLE_ENTRY): Handle ASCII charset correctly.
Kenichi Handa <handa@m17n.org>
parents:
17185
diff
changeset
|
553 ? charset = CHARSET_ASCII, c1 = (c), c2 = -1 \ |
17052 | 554 : SPLIT_NON_ASCII_CHAR (c, charset, c1, c2)) |
555 | |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
556 /* Return 1 iff character C has valid printable glyph. */ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
557 #define CHAR_PRINTABLE_P(c) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
558 (SINGLE_BYTE_CHAR_P (c) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
559 || ((c) >= MIN_CHAR_COMPOSITION \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
560 ? (c) < MAX_CHAR \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
561 : char_printable_p (c))) |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
562 |
19319 | 563 /* The charset of the character at STR is stored in CHARSET, and the |
564 position-codes are stored in C1 and C2. | |
565 We store -1 in C2 if the character is just 2 bytes. | |
566 | |
17052 | 567 If the character is a composite character, the upper 7-bit and |
568 lower 7-bit of CMPCHAR-ID are set in C1 and C2 respectively. No | |
569 range checking. */ | |
19319 | 570 |
17052 | 571 #define SPLIT_STRING(str, len, charset, c1, c2) \ |
572 ((BYTES_BY_CHAR_HEAD ((unsigned char) *(str)) < 2 \ | |
573 || BYTES_BY_CHAR_HEAD ((unsigned char) *(str)) > len \ | |
20352
e9b5f67264cc
(SPLIT_STRING): Remove extra argument to
Andreas Schwab <schwab@suse.de>
parents:
20308
diff
changeset
|
574 || split_non_ascii_string (str, len, &charset, &c1, &c2) < 0) \ |
17052 | 575 ? c1 = *(str), charset = CHARSET_ASCII \ |
576 : charset) | |
577 | |
578 /* Mapping table from ISO2022's charset (specified by DIMENSION, | |
579 CHARS, and FINAL_CHAR) to Emacs' charset. Should be accessed by | |
580 macro ISO_CHARSET_TABLE (DIMENSION, CHARS, FINAL_CHAR). */ | |
581 extern int iso_charset_table[2][2][128]; | |
582 | |
583 #define ISO_CHARSET_TABLE(dimension, chars, final_char) \ | |
584 iso_charset_table[XINT (dimension) - 1][XINT (chars) > 94][XINT (final_char)] | |
585 | |
586 #define BASE_LEADING_CODE_P(c) (BYTES_BY_CHAR_HEAD ((unsigned char) (c)) > 1) | |
587 | |
23130 | 588 /* Return how many bytes C will occupy in a multibyte buffer. */ |
23766
5ee484eaf2bb
(CHAR_BYTES): If C has modifier bits, return 1.
Kenichi Handa <handa@m17n.org>
parents:
23719
diff
changeset
|
589 #define CHAR_BYTES(c) \ |
5ee484eaf2bb
(CHAR_BYTES): If C has modifier bits, return 1.
Kenichi Handa <handa@m17n.org>
parents:
23719
diff
changeset
|
590 ((SINGLE_BYTE_CHAR_P ((c)) || ((c) & ~GLYPH_MASK_CHAR)) ? 1 : char_bytes (c)) |
23130 | 591 |
17052 | 592 /* The following two macros CHAR_STRING and STRING_CHAR are the main |
593 entry points to convert between Emacs two types of character | |
594 representations: multi-byte form and single-word form (character | |
595 code). */ | |
596 | |
597 /* Set STR a pointer to the multi-byte form of the character C. If C | |
598 is not a composite character, the multi-byte form is set in WORKBUF | |
599 and STR points WORKBUF. The caller should allocate at least 4-byte | |
600 area at WORKBUF in advance. Returns the length of the multi-byte | |
17833
59aa4a0772f6
(VALID_CHAR_P): New macro.
Kenichi Handa <handa@m17n.org>
parents:
17726
diff
changeset
|
601 form. If C is an invalid character code, signal an error. */ |
17052 | 602 |
603 #define CHAR_STRING(c, workbuf, str) \ | |
604 (SINGLE_BYTE_CHAR_P (c) \ | |
605 ? *(str = workbuf) = (unsigned char)(c), 1 \ | |
21416
384d40966004
(CHAR_STRING): Cast to unsigned char ** explicitly.
Karl Heuer <kwzh@gnu.org>
parents:
21033
diff
changeset
|
606 : non_ascii_char_to_string (c, workbuf, (unsigned char **)&str)) |
17052 | 607 |
608 /* Return a character code of the character of which multi-byte form | |
609 is at STR and the length is LEN. If STR doesn't contain valid | |
610 multi-byte form, only the first byte in STR is returned. */ | |
611 | |
23653
67907ea2c6ac
(SPLIT_NON_ASCII_CHAR): Check dimension of an invalid
Kenichi Handa <handa@m17n.org>
parents:
23648
diff
changeset
|
612 #define STRING_CHAR(str, len) \ |
67907ea2c6ac
(SPLIT_NON_ASCII_CHAR): Check dimension of an invalid
Kenichi Handa <handa@m17n.org>
parents:
23648
diff
changeset
|
613 (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
|
614 ? (unsigned char) *(str) \ |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
615 : string_to_non_ascii_char (str, len, 0)) |
17052 | 616 |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
617 /* 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
|
618 length of the multi-byte form. Just to know the length, use |
17052 | 619 MULTIBYTE_FORM_LENGTH. */ |
620 | |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
621 #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
|
622 (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
|
623 ? ((actual_len) = 1), (unsigned char) *(str) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
624 : string_to_non_ascii_char (str, len, &(actual_len))) |
22184
003ac1231096
(STRING_CHAR_AND_CHAR_LENGTH): New macro.
Kenichi Handa <handa@m17n.org>
parents:
22167
diff
changeset
|
625 |
003ac1231096
(STRING_CHAR_AND_CHAR_LENGTH): New macro.
Kenichi Handa <handa@m17n.org>
parents:
22167
diff
changeset
|
626 /* This is like STRING_CHAR_AND_LENGTH but the third arg ACTUAL_LEN |
003ac1231096
(STRING_CHAR_AND_CHAR_LENGTH): New macro.
Kenichi Handa <handa@m17n.org>
parents:
22167
diff
changeset
|
627 does not include garbage bytes following the multibyte character. */ |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
628 #define STRING_CHAR_AND_CHAR_LENGTH STRING_CHAR_AND_LENGTH |
17052 | 629 |
20589
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
630 /* 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
|
631 at byte position BYTEIDX, character position CHARIDX. |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
632 Store it into OUTPUT. |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
633 |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
634 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
|
635 BYTEIDX and CHARIDX must be lvalues; |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
636 we increment them past the character fetched. */ |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
637 |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
638 #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
|
639 if (1) \ |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
640 { \ |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
641 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
|
642 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
|
643 int actual_len; \ |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
644 \ |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
645 OUTPUT \ |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
646 = 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
|
647 fetch_string_char_space_left, actual_len); \ |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
648 \ |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
649 BYTEIDX += actual_len; \ |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
650 CHARIDX++; \ |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
651 } \ |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
652 else |
3acb053e757e
(FETCH_STRING_CHAR_ADVANCE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20531
diff
changeset
|
653 |
17052 | 654 /* Return the length of the multi-byte form at string STR of length LEN. */ |
655 | |
21444
0cba6f211d7c
(MULTIBYTE_FORM_LENGTH): Don't check LEN here.
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
656 #define MULTIBYTE_FORM_LENGTH(str, len) \ |
0cba6f211d7c
(MULTIBYTE_FORM_LENGTH): Don't check LEN here.
Kenichi Handa <handa@m17n.org>
parents:
21419
diff
changeset
|
657 (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
|
658 ? 1 \ |
17052 | 659 : multibyte_form_length (str, len)) |
660 | |
661 /* Set C a (possibly multibyte) character at P. P points into a | |
662 string which is the virtual concatenation of STR1 (which ends at | |
663 END1) or STR2 (which ends at END2). */ | |
664 | |
665 #define GET_CHAR_AFTER_2(c, p, str1, end1, str2, end2) \ | |
666 do { \ | |
667 const char *dtemp = (p) == (end1) ? (str2) : (p); \ | |
668 const char *dlimit = ((p) >= (str1) && (p) < (end1)) ? (end1) : (end2); \ | |
669 c = STRING_CHAR (dtemp, dlimit - dtemp); \ | |
670 } while (0) | |
671 | |
672 /* Set C a (possibly multibyte) character before P. P points into a | |
673 string which is the virtual concatenation of STR1 (which ends at | |
674 END1) or STR2 (which ends at END2). */ | |
675 | |
676 #define GET_CHAR_BEFORE_2(c, p, str1, end1, str2, end2) \ | |
677 do { \ | |
678 const char *dtemp = (p); \ | |
679 const char *dlimit = ((p) > (str2) && (p) <= (end2)) ? (str2) : (str1); \ | |
680 while (dtemp-- > dlimit && (unsigned char) *dtemp >= 0xA0); \ | |
681 c = STRING_CHAR (dtemp, p - dtemp); \ | |
682 } while (0) | |
683 | |
684 #ifdef emacs | |
685 | |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
686 /* 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
|
687 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
|
688 *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
|
689 '\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
|
690 #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
|
691 do { \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
692 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
|
693 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
|
694 { \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
695 int len, bytes; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
696 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
|
697 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
|
698 pos_byte += bytes; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
699 } \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
700 else \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
701 pos_byte++; \ |
17052 | 702 } while (0) |
703 | |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
704 /* 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
|
705 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
|
706 #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
|
707 do { \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
708 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
|
709 \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
710 pos_byte--; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
711 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
|
712 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
|
713 else \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
714 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
|
715 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
|
716 { \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
717 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
|
718 int len, bytes; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
719 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
|
720 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
|
721 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
|
722 if (bytes == len) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
723 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
|
724 } \ |
20531
f019e056ad9a
(CHAR_HEAD_P): Take char, not pointer, as arg.
Richard M. Stallman <rms@gnu.org>
parents:
20352
diff
changeset
|
725 } while (0) |
f019e056ad9a
(CHAR_HEAD_P): Take char, not pointer, as arg.
Richard M. Stallman <rms@gnu.org>
parents:
20352
diff
changeset
|
726 |
f019e056ad9a
(CHAR_HEAD_P): Take char, not pointer, as arg.
Richard M. Stallman <rms@gnu.org>
parents:
20352
diff
changeset
|
727 /* 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
|
728 |
20904
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
729 #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
|
730 do \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
731 { \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
732 (charpos)++; \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
733 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
|
734 (bytepos)++; \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
735 else \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
736 INC_POS ((bytepos)); \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
737 } \ |
20531
f019e056ad9a
(CHAR_HEAD_P): Take char, not pointer, as arg.
Richard M. Stallman <rms@gnu.org>
parents:
20352
diff
changeset
|
738 while (0) |
f019e056ad9a
(CHAR_HEAD_P): Take char, not pointer, as arg.
Richard M. Stallman <rms@gnu.org>
parents:
20352
diff
changeset
|
739 |
f019e056ad9a
(CHAR_HEAD_P): Take char, not pointer, as arg.
Richard M. Stallman <rms@gnu.org>
parents:
20352
diff
changeset
|
740 /* 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
|
741 |
20904
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
742 #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
|
743 do \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
744 { \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
745 (charpos)--; \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
746 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
|
747 (bytepos)--; \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
748 else \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
749 DEC_POS ((bytepos)); \ |
79d73f468e38
(INC_BOTH, DEC_BOTH): In unibyte mode, simply increment bytepos.
Richard M. Stallman <rms@gnu.org>
parents:
20759
diff
changeset
|
750 } \ |
20531
f019e056ad9a
(CHAR_HEAD_P): Take char, not pointer, as arg.
Richard M. Stallman <rms@gnu.org>
parents:
20352
diff
changeset
|
751 while (0) |
f019e056ad9a
(CHAR_HEAD_P): Take char, not pointer, as arg.
Richard M. Stallman <rms@gnu.org>
parents:
20352
diff
changeset
|
752 |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
753 /* 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
|
754 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
|
755 *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
|
756 '\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
|
757 #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
|
758 do { \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
759 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
|
760 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
|
761 { \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
762 int len, bytes; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
763 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
|
764 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
|
765 pos_byte += bytes; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
766 } \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
767 else \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
768 pos_byte++; \ |
20531
f019e056ad9a
(CHAR_HEAD_P): Take char, not pointer, as arg.
Richard M. Stallman <rms@gnu.org>
parents:
20352
diff
changeset
|
769 } while (0) |
f019e056ad9a
(CHAR_HEAD_P): Take char, not pointer, as arg.
Richard M. Stallman <rms@gnu.org>
parents:
20352
diff
changeset
|
770 |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
771 /* 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
|
772 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
|
773 #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
|
774 do { \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
775 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
|
776 pos_byte--; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
777 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
|
778 { \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
779 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
|
780 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
|
781 } \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
782 else \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
783 { \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
784 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
|
785 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
|
786 } \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
787 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
|
788 { \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
789 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
|
790 int len, bytes; \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
791 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
|
792 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
|
793 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
|
794 if (bytes == len) \ |
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
795 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
|
796 } \ |
17052 | 797 } while (0) |
798 | |
799 #endif /* emacs */ | |
800 | |
801 /* Maximum counts of components in one composite character. */ | |
802 #define MAX_COMPONENT_COUNT 16 | |
803 | |
804 /* Structure to hold information of a composite character. */ | |
805 struct cmpchar_info { | |
806 /* Byte length of the composite character. */ | |
807 int len; | |
808 | |
809 /* Multi-byte form of the composite character. */ | |
810 unsigned char *data; | |
811 | |
812 /* Length of glyph codes. */ | |
813 int glyph_len; | |
814 | |
815 /* Width of the overall glyph of the composite character. */ | |
816 int width; | |
817 | |
818 /* Pointer to an array of glyph codes of the composite character. | |
819 This actually contains only character code, no face. */ | |
820 GLYPH *glyph; | |
821 | |
822 /* Pointer to an array of composition rules. The value has the form: | |
823 (0xA0 + ((GLOBAL-REF-POINT << 2) | NEW-REF-POINT)) | |
824 where each XXX-REF-POINT is 0..8. */ | |
825 unsigned char *cmp_rule; | |
826 | |
827 /* Pointer to an array of x-axis offset of left edge of glyphs | |
828 relative to the left of of glyph[0] except for the first element | |
829 which is the absolute offset from the left edge of overall glyph. | |
830 The actual pixel offset should be calculated by multiplying each | |
831 frame's one column width by this value: | |
832 (i.e. FONT_WIDTH (f->output_data.x->font) * col_offset[N]). */ | |
833 float *col_offset; | |
834 | |
835 /* Work slot used by `dumpglyphs' (xterm.c). */ | |
836 int face_work; | |
837 }; | |
838 | |
839 /* Table of pointers to the structure `cmpchar_info' indexed by | |
840 CMPCHAR-ID. */ | |
841 extern struct cmpchar_info **cmpchar_table; | |
842 /* Number of the current composite characters. */ | |
843 extern int n_cmpchars; | |
844 | |
845 /* This is the maximum length of multi-byte form. */ | |
846 #define MAX_LENGTH_OF_MULTI_BYTE_FORM (MAX_COMPONENT_COUNT * 6) | |
847 | |
17185
0d5a1bae9d73
(MAX_CHARSET): Definition changed to the actual
Kenichi Handa <handa@m17n.org>
parents:
17120
diff
changeset
|
848 /* Maximum character code currently used. */ |
0d5a1bae9d73
(MAX_CHARSET): Definition changed to the actual
Kenichi Handa <handa@m17n.org>
parents:
17120
diff
changeset
|
849 #define MAX_CHAR (MIN_CHAR_COMPOSITION + n_cmpchars) |
0d5a1bae9d73
(MAX_CHARSET): Definition changed to the actual
Kenichi Handa <handa@m17n.org>
parents:
17120
diff
changeset
|
850 |
20932
3c2c8431c51d
(INC_POS): Use macro BASE_LEADING_CODE_P.
Kenichi Handa <handa@m17n.org>
parents:
20904
diff
changeset
|
851 extern void invalid_character P_ ((int)); |
3c2c8431c51d
(INC_POS): Use macro BASE_LEADING_CODE_P.
Kenichi Handa <handa@m17n.org>
parents:
20904
diff
changeset
|
852 |
22120
90f77c401689
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21444
diff
changeset
|
853 extern int translate_char P_ ((Lisp_Object, int, int, int, int)); |
21419
95aae2ff5fcd
(string_to_non_ascii_char, multibyte_form_length)
Karl Heuer <kwzh@gnu.org>
parents:
21416
diff
changeset
|
854 extern int split_non_ascii_string P_ ((const unsigned char *, int, int *, |
20308
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20257
diff
changeset
|
855 unsigned char *, unsigned char *)); |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
856 extern int string_to_non_ascii_char P_ ((const unsigned char *, int, int *)); |
20308
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20257
diff
changeset
|
857 extern int non_ascii_char_to_string P_ ((int, unsigned char *, unsigned char **)); |
25505
4d5f87073d63
(MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
Kenichi Handa <handa@m17n.org>
parents:
25234
diff
changeset
|
858 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
|
859 extern int multibyte_form_length P_ ((const unsigned char *, int)); |
95aae2ff5fcd
(string_to_non_ascii_char, multibyte_form_length)
Karl Heuer <kwzh@gnu.org>
parents:
21416
diff
changeset
|
860 extern int str_cmpchar_id P_ ((const unsigned char *, int)); |
20308
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20257
diff
changeset
|
861 extern int get_charset_id P_ ((Lisp_Object)); |
23667
0351c9791549
(cmpchar_component): Proto-type adjusted.
Kenichi Handa <handa@m17n.org>
parents:
23653
diff
changeset
|
862 extern int cmpchar_component P_ ((int, int, int)); |
22167
bb7c53dee594
(find_charset_in_str): Number of arguments fixed.
Kenichi Handa <handa@m17n.org>
parents:
22120
diff
changeset
|
863 extern int find_charset_in_str P_ ((unsigned char *, int, int *, |
23882
16d0232006fb
(find_charset_in_str): Update declaration.
Kenichi Handa <handa@m17n.org>
parents:
23810
diff
changeset
|
864 Lisp_Object, int, int)); |
20308
8d520e3dcb86
Add more prototypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
20257
diff
changeset
|
865 extern int strwidth P_ ((unsigned char *, int)); |
23130 | 866 extern int char_bytes P_ ((int)); |
23810 | 867 extern int char_valid_p P_ ((int, int)); |
17726 | 868 |
22184
003ac1231096
(STRING_CHAR_AND_CHAR_LENGTH): New macro.
Kenichi Handa <handa@m17n.org>
parents:
22167
diff
changeset
|
869 extern Lisp_Object Vtranslation_table_vector; |
22120
90f77c401689
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21444
diff
changeset
|
870 |
22184
003ac1231096
(STRING_CHAR_AND_CHAR_LENGTH): New macro.
Kenichi Handa <handa@m17n.org>
parents:
22167
diff
changeset
|
871 /* Return a translation table of id number ID. */ |
22120
90f77c401689
Change terms unify/unification to
Kenichi Handa <handa@m17n.org>
parents:
21444
diff
changeset
|
872 #define GET_TRANSLATION_TABLE(id) \ |
22184
003ac1231096
(STRING_CHAR_AND_CHAR_LENGTH): New macro.
Kenichi Handa <handa@m17n.org>
parents:
22167
diff
changeset
|
873 (XCONS(XVECTOR(Vtranslation_table_vector)->contents[(id)])->cdr) |
20719 | 874 |
23488
958ab288116d
(Vauto_fill_chars): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
23202
diff
changeset
|
875 /* 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
|
876 extern Lisp_Object Vauto_fill_chars; |
958ab288116d
(Vauto_fill_chars): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
23202
diff
changeset
|
877 |
20719 | 878 /* Copy LEN bytes from FROM to TO. This macro should be used only |
879 when a caller knows that LEN is short and the obvious copy loop is | |
880 faster than calling bcopy which has some overhead. */ | |
881 | |
882 #define BCOPY_SHORT(from, to, len) \ | |
883 do { \ | |
884 int i = len; \ | |
25234
17336b4fc693
(BCOPY_SHORT): Fix typo `unsigined'.
Karl Heuer <kwzh@gnu.org>
parents:
25016
diff
changeset
|
885 unsigned char *from_p = from, *to_p = to; \ |
20719 | 886 while (i--) *from_p++ = *to_p++; \ |
887 } while (0) | |
888 | |
25016
15a2436cb80f
(CHAR_LEN): Moved here from dispextern.h.
Gerd Moellmann <gerd@gnu.org>
parents:
24779
diff
changeset
|
889 /* Length of C in bytes. */ |
15a2436cb80f
(CHAR_LEN): Moved here from dispextern.h.
Gerd Moellmann <gerd@gnu.org>
parents:
24779
diff
changeset
|
890 |
15a2436cb80f
(CHAR_LEN): Moved here from dispextern.h.
Gerd Moellmann <gerd@gnu.org>
parents:
24779
diff
changeset
|
891 #define CHAR_LEN(C) \ |
15a2436cb80f
(CHAR_LEN): Moved here from dispextern.h.
Gerd Moellmann <gerd@gnu.org>
parents:
24779
diff
changeset
|
892 (CHAR_CHARSET ((C)) == CHARSET_COMPOSITION \ |
15a2436cb80f
(CHAR_LEN): Moved here from dispextern.h.
Gerd Moellmann <gerd@gnu.org>
parents:
24779
diff
changeset
|
893 ? cmpchar_table[COMPOSITE_CHAR_ID ((C))]->len \ |
15a2436cb80f
(CHAR_LEN): Moved here from dispextern.h.
Gerd Moellmann <gerd@gnu.org>
parents:
24779
diff
changeset
|
894 : CHARSET_BYTES (CHAR_CHARSET ((C)))) |
15a2436cb80f
(CHAR_LEN): Moved here from dispextern.h.
Gerd Moellmann <gerd@gnu.org>
parents:
24779
diff
changeset
|
895 |
15a2436cb80f
(CHAR_LEN): Moved here from dispextern.h.
Gerd Moellmann <gerd@gnu.org>
parents:
24779
diff
changeset
|
896 |
17052 | 897 #endif /* _CHARSET_H */ |