(STRING_CHAR_AND_CHAR_LENGTH): New macro.
[bpt/emacs.git] / src / charset.c
CommitLineData
75c8c592 1/* Basic multilingual character support.
35e623fb 2 Copyright (C) 1995, 1997, 1998 Electrotechnical Laboratory, JAPAN.
75c8c592 3 Licensed to the Free Software Foundation.
4ed46869 4
369314dc
KH
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2, or (at your option)
10any later version.
4ed46869 11
369314dc
KH
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
4ed46869 16
369314dc
KH
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
19the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
4ed46869
KH
21
22/* At first, see the document in `charset.h' to understand the code in
23 this file. */
24
25#include <stdio.h>
26
27#ifdef emacs
28
29#include <sys/types.h>
30#include <config.h>
31#include "lisp.h"
32#include "buffer.h"
33#include "charset.h"
34#include "coding.h"
fc6b09bf 35#include "disptab.h"
4ed46869
KH
36
37#else /* not emacs */
38
39#include "mulelib.h"
40
41#endif /* emacs */
42
43Lisp_Object Qcharset, Qascii, Qcomposition;
44
45/* Declaration of special leading-codes. */
46int leading_code_composition; /* for composite characters */
47int leading_code_private_11; /* for private DIMENSION1 of 1-column */
48int leading_code_private_12; /* for private DIMENSION1 of 2-column */
49int leading_code_private_21; /* for private DIMENSION2 of 1-column */
50int leading_code_private_22; /* for private DIMENSION2 of 2-column */
51
52/* Declaration of special charsets. */
53int charset_ascii; /* ASCII */
54int charset_composition; /* for a composite character */
55int charset_latin_iso8859_1; /* ISO8859-1 (Latin-1) */
56int charset_jisx0208_1978; /* JISX0208.1978 (Japanese Kanji old set) */
57int charset_jisx0208; /* JISX0208.1983 (Japanese Kanji) */
58int charset_katakana_jisx0201; /* JISX0201.Kana (Japanese Katakana) */
59int charset_latin_jisx0201; /* JISX0201.Roman (Japanese Roman) */
60int charset_big5_1; /* Big5 Level 1 (Chinese Traditional) */
61int charset_big5_2; /* Big5 Level 2 (Chinese Traditional) */
62
b0e3cf2b
KH
63int min_composite_char;
64
4ed46869
KH
65Lisp_Object Qcharset_table;
66
67/* A char-table containing information of each character set. */
68Lisp_Object Vcharset_table;
69
70/* A vector of charset symbol indexed by charset-id. This is used
71 only for returning charset symbol from C functions. */
72Lisp_Object Vcharset_symbol_table;
73
74/* A list of charset symbols ever defined. */
75Lisp_Object Vcharset_list;
76
b4e9dd77
KH
77/* Vector of character translation table ever defined.
78 ID of a character translation table is used to index this vector. */
79Lisp_Object Vcharacter_translation_table_vector;
b0e3cf2b 80
4ed46869
KH
81/* Tables used by macros BYTES_BY_CHAR_HEAD and WIDTH_BY_CHAR_HEAD. */
82int bytes_by_char_head[256];
83int width_by_char_head[256];
84
85/* Mapping table from ISO2022's charset (specified by DIMENSION,
86 CHARS, and FINAL-CHAR) to Emacs' charset. */
87int iso_charset_table[2][2][128];
88
513ee442
KH
89/* Table of pointers to the structure `cmpchar_info' indexed by
90 CMPCHAR-ID. */
91struct cmpchar_info **cmpchar_table;
92/* The current size of `cmpchar_table'. */
93static int cmpchar_table_size;
94/* Number of the current composite characters. */
95int n_cmpchars;
96
4ed46869
KH
97/* Variables used locally in the macro FETCH_MULTIBYTE_CHAR. */
98unsigned char *_fetch_multibyte_char_p;
99int _fetch_multibyte_char_len;
100
35e623fb
RS
101/* Offset to add to a non-ASCII value when inserting it. */
102int nonascii_insert_offset;
103
4cf9710d
RS
104/* Translation table for converting non-ASCII unibyte characters
105 to multibyte codes, or nil. */
b4e9dd77 106Lisp_Object Vnonascii_translation_table;
4cf9710d 107
046b1f03
RS
108#define min(X, Y) ((X) < (Y) ? (X) : (Y))
109#define max(X, Y) ((X) > (Y) ? (X) : (Y))
110\f
93bcb785
KH
111void
112invalid_character (c)
113 int c;
114{
115 error ("Invalid character: %o, %d, 0x%x", c);
116}
117
118
4ed46869
KH
119/* Set STR a pointer to the multi-byte form of the character C. If C
120 is not a composite character, the multi-byte form is set in WORKBUF
121 and STR points WORKBUF. The caller should allocate at least 4-byte
122 area at WORKBUF in advance. Returns the length of the multi-byte
bd4c6dd0
KH
123 form. If C is an invalid character to have a multi-byte form,
124 signal an error.
4ed46869
KH
125
126 Use macro `CHAR_STRING (C, WORKBUF, STR)' instead of calling this
127 function directly if C can be an ASCII character. */
128
129int
130non_ascii_char_to_string (c, workbuf, str)
131 int c;
132 unsigned char *workbuf, **str;
133{
6dc0722d 134 int charset, c1, c2;
4ed46869
KH
135
136 if (COMPOSITE_CHAR_P (c))
137 {
138 int cmpchar_id = COMPOSITE_CHAR_ID (c);
139
140 if (cmpchar_id < n_cmpchars)
141 {
142 *str = cmpchar_table[cmpchar_id]->data;
143 return cmpchar_table[cmpchar_id]->len;
144 }
145 else
146 {
93bcb785 147 invalid_character (c);
4ed46869
KH
148 }
149 }
150
151 SPLIT_NON_ASCII_CHAR (c, charset, c1, c2);
bd4c6dd0
KH
152 if (!charset
153 || ! CHARSET_DEFINED_P (charset)
154 || c1 >= 0 && c1 < 32
155 || c2 >= 0 && c2 < 32)
93bcb785 156 invalid_character (c);
4ed46869
KH
157
158 *str = workbuf;
159 *workbuf++ = CHARSET_LEADING_CODE_BASE (charset);
160 if (*workbuf = CHARSET_LEADING_CODE_EXT (charset))
161 workbuf++;
162 *workbuf++ = c1 | 0x80;
6dc0722d 163 if (c2 >= 0)
4ed46869
KH
164 *workbuf++ = c2 | 0x80;
165
166 return (workbuf - *str);
167}
168
169/* Return a non-ASCII character of which multi-byte form is at STR of
170 length LEN. If ACTUAL_LEN is not NULL, the actual length of the
171 character is set to the address ACTUAL_LEN.
172
173 Use macro `STRING_CHAR (STR, LEN)' instead of calling this function
174 directly if STR can hold an ASCII character. */
175
dfcf069d 176int
4ed46869 177string_to_non_ascii_char (str, len, actual_len)
8867de67 178 const unsigned char *str;
4ed46869
KH
179 int len, *actual_len;
180{
181 int charset;
182 unsigned char c1, c2;
90d7b74e 183 register int c, bytes;
4ed46869 184
90d7b74e
KH
185 c = *str;
186 bytes = 1;
187
188 if (BASE_LEADING_CODE_P (c))
4ed46869 189 {
90d7b74e
KH
190 while (bytes < len && ! CHAR_HEAD_P (str[bytes])) bytes++;
191
192 if (c == LEADING_CODE_COMPOSITION)
193 {
194 int cmpchar_id = str_cmpchar_id (str, bytes);
195
196 if (cmpchar_id >= 0)
197 c = MAKE_COMPOSITE_CHAR (cmpchar_id);
198 }
199 else
200 {
201 int charset = c, c1, c2 = 0;
4ed46869 202
90d7b74e
KH
203 str++;
204 if (c >= LEADING_CODE_PRIVATE_11)
205 charset = *str++;
206 if (BYTES_BY_CHAR_HEAD (c) <= bytes && CHARSET_DEFINED_P (charset))
207 {
208 c1 = *str++ & 0x7f;
209 if (CHARSET_DIMENSION (charset) == 2)
210 c2 = *str & 0x7F;
211 c = MAKE_NON_ASCII_CHAR (charset, c1, c2);
212 }
213 }
214 }
4ed46869
KH
215
216 if (actual_len)
90d7b74e 217 *actual_len = bytes;
4ed46869
KH
218 return c;
219}
220
221/* Return the length of the multi-byte form at string STR of length LEN. */
222int
223multibyte_form_length (str, len)
8867de67 224 const unsigned char *str;
4ed46869
KH
225 int len;
226{
90d7b74e 227 int bytes = 1;
4ed46869 228
90d7b74e
KH
229 if (BASE_LEADING_CODE_P (*str))
230 while (bytes < len && ! CHAR_HEAD_P (str[bytes])) bytes++;
4ed46869 231
90d7b74e 232 return bytes;
4ed46869
KH
233}
234
235/* Check if string STR of length LEN contains valid multi-byte form of
236 a character. If valid, charset and position codes of the character
237 is set at *CHARSET, *C1, and *C2, and return 0. If not valid,
238 return -1. This should be used only in the macro SPLIT_STRING
239 which checks range of STR in advance. */
240
dfcf069d 241int
4ed46869 242split_non_ascii_string (str, len, charset, c1, c2)
8867de67
KH
243 register const unsigned char *str;
244 register unsigned char *c1, *c2;
4ed46869
KH
245 register int len, *charset;
246{
247 register unsigned int cs = *str++;
248
249 if (cs == LEADING_CODE_COMPOSITION)
250 {
251 int cmpchar_id = str_cmpchar_id (str - 1, len);
252
253 if (cmpchar_id < 0)
254 return -1;
255 *charset = cs, *c1 = cmpchar_id >> 7, *c2 = cmpchar_id & 0x7F;
256 }
257 else if ((cs < LEADING_CODE_PRIVATE_11 || (cs = *str++) >= 0xA0)
258 && CHARSET_DEFINED_P (cs))
259 {
260 *charset = cs;
261 if (*str < 0xA0)
262 return -1;
263 *c1 = (*str++) & 0x7F;
264 if (CHARSET_DIMENSION (cs) == 2)
265 {
266 if (*str < 0xA0)
267 return -1;
268 *c2 = (*str++) & 0x7F;
269 }
270 }
271 else
272 return -1;
273 return 0;
274}
275
b4e9dd77
KH
276/* Translate character C by character translation table TABLE. If C
277 is negative, translate a character specified by CHARSET, C1, and C2
278 (C1 and C2 are code points of the character). If no translation is
279 found in TABLE, return C. */
dfcf069d 280int
b4e9dd77 281translate_char (table, c, charset, c1, c2)
23d2a7f1
KH
282 Lisp_Object table;
283 int c, charset, c1, c2;
284{
285 Lisp_Object ch;
286 int alt_charset, alt_c1, alt_c2, dimension;
287
288 if (c < 0) c = MAKE_CHAR (charset, c1, c2);
289 if (!CHAR_TABLE_P (table)
290 || (ch = Faref (table, make_number (c)), !INTEGERP (ch))
291 || XINT (ch) < 0)
292 return c;
293
294 SPLIT_CHAR (XFASTINT (ch), alt_charset, alt_c1, alt_c2);
295 dimension = CHARSET_DIMENSION (alt_charset);
296 if (dimension == 1 && alt_c1 > 0 || dimension == 2 && alt_c2 > 0)
297 /* CH is not a generic character, just return it. */
298 return XFASTINT (ch);
299
300 /* Since CH is a generic character, we must return a specific
301 charater which has the same position codes as C from CH. */
302 if (charset < 0)
303 SPLIT_CHAR (c, charset, c1, c2);
304 if (dimension != CHARSET_DIMENSION (charset))
305 /* We can't make such a character because of dimension mismatch. */
306 return c;
23d2a7f1
KH
307 return MAKE_CHAR (alt_charset, c1, c2);
308}
309
d2665018 310/* Convert the unibyte character C to multibyte based on
b4e9dd77 311 Vnonascii_translation_table or nonascii_insert_offset. If they can't
d2665018
KH
312 convert C to a valid multibyte character, convert it based on
313 DEFAULT_NONASCII_INSERT_OFFSET which makes C a Latin-1 character. */
35e623fb 314
dfcf069d 315int
35e623fb
RS
316unibyte_char_to_multibyte (c)
317 int c;
318{
d2665018 319 if (c >= 0240 && c < 0400)
35e623fb 320 {
d2665018
KH
321 int c_save = c;
322
b4e9dd77
KH
323 if (! NILP (Vnonascii_translation_table))
324 c = XINT (Faref (Vnonascii_translation_table, make_number (c)));
4cf9710d 325 else if (nonascii_insert_offset > 0)
35e623fb 326 c += nonascii_insert_offset;
d2665018
KH
327 if (c >= 0240 && (c < 0400 || ! VALID_MULTIBYTE_CHAR_P (c)))
328 c = c_save + DEFAULT_NONASCII_INSERT_OFFSET;
35e623fb
RS
329 }
330 return c;
331}
332\f
4ed46869
KH
333/* Update the table Vcharset_table with the given arguments (see the
334 document of `define-charset' for the meaning of each argument).
335 Several other table contents are also updated. The caller should
336 check the validity of CHARSET-ID and the remaining arguments in
337 advance. */
338
339void
340update_charset_table (charset_id, dimension, chars, width, direction,
341 iso_final_char, iso_graphic_plane,
342 short_name, long_name, description)
343 Lisp_Object charset_id, dimension, chars, width, direction;
344 Lisp_Object iso_final_char, iso_graphic_plane;
345 Lisp_Object short_name, long_name, description;
346{
347 int charset = XINT (charset_id);
348 int bytes;
349 unsigned char leading_code_base, leading_code_ext;
350
6dc0722d
KH
351 if (NILP (CHARSET_TABLE_ENTRY (charset)))
352 CHARSET_TABLE_ENTRY (charset)
353 = Fmake_vector (make_number (CHARSET_MAX_IDX), Qnil);
4ed46869
KH
354
355 /* Get byte length of multibyte form, base leading-code, and
356 extended leading-code of the charset. See the comment under the
357 title "GENERAL NOTE on CHARACTER SET (CHARSET)" in charset.h. */
358 bytes = XINT (dimension);
359 if (charset < MIN_CHARSET_PRIVATE_DIMENSION1)
360 {
361 /* Official charset, it doesn't have an extended leading-code. */
362 if (charset != CHARSET_ASCII)
363 bytes += 1; /* For a base leading-code. */
364 leading_code_base = charset;
365 leading_code_ext = 0;
366 }
367 else
368 {
369 /* Private charset. */
370 bytes += 2; /* For base and extended leading-codes. */
371 leading_code_base
372 = (charset < LEADING_CODE_EXT_12
373 ? LEADING_CODE_PRIVATE_11
374 : (charset < LEADING_CODE_EXT_21
375 ? LEADING_CODE_PRIVATE_12
376 : (charset < LEADING_CODE_EXT_22
377 ? LEADING_CODE_PRIVATE_21
378 : LEADING_CODE_PRIVATE_22)));
379 leading_code_ext = charset;
380 }
381
382 CHARSET_TABLE_INFO (charset, CHARSET_ID_IDX) = charset_id;
383 CHARSET_TABLE_INFO (charset, CHARSET_BYTES_IDX) = make_number (bytes);
384 CHARSET_TABLE_INFO (charset, CHARSET_DIMENSION_IDX) = dimension;
385 CHARSET_TABLE_INFO (charset, CHARSET_CHARS_IDX) = chars;
386 CHARSET_TABLE_INFO (charset, CHARSET_WIDTH_IDX) = width;
387 CHARSET_TABLE_INFO (charset, CHARSET_DIRECTION_IDX) = direction;
388 CHARSET_TABLE_INFO (charset, CHARSET_LEADING_CODE_BASE_IDX)
389 = make_number (leading_code_base);
390 CHARSET_TABLE_INFO (charset, CHARSET_LEADING_CODE_EXT_IDX)
391 = make_number (leading_code_ext);
392 CHARSET_TABLE_INFO (charset, CHARSET_ISO_FINAL_CHAR_IDX) = iso_final_char;
393 CHARSET_TABLE_INFO (charset, CHARSET_ISO_GRAPHIC_PLANE_IDX)
394 = iso_graphic_plane;
395 CHARSET_TABLE_INFO (charset, CHARSET_SHORT_NAME_IDX) = short_name;
396 CHARSET_TABLE_INFO (charset, CHARSET_LONG_NAME_IDX) = long_name;
397 CHARSET_TABLE_INFO (charset, CHARSET_DESCRIPTION_IDX) = description;
398 CHARSET_TABLE_INFO (charset, CHARSET_PLIST_IDX) = Qnil;
399
400 {
401 /* If we have already defined a charset which has the same
402 DIMENSION, CHARS and ISO-FINAL-CHAR but the different
403 DIRECTION, we must update the entry REVERSE-CHARSET of both
404 charsets. If there's no such charset, the value of the entry
405 is set to nil. */
406 int i;
407
513ee442 408 for (i = 0; i <= MAX_CHARSET; i++)
4ed46869
KH
409 if (!NILP (CHARSET_TABLE_ENTRY (i)))
410 {
411 if (CHARSET_DIMENSION (i) == XINT (dimension)
412 && CHARSET_CHARS (i) == XINT (chars)
413 && CHARSET_ISO_FINAL_CHAR (i) == XINT (iso_final_char)
414 && CHARSET_DIRECTION (i) != XINT (direction))
415 {
416 CHARSET_TABLE_INFO (charset, CHARSET_REVERSE_CHARSET_IDX)
417 = make_number (i);
418 CHARSET_TABLE_INFO (i, CHARSET_REVERSE_CHARSET_IDX) = charset_id;
419 break;
420 }
421 }
513ee442 422 if (i > MAX_CHARSET)
4ed46869
KH
423 /* No such a charset. */
424 CHARSET_TABLE_INFO (charset, CHARSET_REVERSE_CHARSET_IDX)
425 = make_number (-1);
426 }
427
428 if (charset != CHARSET_ASCII
429 && charset < MIN_CHARSET_PRIVATE_DIMENSION1)
430 {
431 /* Update tables bytes_by_char_head and width_by_char_head. */
432 bytes_by_char_head[leading_code_base] = bytes;
433 width_by_char_head[leading_code_base] = XINT (width);
434
435 /* Update table emacs_code_class. */
436 emacs_code_class[charset] = (bytes == 2
437 ? EMACS_leading_code_2
438 : (bytes == 3
439 ? EMACS_leading_code_3
440 : EMACS_leading_code_4));
441 }
442
443 /* Update table iso_charset_table. */
444 if (ISO_CHARSET_TABLE (dimension, chars, iso_final_char) < 0)
445 ISO_CHARSET_TABLE (dimension, chars, iso_final_char) = charset;
446}
447
448#ifdef emacs
449
450/* Return charset id of CHARSET_SYMBOL, or return -1 if CHARSET_SYMBOL
451 is invalid. */
452int
453get_charset_id (charset_symbol)
454 Lisp_Object charset_symbol;
455{
456 Lisp_Object val;
457 int charset;
458
459 return ((SYMBOLP (charset_symbol)
460 && (val = Fget (charset_symbol, Qcharset), VECTORP (val))
461 && (charset = XINT (XVECTOR (val)->contents[CHARSET_ID_IDX]),
462 CHARSET_VALID_P (charset)))
463 ? charset : -1);
464}
465
466/* Return an identification number for a new private charset of
467 DIMENSION and WIDTH. If there's no more room for the new charset,
468 return 0. */
469Lisp_Object
470get_new_private_charset_id (dimension, width)
471 int dimension, width;
472{
473 int charset, from, to;
474
475 if (dimension == 1)
476 {
477 if (width == 1)
478 from = LEADING_CODE_EXT_11, to = LEADING_CODE_EXT_12;
479 else
480 from = LEADING_CODE_EXT_12, to = LEADING_CODE_EXT_21;
481 }
482 else
483 {
484 if (width == 1)
485 from = LEADING_CODE_EXT_21, to = LEADING_CODE_EXT_22;
486 else
b0e3cf2b 487 from = LEADING_CODE_EXT_22, to = LEADING_CODE_EXT_MAX + 1;
4ed46869
KH
488 }
489
490 for (charset = from; charset < to; charset++)
491 if (!CHARSET_DEFINED_P (charset)) break;
492
493 return make_number (charset < to ? charset : 0);
494}
495
496DEFUN ("define-charset", Fdefine_charset, Sdefine_charset, 3, 3, 0,
497 "Define CHARSET-ID as the identification number of CHARSET with INFO-VECTOR.\n\
23d2a7f1 498If CHARSET-ID is nil, it is decided automatically, which means CHARSET is\n\
4ed46869
KH
499 treated as a private charset.\n\
500INFO-VECTOR is a vector of the format:\n\
501 [DIMENSION CHARS WIDTH DIRECTION ISO-FINAL-CHAR ISO-GRAPHIC-PLANE\n\
502 SHORT-NAME LONG-NAME DESCRIPTION]\n\
503The meanings of each elements is as follows:\n\
504DIMENSION (integer) is the number of bytes to represent a character: 1 or 2.\n\
505CHARS (integer) is the number of characters in a dimension: 94 or 96.\n\
506WIDTH (integer) is the number of columns a character in the charset\n\
507occupies on the screen: one of 0, 1, and 2.\n\
508\n\
509DIRECTION (integer) is the rendering direction of characters in the\n\
510charset when rendering. If 0, render from right to left, else\n\
511render from left to right.\n\
512\n\
513ISO-FINAL-CHAR (character) is the final character of the\n\
514corresponding ISO 2022 charset.\n\
515\n\
516ISO-GRAPHIC-PLANE (integer) is the graphic plane to be invoked\n\
517while encoding to variants of ISO 2022 coding system, one of the\n\
518following: 0/graphic-plane-left(GL), 1/graphic-plane-right(GR).\n\
519\n\
520SHORT-NAME (string) is the short name to refer to the charset.\n\
521\n\
522LONG-NAME (string) is the long name to refer to the charset.\n\
523\n\
524DESCRIPTION (string) is the description string of the charset.")
525 (charset_id, charset_symbol, info_vector)
526 Lisp_Object charset_id, charset_symbol, info_vector;
527{
528 Lisp_Object *vec;
529
530 if (!NILP (charset_id))
531 CHECK_NUMBER (charset_id, 0);
532 CHECK_SYMBOL (charset_symbol, 1);
533 CHECK_VECTOR (info_vector, 2);
534
535 if (! NILP (charset_id))
536 {
537 if (! CHARSET_VALID_P (XINT (charset_id)))
538 error ("Invalid CHARSET: %d", XINT (charset_id));
539 else if (CHARSET_DEFINED_P (XINT (charset_id)))
540 error ("Already defined charset: %d", XINT (charset_id));
541 }
542
543 vec = XVECTOR (info_vector)->contents;
544 if (XVECTOR (info_vector)->size != 9
545 || !INTEGERP (vec[0]) || !(XINT (vec[0]) == 1 || XINT (vec[0]) == 2)
546 || !INTEGERP (vec[1]) || !(XINT (vec[1]) == 94 || XINT (vec[1]) == 96)
547 || !INTEGERP (vec[2]) || !(XINT (vec[2]) == 1 || XINT (vec[2]) == 2)
548 || !INTEGERP (vec[3]) || !(XINT (vec[3]) == 0 || XINT (vec[3]) == 1)
549 || !INTEGERP (vec[4]) || !(XINT (vec[4]) >= '0' && XINT (vec[4]) <= '~')
550 || !INTEGERP (vec[5]) || !(XINT (vec[5]) == 0 || XINT (vec[5]) == 1)
551 || !STRINGP (vec[6])
552 || !STRINGP (vec[7])
553 || !STRINGP (vec[8]))
554 error ("Invalid info-vector argument for defining charset %s",
555 XSYMBOL (charset_symbol)->name->data);
556
557 if (NILP (charset_id))
558 {
559 charset_id = get_new_private_charset_id (XINT (vec[0]), XINT (vec[2]));
560 if (XINT (charset_id) == 0)
561 error ("There's no room for a new private charset %s",
562 XSYMBOL (charset_symbol)->name->data);
563 }
564
565 update_charset_table (charset_id, vec[0], vec[1], vec[2], vec[3],
566 vec[4], vec[5], vec[6], vec[7], vec[8]);
6dc0722d 567 Fput (charset_symbol, Qcharset, CHARSET_TABLE_ENTRY (XINT (charset_id)));
4ed46869
KH
568 CHARSET_SYMBOL (XINT (charset_id)) = charset_symbol;
569 Vcharset_list = Fcons (charset_symbol, Vcharset_list);
570 return Qnil;
571}
572
3fac5a51
KH
573DEFUN ("get-unused-iso-final-char", Fget_unused_iso_final_char,
574 Sget_unused_iso_final_char, 2, 2, 0,
575 "Return an unsed ISO's final char for a charset of DIMENISION and CHARS.\n\
576DIMENSION is the number of bytes to represent a character: 1 or 2.\n\
577CHARS is the number of characters in a dimension: 94 or 96.\n\
578\n\
579This final char is for private use, thus the range is `0' (48) .. `?' (63).\n\
580If there's no unused final char for the specified kind of charset,\n\
581return nil.")
582 (dimension, chars)
583 Lisp_Object dimension, chars;
584{
585 int final_char;
586
587 CHECK_NUMBER (dimension, 0);
588 CHECK_NUMBER (chars, 1);
589 if (XINT (dimension) != 1 && XINT (dimension) != 2)
590 error ("Invalid charset dimension %d, it should be 1 or 2",
591 XINT (dimension));
592 if (XINT (chars) != 94 && XINT (chars) != 96)
593 error ("Invalid charset chars %d, it should be 94 or 96",
594 XINT (chars));
595 for (final_char = '0'; final_char <= '?'; final_char++)
596 {
597 if (ISO_CHARSET_TABLE (dimension, chars, make_number (final_char)) < 0)
598 break;
599 }
600 return (final_char <= '?' ? make_number (final_char) : Qnil);
601}
602
4ed46869
KH
603DEFUN ("declare-equiv-charset", Fdeclare_equiv_charset, Sdeclare_equiv_charset,
604 4, 4, 0,
605 "Declare a charset of DIMENSION, CHARS, FINAL-CHAR is the same as CHARSET.\n\
606CHARSET should be defined by `defined-charset' in advance.")
607 (dimension, chars, final_char, charset_symbol)
608 Lisp_Object dimension, chars, final_char, charset_symbol;
609{
610 int charset;
611
612 CHECK_NUMBER (dimension, 0);
613 CHECK_NUMBER (chars, 1);
614 CHECK_NUMBER (final_char, 2);
615 CHECK_SYMBOL (charset_symbol, 3);
616
617 if (XINT (dimension) != 1 && XINT (dimension) != 2)
618 error ("Invalid DIMENSION %d, it should be 1 or 2", XINT (dimension));
619 if (XINT (chars) != 94 && XINT (chars) != 96)
620 error ("Invalid CHARS %d, it should be 94 or 96", XINT (chars));
621 if (XINT (final_char) < '0' || XFASTINT (final_char) > '~')
622 error ("Invalid FINAL-CHAR %c, it should be `0'..`~'", XINT (chars));
623 if ((charset = get_charset_id (charset_symbol)) < 0)
624 error ("Invalid charset %s", XSYMBOL (charset_symbol)->name->data);
625
626 ISO_CHARSET_TABLE (dimension, chars, final_char) = charset;
627 return Qnil;
628}
629
630/* Return number of different charsets in STR of length LEN. In
631 addition, for each found charset N, CHARSETS[N] is set 1. The
a29e3b1b 632 caller should allocate CHARSETS (MAX_CHARSET + 1 elements) in advance.
1d67c29b
KH
633 It may lookup a translation table TABLE if supplied.
634
635 If CMPCHARP is nonzero and some composite character is found,
636 CHARSETS[128] is also set 1 and the returned number is incremented
637 by 1. */
4ed46869
KH
638
639int
1d67c29b 640find_charset_in_str (str, len, charsets, table, cmpcharp)
028d516b
KH
641 unsigned char *str;
642 int len, *charsets;
23d2a7f1 643 Lisp_Object table;
1d67c29b 644 int cmpcharp;
4ed46869 645{
733eafd8 646 register int num = 0, c;
4ed46869 647
23d2a7f1
KH
648 if (! CHAR_TABLE_P (table))
649 table = Qnil;
650
4ed46869
KH
651 while (len > 0)
652 {
05505664 653 int bytes, charset;
733eafd8 654 c = *str;
23d2a7f1 655
733eafd8 656 if (c == LEADING_CODE_COMPOSITION)
05505664 657 {
733eafd8
KH
658 int cmpchar_id = str_cmpchar_id (str, len);
659 GLYPH *glyph;
05505664 660
1d67c29b 661 if (cmpchar_id >= 0)
05505664 662 {
733eafd8
KH
663 struct cmpchar_info *cmpcharp = cmpchar_table[cmpchar_id];
664 int i;
665
666 for (i = 0; i < cmpcharp->glyph_len; i++)
667 {
668 c = cmpcharp->glyph[i];
669 if (!NILP (table))
670 {
b4e9dd77 671 if ((c = translate_char (table, c, 0, 0, 0)) < 0)
733eafd8
KH
672 c = cmpcharp->glyph[i];
673 }
674 if ((charset = CHAR_CHARSET (c)) < 0)
675 charset = CHARSET_ASCII;
676 if (!charsets[charset])
677 {
678 charsets[charset] = 1;
679 num += 1;
680 }
681 }
682 str += cmpcharp->len;
683 len -= cmpcharp->len;
1d67c29b
KH
684 if (!charsets[LEADING_CODE_COMPOSITION])
685 {
686 charsets[LEADING_CODE_COMPOSITION] = 1;
687 num += 1;
688 }
733eafd8 689 continue;
05505664 690 }
05505664 691
733eafd8
KH
692 charset = CHARSET_ASCII;
693 bytes = 1;
694 }
23d2a7f1
KH
695 else
696 {
733eafd8
KH
697 c = STRING_CHAR_AND_LENGTH (str, len, bytes);
698 if (! NILP (table))
699 {
b4e9dd77 700 int c1 = translate_char (table, c, 0, 0, 0);
733eafd8
KH
701 if (c1 >= 0)
702 c = c1;
703 }
704 charset = CHAR_CHARSET (c);
23d2a7f1 705 }
4ed46869
KH
706
707 if (!charsets[charset])
708 {
709 charsets[charset] = 1;
710 num += 1;
711 }
712 str += bytes;
713 len -= bytes;
714 }
715 return num;
716}
717
718DEFUN ("find-charset-region", Ffind_charset_region, Sfind_charset_region,
23d2a7f1 719 2, 3, 0,
4ed46869 720 "Return a list of charsets in the region between BEG and END.\n\
23d2a7f1 721BEG and END are buffer positions.\n\
b4e9dd77 722Optional arg TABLE if non-nil is a translation table to look up.")
23d2a7f1
KH
723 (beg, end, table)
724 Lisp_Object beg, end, table;
4ed46869 725{
028d516b 726 int charsets[MAX_CHARSET + 1];
6ae1f27e 727 int from, from_byte, to, stop, stop_byte, i;
4ed46869
KH
728 Lisp_Object val;
729
730 validate_region (&beg, &end);
731 from = XFASTINT (beg);
732 stop = to = XFASTINT (end);
6ae1f27e 733
4ed46869 734 if (from < GPT && GPT < to)
6ae1f27e
RS
735 {
736 stop = GPT;
737 stop_byte = GPT_BYTE;
738 }
739 else
740 stop_byte = CHAR_TO_BYTE (stop);
741
742 from_byte = CHAR_TO_BYTE (from);
743
028d516b 744 bzero (charsets, (MAX_CHARSET + 1) * sizeof (int));
4ed46869
KH
745 while (1)
746 {
6ae1f27e 747 find_charset_in_str (BYTE_POS_ADDR (from_byte), stop_byte - from_byte,
1d67c29b 748 charsets, table, 0);
4ed46869 749 if (stop < to)
6ae1f27e
RS
750 {
751 from = stop, from_byte = stop_byte;
752 stop = to, stop_byte = CHAR_TO_BYTE (stop);
753 }
4ed46869
KH
754 else
755 break;
756 }
6ae1f27e 757
4ed46869 758 val = Qnil;
513ee442 759 for (i = MAX_CHARSET; i >= 0; i--)
4ed46869
KH
760 if (charsets[i])
761 val = Fcons (CHARSET_SYMBOL (i), val);
762 return val;
763}
764
765DEFUN ("find-charset-string", Ffind_charset_string, Sfind_charset_string,
23d2a7f1
KH
766 1, 2, 0,
767 "Return a list of charsets in STR.\n\
b4e9dd77 768Optional arg TABLE if non-nil is a translation table to look up.")
23d2a7f1
KH
769 (str, table)
770 Lisp_Object str, table;
4ed46869 771{
a29e3b1b 772 int charsets[MAX_CHARSET + 1];
4ed46869
KH
773 int i;
774 Lisp_Object val;
775
776 CHECK_STRING (str, 0);
87b089ad
RS
777
778 if (! STRING_MULTIBYTE (str))
779 return Qnil;
780
a29e3b1b 781 bzero (charsets, (MAX_CHARSET + 1) * sizeof (int));
fc932ac6 782 find_charset_in_str (XSTRING (str)->data, STRING_BYTES (XSTRING (str)),
1d67c29b 783 charsets, table, 0);
4ed46869 784 val = Qnil;
513ee442 785 for (i = MAX_CHARSET; i >= 0; i--)
4ed46869
KH
786 if (charsets[i])
787 val = Fcons (CHARSET_SYMBOL (i), val);
788 return val;
789}
790\f
791DEFUN ("make-char-internal", Fmake_char_internal, Smake_char_internal, 1, 3, 0,
513ee442 792 "")
4ed46869
KH
793 (charset, code1, code2)
794 Lisp_Object charset, code1, code2;
795{
796 CHECK_NUMBER (charset, 0);
797
798 if (NILP (code1))
799 XSETFASTINT (code1, 0);
800 else
801 CHECK_NUMBER (code1, 1);
802 if (NILP (code2))
803 XSETFASTINT (code2, 0);
804 else
805 CHECK_NUMBER (code2, 2);
806
807 if (!CHARSET_DEFINED_P (XINT (charset)))
808 error ("Invalid charset: %d", XINT (charset));
809
810 return make_number (MAKE_CHAR (XINT (charset), XINT (code1), XINT (code2)));
811}
812
813DEFUN ("split-char", Fsplit_char, Ssplit_char, 1, 1, 0,
814 "Return list of charset and one or two position-codes of CHAR.")
815 (ch)
816 Lisp_Object ch;
817{
818 Lisp_Object val;
6dc0722d 819 int charset, c1, c2;
4ed46869
KH
820
821 CHECK_NUMBER (ch, 0);
822 SPLIT_CHAR (XFASTINT (ch), charset, c1, c2);
6dc0722d 823 return (c2 >= 0
4ed46869
KH
824 ? Fcons (CHARSET_SYMBOL (charset),
825 Fcons (make_number (c1), Fcons (make_number (c2), Qnil)))
826 : Fcons (CHARSET_SYMBOL (charset), Fcons (make_number (c1), Qnil)));
827}
828
829DEFUN ("char-charset", Fchar_charset, Schar_charset, 1, 1, 0,
830 "Return charset of CHAR.")
831 (ch)
832 Lisp_Object ch;
833{
834 CHECK_NUMBER (ch, 0);
835
836 return CHARSET_SYMBOL (CHAR_CHARSET (XINT (ch)));
837}
838
90d7b74e
KH
839DEFUN ("charset-after", Fcharset_after, Scharset_after, 0, 1, 0,
840 "Return charset of a character in current buffer at position POS.\n\
841If POS is nil, it defauls to the current point.")
842 (pos)
843 Lisp_Object pos;
844{
845 register int pos_byte, c, charset;
846 register unsigned char *p;
847
848 if (NILP (pos))
849 pos_byte = PT_BYTE;
850 else if (MARKERP (pos))
851 pos_byte = marker_byte_position (pos);
852 else
853 {
854 CHECK_NUMBER (pos, 0);
855 pos_byte = CHAR_TO_BYTE (XINT (pos));
856 }
857 p = BYTE_POS_ADDR (pos_byte);
858 c = STRING_CHAR (p, Z_BYTE - pos_byte);
859 charset = CHAR_CHARSET (c);
860 return CHARSET_SYMBOL (charset);
861}
862
4ed46869 863DEFUN ("iso-charset", Fiso_charset, Siso_charset, 3, 3, 0,
2b71bb78
KH
864 "Return charset of ISO's specification DIMENSION, CHARS, and FINAL-CHAR.\n\
865\n\
866ISO 2022's designation sequence (escape sequence) distinguishes charsets\n\
867by their DIMENSION, CHARS, and FINAL-CHAR,\n\
868where as Emacs distinguishes them by charset symbol.\n\
869See the documentation of the function `charset-info' for the meanings of\n\
870DIMENSION, CHARS, and FINAL-CHAR.")
4ed46869
KH
871 (dimension, chars, final_char)
872 Lisp_Object dimension, chars, final_char;
873{
874 int charset;
875
876 CHECK_NUMBER (dimension, 0);
877 CHECK_NUMBER (chars, 1);
878 CHECK_NUMBER (final_char, 2);
879
880 if ((charset = ISO_CHARSET_TABLE (dimension, chars, final_char)) < 0)
881 return Qnil;
882 return CHARSET_SYMBOL (charset);
883}
884
9d3d8cba
KH
885/* If GENERICP is nonzero, return nonzero iff C is a valid normal or
886 generic character. If GENERICP is zero, return nonzero iff C is a
887 valid normal character. Do not call this function directly,
888 instead use macro CHAR_VALID_P. */
889int
890char_valid_p (c, genericp)
891 int c, genericp;
892{
893 int charset, c1, c2;
894
895 if (c < 0)
896 return 0;
897 if (SINGLE_BYTE_CHAR_P (c))
898 return 1;
899 SPLIT_NON_ASCII_CHAR (c, charset, c1, c2);
900 if (!CHARSET_VALID_P (charset))
901 return 0;
902 return (c < MIN_CHAR_COMPOSITION
903 ? ((c & CHAR_FIELD1_MASK) /* i.e. dimension of C is two. */
904 ? (genericp && c1 == 0 && c2 == 0
905 || c1 >= 32 && c2 >= 32)
906 : (genericp && c1 == 0
907 || c1 >= 32))
908 : c < MIN_CHAR_COMPOSITION + n_cmpchars);
909}
910
911DEFUN ("char-valid-p", Fchar_valid_p, Schar_valid_p, 1, 2, 0,
a9d02884
DL
912 "Return t if OBJECT is a valid normal character.\n\
913If optional arg GENERICP is non-nil, also return t if OBJECT is\n\
9d3d8cba
KH
914a valid generic character.")
915 (object, genericp)
916 Lisp_Object object, genericp;
917{
918 if (! NATNUMP (object))
919 return Qnil;
920 return (CHAR_VALID_P (XFASTINT (object), !NILP (genericp)) ? Qt : Qnil);
921}
922
d2665018
KH
923DEFUN ("unibyte-char-to-multibyte", Funibyte_char_to_multibyte,
924 Sunibyte_char_to_multibyte, 1, 1, 0,
925 "Convert the unibyte character CH to multibyte character.\n\
340b8d58
RS
926The conversion is done based on `nonascii-translate-table' (which see)\n\
927 or `nonascii-insert-offset' (which see).")
d2665018
KH
928 (ch)
929 Lisp_Object ch;
930{
931 int c;
932
933 CHECK_NUMBER (ch, 0);
934 c = XINT (ch);
935 if (c < 0 || c >= 0400)
936 error ("Invalid unibyte character: %d", c);
937 c = unibyte_char_to_multibyte (c);
938 if (c < 0)
939 error ("Can't convert to multibyte character: %d", XINT (ch));
940 return make_number (c);
941}
942
4ed46869
KH
943DEFUN ("char-bytes", Fchar_bytes, Schar_bytes, 1, 1, 0,
944 "Return byte length of multi-byte form of CHAR.")
945 (ch)
946 Lisp_Object ch;
947{
948 Lisp_Object val;
949 int bytes;
950
951 CHECK_NUMBER (ch, 0);
952 if (COMPOSITE_CHAR_P (XFASTINT (ch)))
953 {
954 unsigned int id = COMPOSITE_CHAR_ID (XFASTINT (ch));
955
956 bytes = (id < n_cmpchars ? cmpchar_table[id]->len : 1);
957 }
958 else
959 {
960 int charset = CHAR_CHARSET (XFASTINT (ch));
961
962 bytes = CHARSET_DEFINED_P (charset) ? CHARSET_BYTES (charset) : 1;
963 }
964
965 XSETFASTINT (val, bytes);
966 return val;
967}
968
969/* Return the width of character of which multi-byte form starts with
970 C. The width is measured by how many columns occupied on the
971 screen when displayed in the current buffer. */
972
973#define ONE_BYTE_CHAR_WIDTH(c) \
974 (c < 0x20 \
975 ? (c == '\t' \
53316e55 976 ? XFASTINT (current_buffer->tab_width) \
4ed46869
KH
977 : (c == '\n' ? 0 : (NILP (current_buffer->ctl_arrow) ? 4 : 2))) \
978 : (c < 0x7f \
979 ? 1 \
980 : (c == 0x7F \
981 ? (NILP (current_buffer->ctl_arrow) ? 4 : 2) \
982 : ((! NILP (current_buffer->enable_multibyte_characters) \
983 && BASE_LEADING_CODE_P (c)) \
984 ? WIDTH_BY_CHAR_HEAD (c) \
b4e9dd77 985 : 4))))
4ed46869
KH
986
987DEFUN ("char-width", Fchar_width, Schar_width, 1, 1, 0,
988 "Return width of CHAR when displayed in the current buffer.\n\
989The width is measured by how many columns it occupies on the screen.")
990 (ch)
991 Lisp_Object ch;
992{
859f2b3c 993 Lisp_Object val, disp;
4ed46869 994 int c;
51c4025f 995 struct Lisp_Char_Table *dp = buffer_display_table ();
4ed46869
KH
996
997 CHECK_NUMBER (ch, 0);
998
859f2b3c
RS
999 c = XINT (ch);
1000
1001 /* Get the way the display table would display it. */
51c4025f 1002 disp = dp ? DISP_CHAR_VECTOR (dp, c) : Qnil;
859f2b3c
RS
1003
1004 if (VECTORP (disp))
1005 XSETINT (val, XVECTOR (disp)->size);
1006 else if (SINGLE_BYTE_CHAR_P (c))
1007 XSETINT (val, ONE_BYTE_CHAR_WIDTH (c));
4ed46869
KH
1008 else if (COMPOSITE_CHAR_P (c))
1009 {
1010 int id = COMPOSITE_CHAR_ID (XFASTINT (ch));
1011 XSETFASTINT (val, (id < n_cmpchars ? cmpchar_table[id]->width : 0));
1012 }
1013 else
1014 {
1015 int charset = CHAR_CHARSET (c);
1016
1017 XSETFASTINT (val, CHARSET_WIDTH (charset));
1018 }
1019 return val;
1020}
1021
1022/* Return width of string STR of length LEN when displayed in the
1023 current buffer. The width is measured by how many columns it
1024 occupies on the screen. */
859f2b3c 1025
4ed46869
KH
1026int
1027strwidth (str, len)
1028 unsigned char *str;
1029 int len;
1030{
1031 unsigned char *endp = str + len;
1032 int width = 0;
c4a4e28f 1033 struct Lisp_Char_Table *dp = buffer_display_table ();
4ed46869 1034
859f2b3c
RS
1035 while (str < endp)
1036 {
1037 if (*str == LEADING_CODE_COMPOSITION)
1038 {
1039 int id = str_cmpchar_id (str, endp - str);
1040
1041 if (id < 0)
1042 {
1043 width += 4;
1044 str++;
1045 }
1046 else
1047 {
1048 width += cmpchar_table[id]->width;
1049 str += cmpchar_table[id]->len;
1050 }
1051 }
1052 else
1053 {
1054 Lisp_Object disp;
e515b0a9
KH
1055 int thislen;
1056 int c = STRING_CHAR_AND_LENGTH (str, endp - str, thislen);
859f2b3c
RS
1057
1058 /* Get the way the display table would display it. */
acc35c36
RS
1059 if (dp)
1060 disp = DISP_CHAR_VECTOR (dp, c);
1061 else
1062 disp = Qnil;
859f2b3c
RS
1063
1064 if (VECTORP (disp))
e515b0a9 1065 width += XVECTOR (disp)->size;
859f2b3c 1066 else
e515b0a9 1067 width += ONE_BYTE_CHAR_WIDTH (*str);
859f2b3c 1068
e515b0a9 1069 str += thislen;
859f2b3c
RS
1070 }
1071 }
4ed46869
KH
1072 return width;
1073}
1074
1075DEFUN ("string-width", Fstring_width, Sstring_width, 1, 1, 0,
1076 "Return width of STRING when displayed in the current buffer.\n\
1077Width is measured by how many columns it occupies on the screen.\n\
046b1f03
RS
1078When calculating width of a multibyte character in STRING,\n\
1079only the base leading-code is considered; the validity of\n\
1080the following bytes is not checked.")
4ed46869
KH
1081 (str)
1082 Lisp_Object str;
1083{
1084 Lisp_Object val;
1085
1086 CHECK_STRING (str, 0);
fc932ac6
RS
1087 XSETFASTINT (val, strwidth (XSTRING (str)->data,
1088 STRING_BYTES (XSTRING (str))));
4ed46869
KH
1089 return val;
1090}
1091
1092DEFUN ("char-direction", Fchar_direction, Schar_direction, 1, 1, 0,
1093 "Return the direction of CHAR.\n\
1094The returned value is 0 for left-to-right and 1 for right-to-left.")
1095 (ch)
1096 Lisp_Object ch;
1097{
1098 int charset;
1099
1100 CHECK_NUMBER (ch, 0);
1101 charset = CHAR_CHARSET (XFASTINT (ch));
1102 if (!CHARSET_DEFINED_P (charset))
93bcb785 1103 invalid_character (XINT (ch));
4ed46869
KH
1104 return CHARSET_TABLE_INFO (charset, CHARSET_DIRECTION_IDX);
1105}
1106
af4fecb4 1107DEFUN ("chars-in-region", Fchars_in_region, Schars_in_region, 2, 2, 0,
6ae1f27e 1108 "Return number of characters between BEG and END.")
046b1f03
RS
1109 (beg, end)
1110 Lisp_Object beg, end;
1111{
6ae1f27e 1112 int from, to;
046b1f03
RS
1113
1114 from = min (XFASTINT (beg), XFASTINT (end));
a8a35e61 1115 to = max (XFASTINT (beg), XFASTINT (end));
046b1f03 1116
a8c21066 1117 return make_number (to - from);
6ae1f27e 1118}
9036eb45 1119
87b089ad
RS
1120/* Return the number of characters in the NBYTES bytes at PTR.
1121 This works by looking at the contents and checking for multibyte sequences.
1122 However, if the current buffer has enable-multibyte-characters = nil,
1123 we treat each byte as a character. */
1124
6ae1f27e
RS
1125int
1126chars_in_text (ptr, nbytes)
1127 unsigned char *ptr;
1128 int nbytes;
1129{
93bcb785 1130 unsigned char *endp, c;
6ae1f27e 1131 int chars;
046b1f03 1132
87b089ad
RS
1133 /* current_buffer is null at early stages of Emacs initialization. */
1134 if (current_buffer == 0
1135 || NILP (current_buffer->enable_multibyte_characters))
6ae1f27e 1136 return nbytes;
a8a35e61 1137
6ae1f27e
RS
1138 endp = ptr + nbytes;
1139 chars = 0;
046b1f03 1140
6ae1f27e
RS
1141 while (ptr < endp)
1142 {
93bcb785
KH
1143 c = *ptr++;
1144
1145 if (BASE_LEADING_CODE_P (c))
1146 while (ptr < endp && ! CHAR_HEAD_P (*ptr)) ptr++;
046b1f03
RS
1147 chars++;
1148 }
1149
6ae1f27e 1150 return chars;
046b1f03
RS
1151}
1152
87b089ad
RS
1153/* Return the number of characters in the NBYTES bytes at PTR.
1154 This works by looking at the contents and checking for multibyte sequences.
1155 It ignores enable-multibyte-characters. */
1156
1157int
1158multibyte_chars_in_text (ptr, nbytes)
1159 unsigned char *ptr;
1160 int nbytes;
1161{
93bcb785 1162 unsigned char *endp, c;
87b089ad
RS
1163 int chars;
1164
1165 endp = ptr + nbytes;
1166 chars = 0;
1167
1168 while (ptr < endp)
1169 {
93bcb785
KH
1170 c = *ptr++;
1171
1172 if (BASE_LEADING_CODE_P (c))
1173 while (ptr < endp && ! CHAR_HEAD_P (*ptr)) ptr++;
87b089ad
RS
1174 chars++;
1175 }
1176
1177 return chars;
1178}
1179
1180DEFUN ("string", Fstring, Sstring, 1, MANY, 0,
4ed46869 1181 "Concatenate all the argument characters and make the result a string.")
53316e55
KH
1182 (n, args)
1183 int n;
4ed46869
KH
1184 Lisp_Object *args;
1185{
53316e55 1186 int i;
4ed46869 1187 unsigned char *buf
bd4c6dd0 1188 = (unsigned char *) alloca (MAX_LENGTH_OF_MULTI_BYTE_FORM * n);
4ed46869
KH
1189 unsigned char *p = buf;
1190 Lisp_Object val;
1191
1192 for (i = 0; i < n; i++)
1193 {
1194 int c, len;
1195 unsigned char *str;
1196
1197 if (!INTEGERP (args[i]))
b0e3cf2b 1198 CHECK_NUMBER (args[i], 0);
4ed46869
KH
1199 c = XINT (args[i]);
1200 len = CHAR_STRING (c, p, str);
1201 if (p != str)
1202 /* C is a composite character. */
1203 bcopy (str, p, len);
1204 p += len;
1205 }
1206
27802600 1207 val = make_string_from_bytes (buf, n, p - buf);
4ed46869
KH
1208 return val;
1209}
1210
1211#endif /* emacs */
1212\f
1213/*** Composite characters staffs ***/
1214
1215/* Each composite character is identified by CMPCHAR-ID which is
1216 assigned when Emacs needs the character code of the composite
1217 character (e.g. when displaying it on the screen). See the
1218 document "GENERAL NOTE on COMPOSITE CHARACTER" in `charset.h' how a
1219 composite character is represented in Emacs. */
1220
1221/* If `static' is defined, it means that it is defined to null string. */
1222#ifndef static
1223/* The following function is copied from lread.c. */
1224static int
1225hash_string (ptr, len)
1226 unsigned char *ptr;
1227 int len;
1228{
1229 register unsigned char *p = ptr;
1230 register unsigned char *end = p + len;
1231 register unsigned char c;
1232 register int hash = 0;
1233
1234 while (p != end)
1235 {
1236 c = *p++;
1237 if (c >= 0140) c -= 40;
1238 hash = ((hash<<3) + (hash>>28) + c);
1239 }
1240 return hash & 07777777777;
1241}
1242#endif
1243
4ed46869
KH
1244#define CMPCHAR_HASH_TABLE_SIZE 0xFFF
1245
1246static int *cmpchar_hash_table[CMPCHAR_HASH_TABLE_SIZE];
1247
1248/* Each element of `cmpchar_hash_table' is a pointer to an array of
1249 integer, where the 1st element is the size of the array, the 2nd
1250 element is how many elements are actually used in the array, and
1251 the remaining elements are CMPCHAR-IDs of composite characters of
1252 the same hash value. */
1253#define CMPCHAR_HASH_SIZE(table) table[0]
1254#define CMPCHAR_HASH_USED(table) table[1]
1255#define CMPCHAR_HASH_CMPCHAR_ID(table, i) table[i]
1256
1257/* Return CMPCHAR-ID of the composite character in STR of the length
1258 LEN. If the composite character has not yet been registered,
1259 register it in `cmpchar_table' and assign new CMPCHAR-ID. This
1260 is the sole function for assigning CMPCHAR-ID. */
1261int
1262str_cmpchar_id (str, len)
8867de67 1263 const unsigned char *str;
4ed46869
KH
1264 int len;
1265{
1266 int hash_idx, *hashp;
1267 unsigned char *buf;
1268 int embedded_rule; /* 1 if composition rule is embedded. */
1269 int chars; /* number of components. */
1270 int i;
1271 struct cmpchar_info *cmpcharp;
1272
4ed46869
KH
1273 /* The second byte 0xFF means compostion rule is embedded. */
1274 embedded_rule = (str[1] == 0xFF);
1275
1276 /* At first, get the actual length of the composite character. */
1277 {
8867de67 1278 const unsigned char *p, *endp = str + 1, *lastp = str + len;
4ed46869
KH
1279 int bytes;
1280
6ae1f27e 1281 while (endp < lastp && ! CHAR_HEAD_P (*endp)) endp++;
93bcb785
KH
1282 if (endp - str < 5)
1283 /* Any composite char have at least 5-byte length. */
1284 return -1;
1285
4ed46869 1286 chars = 0;
93bcb785 1287 p = str + 1;
4ed46869
KH
1288 while (p < endp)
1289 {
93bcb785 1290 if (embedded_rule) p++;
4ed46869 1291 /* No need of checking if *P is 0xA0 because
93bcb785
KH
1292 BYTES_BY_CHAR_HEAD (0x80) surely returns 2. */
1293 p += BYTES_BY_CHAR_HEAD (*p - 0x20);
4ed46869
KH
1294 chars++;
1295 }
93bcb785
KH
1296 if (p > endp || chars < 2 || chars > MAX_COMPONENT_COUNT)
1297 /* Invalid components. */
4ed46869 1298 return -1;
93bcb785 1299 len = p - str;
4ed46869
KH
1300 }
1301 hash_idx = hash_string (str, len) % CMPCHAR_HASH_TABLE_SIZE;
1302 hashp = cmpchar_hash_table[hash_idx];
1303
1304 /* Then, look into the hash table. */
1305 if (hashp != NULL)
1306 /* Find the correct one among composite characters of the same
1307 hash value. */
1308 for (i = 2; i < CMPCHAR_HASH_USED (hashp); i++)
1309 {
1310 cmpcharp = cmpchar_table[CMPCHAR_HASH_CMPCHAR_ID (hashp, i)];
1311 if (len == cmpcharp->len
1312 && ! bcmp (str, cmpcharp->data, len))
1313 return CMPCHAR_HASH_CMPCHAR_ID (hashp, i);
1314 }
1315
1316 /* We have to register the composite character in cmpchar_table. */
513ee442
KH
1317 if (n_cmpchars > (CHAR_FIELD2_MASK | CHAR_FIELD3_MASK))
1318 /* No, we have no more room for a new composite character. */
1319 return -1;
1320
4ed46869
KH
1321 /* Make the entry in hash table. */
1322 if (hashp == NULL)
1323 {
1324 /* Make a table for 8 composite characters initially. */
1325 hashp = (cmpchar_hash_table[hash_idx]
1326 = (int *) xmalloc (sizeof (int) * (2 + 8)));
1327 CMPCHAR_HASH_SIZE (hashp) = 10;
1328 CMPCHAR_HASH_USED (hashp) = 2;
1329 }
1330 else if (CMPCHAR_HASH_USED (hashp) >= CMPCHAR_HASH_SIZE (hashp))
1331 {
1332 CMPCHAR_HASH_SIZE (hashp) += 8;
1333 hashp = (cmpchar_hash_table[hash_idx]
1334 = (int *) xrealloc (hashp,
1335 sizeof (int) * CMPCHAR_HASH_SIZE (hashp)));
1336 }
1337 CMPCHAR_HASH_CMPCHAR_ID (hashp, CMPCHAR_HASH_USED (hashp)) = n_cmpchars;
1338 CMPCHAR_HASH_USED (hashp)++;
1339
1340 /* Set information of the composite character in cmpchar_table. */
1341 if (cmpchar_table_size == 0)
1342 {
1343 /* This is the first composite character to be registered. */
1344 cmpchar_table_size = 256;
1345 cmpchar_table
1346 = (struct cmpchar_info **) xmalloc (sizeof (cmpchar_table[0])
1347 * cmpchar_table_size);
1348 }
1349 else if (cmpchar_table_size <= n_cmpchars)
1350 {
1351 cmpchar_table_size += 256;
1352 cmpchar_table
1353 = (struct cmpchar_info **) xrealloc (cmpchar_table,
1354 sizeof (cmpchar_table[0])
1355 * cmpchar_table_size);
1356 }
1357
1358 cmpcharp = (struct cmpchar_info *) xmalloc (sizeof (struct cmpchar_info));
1359
1360 cmpcharp->len = len;
1361 cmpcharp->data = (unsigned char *) xmalloc (len + 1);
1362 bcopy (str, cmpcharp->data, len);
1363 cmpcharp->data[len] = 0;
1364 cmpcharp->glyph_len = chars;
1365 cmpcharp->glyph = (GLYPH *) xmalloc (sizeof (GLYPH) * chars);
1366 if (embedded_rule)
1367 {
1368 cmpcharp->cmp_rule = (unsigned char *) xmalloc (chars);
1369 cmpcharp->col_offset = (float *) xmalloc (sizeof (float) * chars);
1370 }
1371 else
1372 {
1373 cmpcharp->cmp_rule = NULL;
1374 cmpcharp->col_offset = NULL;
1375 }
1376
1377 /* Setup GLYPH data and composition rules (if any) so as not to make
1378 them every time on displaying. */
1379 {
1380 unsigned char *bufp;
1381 int width;
1382 float leftmost = 0.0, rightmost = 1.0;
1383
1384 if (embedded_rule)
1385 /* At first, col_offset[N] is set to relative to col_offset[0]. */
1386 cmpcharp->col_offset[0] = 0;
1387
1388 for (i = 0, bufp = cmpcharp->data + 1; i < chars; i++)
1389 {
1390 if (embedded_rule)
1391 cmpcharp->cmp_rule[i] = *bufp++;
1392
1393 if (*bufp == 0xA0) /* This is an ASCII character. */
1394 {
1395 cmpcharp->glyph[i] = FAST_MAKE_GLYPH ((*++bufp & 0x7F), 0);
1396 width = 1;
1397 bufp++;
1398 }
1399 else /* Multibyte character. */
1400 {
1401 /* Make `bufp' point normal multi-byte form temporally. */
1402 *bufp -= 0x20;
1403 cmpcharp->glyph[i]
1404 = FAST_MAKE_GLYPH (string_to_non_ascii_char (bufp, 4, 0), 0);
1405 width = WIDTH_BY_CHAR_HEAD (*bufp);
1406 *bufp += 0x20;
1407 bufp += BYTES_BY_CHAR_HEAD (*bufp - 0x20);
1408 }
1409
1410 if (embedded_rule && i > 0)
1411 {
1412 /* Reference points (global_ref and new_ref) are
1413 encoded as below:
1414
1415 0--1--2 -- ascent
1416 | |
1417 | |
1418 | 4 -+--- center
1419 -- 3 5 -- baseline
1420 | |
1421 6--7--8 -- descent
1422
1423 Now, we calculate the column offset of the new glyph
1424 from the left edge of the first glyph. This can avoid
1425 the same calculation everytime displaying this
1426 composite character. */
1427
1428 /* Reference points of global glyph and new glyph. */
1429 int global_ref = (cmpcharp->cmp_rule[i] - 0xA0) / 9;
1430 int new_ref = (cmpcharp->cmp_rule[i] - 0xA0) % 9;
1431 /* Column offset relative to the first glyph. */
1432 float left = (leftmost
1433 + (global_ref % 3) * (rightmost - leftmost) / 2.0
1434 - (new_ref % 3) * width / 2.0);
1435
1436 cmpcharp->col_offset[i] = left;
1437 if (left < leftmost)
1438 leftmost = left;
1439 if (left + width > rightmost)
1440 rightmost = left + width;
1441 }
1442 else
1443 {
1444 if (width > rightmost)
1445 rightmost = width;
1446 }
1447 }
1448 if (embedded_rule)
1449 {
1450 /* Now col_offset[N] are relative to the left edge of the
1451 first component. Make them relative to the left edge of
1452 overall glyph. */
1453 for (i = 0; i < chars; i++)
1454 cmpcharp->col_offset[i] -= leftmost;
1455 /* Make rightmost holds width of overall glyph. */
1456 rightmost -= leftmost;
1457 }
1458
1459 cmpcharp->width = rightmost;
1460 if (cmpcharp->width < rightmost)
1461 /* To get a ceiling integer value. */
1462 cmpcharp->width++;
1463 }
1464
1465 cmpchar_table[n_cmpchars] = cmpcharp;
1466
1467 return n_cmpchars++;
1468}
1469
1470/* Return the Nth element of the composite character C. */
1471int
1472cmpchar_component (c, n)
1473 unsigned int c, n;
1474{
1475 int id = COMPOSITE_CHAR_ID (c);
1476
1477 if (id >= n_cmpchars /* C is not a valid composite character. */
1478 || n >= cmpchar_table[id]->glyph_len) /* No such component. */
1479 return -1;
1480 /* No face data is stored in glyph code. */
1481 return ((int) (cmpchar_table[id]->glyph[n]));
1482}
1483
1484DEFUN ("cmpcharp", Fcmpcharp, Scmpcharp, 1, 1, 0,
1485 "T if CHAR is a composite character.")
1486 (ch)
1487 Lisp_Object ch;
1488{
1489 CHECK_NUMBER (ch, 0);
1490 return (COMPOSITE_CHAR_P (XINT (ch)) ? Qt : Qnil);
1491}
1492
1493DEFUN ("composite-char-component", Fcmpchar_component, Scmpchar_component,
1494 2, 2, 0,
1495 "Return the IDXth component character of composite character CHARACTER.")
1496 (character, idx)
1497 Lisp_Object character, idx;
1498{
1499 int c;
1500
1501 CHECK_NUMBER (character, 0);
1502 CHECK_NUMBER (idx, 1);
1503
1504 if ((c = cmpchar_component (XINT (character), XINT (idx))) < 0)
1505 args_out_of_range (character, idx);
1506
1507 return make_number (c);
1508}
1509
1510DEFUN ("composite-char-composition-rule", Fcmpchar_cmp_rule, Scmpchar_cmp_rule,
1511 2, 2, 0,
55001746
KH
1512 "Return the Nth composition rule embedded in composite character CHARACTER.\n\
1513The returned rule is for composing the Nth component\n\
1514on the (N-1)th component. If N is 0, the returned value is always 255.")
1515 (character, n)
1516 Lisp_Object character, n;
4ed46869
KH
1517{
1518 int id, i;
1519
1520 CHECK_NUMBER (character, 0);
55001746 1521 CHECK_NUMBER (n, 1);
4ed46869
KH
1522
1523 id = COMPOSITE_CHAR_ID (XINT (character));
1524 if (id < 0 || id >= n_cmpchars)
1525 error ("Invalid composite character: %d", XINT (character));
55001746 1526 i = XINT (n);
4ed46869 1527 if (i > cmpchar_table[id]->glyph_len)
55001746 1528 args_out_of_range (character, n);
4ed46869
KH
1529
1530 return make_number (cmpchar_table[id]->cmp_rule[i]);
1531}
1532
1533DEFUN ("composite-char-composition-rule-p", Fcmpchar_cmp_rule_p,
1534 Scmpchar_cmp_rule_p, 1, 1, 0,
1535 "Return non-nil if composite character CHARACTER contains a embedded rule.")
1536 (character)
1537 Lisp_Object character;
1538{
1539 int id;
1540
1541 CHECK_NUMBER (character, 0);
1542 id = COMPOSITE_CHAR_ID (XINT (character));
1543 if (id < 0 || id >= n_cmpchars)
1544 error ("Invalid composite character: %d", XINT (character));
1545
1546 return (cmpchar_table[id]->cmp_rule ? Qt : Qnil);
1547}
1548
1549DEFUN ("composite-char-component-count", Fcmpchar_cmp_count,
1550 Scmpchar_cmp_count, 1, 1, 0,
1551 "Return number of compoents of composite character CHARACTER.")
1552 (character)
1553 Lisp_Object character;
1554{
1555 int id;
1556
1557 CHECK_NUMBER (character, 0);
1558 id = COMPOSITE_CHAR_ID (XINT (character));
1559 if (id < 0 || id >= n_cmpchars)
1560 error ("Invalid composite character: %d", XINT (character));
1561
1562 return (make_number (cmpchar_table[id]->glyph_len));
1563}
1564
1565DEFUN ("compose-string", Fcompose_string, Scompose_string,
1566 1, 1, 0,
1567 "Return one char string composed from all characters in STRING.")
1568 (str)
1569 Lisp_Object str;
1570{
1571 unsigned char buf[MAX_LENGTH_OF_MULTI_BYTE_FORM], *p, *pend, *ptemp;
1572 int len, i;
1573
1574 CHECK_STRING (str, 0);
1575
1576 buf[0] = LEADING_CODE_COMPOSITION;
1577 p = XSTRING (str)->data;
fc932ac6 1578 pend = p + STRING_BYTES (XSTRING (str));
4ed46869
KH
1579 i = 1;
1580 while (p < pend)
1581 {
1582 if (*p < 0x20 || *p == 127) /* control code */
1583 error ("Invalid component character: %d", *p);
1584 else if (*p < 0x80) /* ASCII */
1585 {
1586 if (i + 2 >= MAX_LENGTH_OF_MULTI_BYTE_FORM)
1587 error ("Too long string to be composed: %s", XSTRING (str)->data);
1588 /* Prepend an ASCII charset indicator 0xA0, set MSB of the
1589 code itself. */
1590 buf[i++] = 0xA0;
1591 buf[i++] = *p++ + 0x80;
1592 }
1593 else if (*p == LEADING_CODE_COMPOSITION) /* composite char */
1594 {
1595 /* Already composed. Eliminate the heading
1596 LEADING_CODE_COMPOSITION, keep the remaining bytes
1597 unchanged. */
1598 p++;
1599 ptemp = p;
6ae1f27e 1600 while (! CHAR_HEAD_P (*p)) p++;
4ed46869
KH
1601 if (i + (p - ptemp) >= MAX_LENGTH_OF_MULTI_BYTE_FORM)
1602 error ("Too long string to be composed: %s", XSTRING (str)->data);
1603 bcopy (ptemp, buf + i, p - ptemp);
1604 i += p - ptemp;
1605 }
1606 else /* multibyte char */
1607 {
1608 /* Add 0x20 to the base leading-code, keep the remaining
1609 bytes unchanged. */
1610 len = BYTES_BY_CHAR_HEAD (*p);
1611 if (i + len >= MAX_LENGTH_OF_MULTI_BYTE_FORM)
1612 error ("Too long string to be composed: %s", XSTRING (str)->data);
1613 bcopy (p, buf + i, len);
1614 buf[i] += 0x20;
1615 p += len, i += len;
1616 }
1617 }
1618
1619 if (i < 5)
1620 /* STR contains only one character, which can't be composed. */
1621 error ("Too short string to be composed: %s", XSTRING (str)->data);
1622
27802600 1623 return make_string_from_bytes (buf, 1, i);
4ed46869
KH
1624}
1625
1626\f
dfcf069d 1627int
4ed46869
KH
1628charset_id_internal (charset_name)
1629 char *charset_name;
1630{
1631 Lisp_Object val = Fget (intern (charset_name), Qcharset);
1632
1633 if (!VECTORP (val))
1634 error ("Charset %s is not defined", charset_name);
1635
1636 return (XINT (XVECTOR (val)->contents[0]));
1637}
1638
1639DEFUN ("setup-special-charsets", Fsetup_special_charsets,
1640 Ssetup_special_charsets, 0, 0, 0, "Internal use only.")
1641 ()
1642{
1643 charset_latin_iso8859_1 = charset_id_internal ("latin-iso8859-1");
1644 charset_jisx0208_1978 = charset_id_internal ("japanese-jisx0208-1978");
1645 charset_jisx0208 = charset_id_internal ("japanese-jisx0208");
1646 charset_katakana_jisx0201 = charset_id_internal ("katakana-jisx0201");
1647 charset_latin_jisx0201 = charset_id_internal ("latin-jisx0201");
1648 charset_big5_1 = charset_id_internal ("chinese-big5-1");
1649 charset_big5_2 = charset_id_internal ("chinese-big5-2");
1650 return Qnil;
1651}
1652
dfcf069d 1653void
4ed46869
KH
1654init_charset_once ()
1655{
1656 int i, j, k;
1657
1658 staticpro (&Vcharset_table);
1659 staticpro (&Vcharset_symbol_table);
1660
1661 /* This has to be done here, before we call Fmake_char_table. */
1662 Qcharset_table = intern ("charset-table");
1663 staticpro (&Qcharset_table);
1664
1665 /* Intern this now in case it isn't already done.
1666 Setting this variable twice is harmless.
1667 But don't staticpro it here--that is done in alloc.c. */
1668 Qchar_table_extra_slots = intern ("char-table-extra-slots");
1669
1670 /* Now we are ready to set up this property, so we can
1671 create the charset table. */
1672 Fput (Qcharset_table, Qchar_table_extra_slots, make_number (0));
1673 Vcharset_table = Fmake_char_table (Qcharset_table, Qnil);
1674
513ee442 1675 Vcharset_symbol_table = Fmake_vector (make_number (MAX_CHARSET + 1), Qnil);
4ed46869
KH
1676
1677 /* Setup tables. */
1678 for (i = 0; i < 2; i++)
1679 for (j = 0; j < 2; j++)
1680 for (k = 0; k < 128; k++)
1681 iso_charset_table [i][j][k] = -1;
1682
1683 bzero (cmpchar_hash_table, sizeof cmpchar_hash_table);
1684 cmpchar_table_size = n_cmpchars = 0;
1685
1686 for (i = 0; i < 256; i++)
1687 BYTES_BY_CHAR_HEAD (i) = 1;
1688 BYTES_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_11) = 3;
1689 BYTES_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_12) = 3;
1690 BYTES_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_21) = 4;
1691 BYTES_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_22) = 4;
1692 /* The following doesn't reflect the actual bytes, but just to tell
1693 that it is a start of a multibyte character. */
1694 BYTES_BY_CHAR_HEAD (LEADING_CODE_COMPOSITION) = 2;
1695
1696 for (i = 0; i < 128; i++)
1697 WIDTH_BY_CHAR_HEAD (i) = 1;
1698 for (; i < 256; i++)
1699 WIDTH_BY_CHAR_HEAD (i) = 4;
1700 WIDTH_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_11) = 1;
1701 WIDTH_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_12) = 2;
1702 WIDTH_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_21) = 1;
1703 WIDTH_BY_CHAR_HEAD (LEADING_CODE_PRIVATE_22) = 2;
1704}
1705
1706#ifdef emacs
1707
dfcf069d 1708void
4ed46869
KH
1709syms_of_charset ()
1710{
1711 Qascii = intern ("ascii");
1712 staticpro (&Qascii);
1713
1714 Qcharset = intern ("charset");
1715 staticpro (&Qcharset);
1716
1717 /* Define ASCII charset now. */
1718 update_charset_table (make_number (CHARSET_ASCII),
1719 make_number (1), make_number (94),
1720 make_number (1),
1721 make_number (0),
1722 make_number ('B'),
1723 make_number (0),
1724 build_string ("ASCII"),
1725 build_string ("ASCII"),
1726 build_string ("ASCII (ISO646 IRV)"));
1727 CHARSET_SYMBOL (CHARSET_ASCII) = Qascii;
1728 Fput (Qascii, Qcharset, CHARSET_TABLE_ENTRY (CHARSET_ASCII));
1729
1730 Qcomposition = intern ("composition");
1731 staticpro (&Qcomposition);
1732 CHARSET_SYMBOL (CHARSET_COMPOSITION) = Qcomposition;
1733
1734 defsubr (&Sdefine_charset);
3fac5a51 1735 defsubr (&Sget_unused_iso_final_char);
4ed46869
KH
1736 defsubr (&Sdeclare_equiv_charset);
1737 defsubr (&Sfind_charset_region);
1738 defsubr (&Sfind_charset_string);
1739 defsubr (&Smake_char_internal);
1740 defsubr (&Ssplit_char);
1741 defsubr (&Schar_charset);
90d7b74e 1742 defsubr (&Scharset_after);
4ed46869 1743 defsubr (&Siso_charset);
9d3d8cba 1744 defsubr (&Schar_valid_p);
d2665018 1745 defsubr (&Sunibyte_char_to_multibyte);
4ed46869
KH
1746 defsubr (&Schar_bytes);
1747 defsubr (&Schar_width);
1748 defsubr (&Sstring_width);
1749 defsubr (&Schar_direction);
af4fecb4 1750 defsubr (&Schars_in_region);
87b089ad 1751 defsubr (&Sstring);
4ed46869
KH
1752 defsubr (&Scmpcharp);
1753 defsubr (&Scmpchar_component);
1754 defsubr (&Scmpchar_cmp_rule);
1755 defsubr (&Scmpchar_cmp_rule_p);
1756 defsubr (&Scmpchar_cmp_count);
1757 defsubr (&Scompose_string);
1758 defsubr (&Ssetup_special_charsets);
1759
1760 DEFVAR_LISP ("charset-list", &Vcharset_list,
1761 "List of charsets ever defined.");
1762 Vcharset_list = Fcons (Qascii, Qnil);
1763
b4e9dd77
KH
1764 DEFVAR_LISP ("character-translation-table-vector",
1765 &Vcharacter_translation_table_vector,
1766 "Vector of cons cell of a symbol and translation table ever defined.\n\
1767An ID of a translation table is an index of this vector.");
1768 Vcharacter_translation_table_vector = Fmake_vector (make_number (16), Qnil);
b0e3cf2b 1769
4ed46869
KH
1770 DEFVAR_INT ("leading-code-composition", &leading_code_composition,
1771 "Leading-code of composite characters.");
1772 leading_code_composition = LEADING_CODE_COMPOSITION;
1773
1774 DEFVAR_INT ("leading-code-private-11", &leading_code_private_11,
1775 "Leading-code of private TYPE9N charset of column-width 1.");
1776 leading_code_private_11 = LEADING_CODE_PRIVATE_11;
1777
1778 DEFVAR_INT ("leading-code-private-12", &leading_code_private_12,
1779 "Leading-code of private TYPE9N charset of column-width 2.");
1780 leading_code_private_12 = LEADING_CODE_PRIVATE_12;
1781
1782 DEFVAR_INT ("leading-code-private-21", &leading_code_private_21,
1783 "Leading-code of private TYPE9Nx9N charset of column-width 1.");
1784 leading_code_private_21 = LEADING_CODE_PRIVATE_21;
1785
1786 DEFVAR_INT ("leading-code-private-22", &leading_code_private_22,
1787 "Leading-code of private TYPE9Nx9N charset of column-width 2.");
1788 leading_code_private_22 = LEADING_CODE_PRIVATE_22;
35e623fb
RS
1789
1790 DEFVAR_INT ("nonascii-insert-offset", &nonascii_insert_offset,
d2665018 1791 "Offset for converting non-ASCII unibyte codes 0240...0377 to multibyte.\n\
4cf9710d
RS
1792This is used for converting unibyte text to multibyte,\n\
1793and for inserting character codes specified by number.\n\n\
3e8ceaac
RS
1794This serves to convert a Latin-1 or similar 8-bit character code\n\
1795to the corresponding Emacs multibyte character code.\n\
1796Typically the value should be (- (make-char CHARSET 0) 128),\n\
1797for your choice of character set.\n\
4cf9710d 1798If `nonascii-translate-table' is non-nil, it overrides this variable.");
35e623fb 1799 nonascii_insert_offset = 0;
b0e3cf2b 1800
b4e9dd77
KH
1801 DEFVAR_LISP ("nonascii-translation-table", &Vnonascii_translation_table,
1802 "Character translation table to convert non-ASCII unibyte codes to multibyte.\n\
4cf9710d
RS
1803This is used for converting unibyte text to multibyte,\n\
1804and for inserting character codes specified by number.\n\n\
1805Conversion is performed only when multibyte characters are enabled,\n\
1806and it serves to convert a Latin-1 or similar 8-bit character code\n\
1807to the corresponding Emacs character code.\n\n\
b4e9dd77
KH
1808If this is nil, `nonascii-insert-offset' is used instead.
1809See also the docstring of `make-translation-table'.");
1810 Vnonascii_translation_table = Qnil;
4cf9710d 1811
b0e3cf2b
KH
1812 DEFVAR_INT ("min-composite-char", &min_composite_char,
1813 "Minimum character code of a composite character.");
1814 min_composite_char = MIN_CHAR_COMPOSITION;
4ed46869
KH
1815}
1816
1817#endif /* emacs */