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