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