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