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