Mercurial > emacs
annotate src/character.c @ 89837:d6008ecc47e5 emacs-bidi-base
*** empty log message ***
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 03 Mar 2004 12:38:28 +0000 |
parents | 482c15940000 |
children | cfd942ddfdab |
rev | line source |
---|---|
88363 | 1 /* Basic character support. |
2 Copyright (C) 1995, 1997, 1998, 2001 Electrotechnical Laboratory, JAPAN. | |
89483 | 3 Licensed to the Free Software Foundation. |
88363 | 4 Copyright (C) 2001 Free Software Foundation, Inc. |
89483 | 5 Copyright (C) 2003 |
88363 | 6 National Institute of Advanced Industrial Science and Technology (AIST) |
7 Registration Number H13PRO009 | |
8 | |
9 This file is part of GNU Emacs. | |
10 | |
11 GNU Emacs is free software; you can redistribute it and/or modify | |
12 it under the terms of the GNU General Public License as published by | |
13 the Free Software Foundation; either version 2, or (at your option) | |
14 any later version. | |
15 | |
16 GNU Emacs is distributed in the hope that it will be useful, | |
17 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 GNU General Public License for more details. | |
20 | |
21 You should have received a copy of the GNU General Public License | |
22 along with GNU Emacs; see the file COPYING. If not, write to | |
23 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 Boston, MA 02111-1307, USA. */ | |
25 | |
26 /* At first, see the document in `character.h' to understand the code | |
27 in this file. */ | |
28 | |
29 #ifdef emacs | |
30 #include <config.h> | |
31 #endif | |
32 | |
33 #include <stdio.h> | |
34 | |
35 #ifdef emacs | |
36 | |
37 #include <sys/types.h> | |
38 #include "lisp.h" | |
39 #include "character.h" | |
40 #include "buffer.h" | |
41 #include "charset.h" | |
42 #include "composite.h" | |
43 #include "disptab.h" | |
44 | |
45 #else /* not emacs */ | |
46 | |
47 #include "mulelib.h" | |
48 | |
49 #endif /* emacs */ | |
50 | |
51 Lisp_Object Qcharacterp; | |
52 | |
53 /* Vector of translation table ever defined. | |
54 ID of a translation table is used to index this vector. */ | |
55 Lisp_Object Vtranslation_table_vector; | |
56 | |
57 /* A char-table for characters which may invoke auto-filling. */ | |
58 Lisp_Object Vauto_fill_chars; | |
59 | |
60 Lisp_Object Qauto_fill_chars; | |
61 | |
62 Lisp_Object Vchar_unify_table; | |
63 | |
64 /* A char-table. An element is non-nil iff the corresponding | |
65 character has a printable glyph. */ | |
66 Lisp_Object Vprintable_chars; | |
67 | |
68 /* A char-table. An elemnent is a column-width of the corresponding | |
69 character. */ | |
70 Lisp_Object Vchar_width_table; | |
71 | |
72 /* A char-table. An element is a symbol indicating the direction | |
73 property of corresponding character. */ | |
74 Lisp_Object Vchar_direction_table; | |
75 | |
89020
b0277093a5f2
(_fetch_multibyte_char_len): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
88990
diff
changeset
|
76 /* Variable used locally in the macro FETCH_MULTIBYTE_CHAR. */ |
88363 | 77 unsigned char *_fetch_multibyte_char_p; |
78 | |
88913
76074dea1258
(Vscript_alist): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
88878
diff
changeset
|
79 /* Char table of scripts. */ |
76074dea1258
(Vscript_alist): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
88878
diff
changeset
|
80 Lisp_Object Vchar_script_table; |
76074dea1258
(Vscript_alist): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
88878
diff
changeset
|
81 |
76074dea1258
(Vscript_alist): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
88878
diff
changeset
|
82 static Lisp_Object Qchar_script_table; |
76074dea1258
(Vscript_alist): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
88878
diff
changeset
|
83 |
89054
8a6da305ac40
(unibyte_to_multibyte_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
89029
diff
changeset
|
84 /* Mapping table from unibyte chars to multibyte chars. */ |
8a6da305ac40
(unibyte_to_multibyte_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
89029
diff
changeset
|
85 int unibyte_to_multibyte_table[256]; |
88878
a0ae1a5876c7
(Vscript_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
88853
diff
changeset
|
86 |
88363 | 87 |
88 | |
89 int | |
89181
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
90 char_string (c, p) |
88363 | 91 int c; |
88427
1a3aec316071
(c_string_width): Add return type `int'.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
92 unsigned char *p; |
88363 | 93 { |
94 int bytes; | |
95 | |
89181
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
96 if (c & CHAR_MODIFIER_MASK) |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
97 { |
89538
c719d9f420d1
(char_string): Use ASCII_CHAR_P instead of SINGLE_BYTE_CHAR_P.
Kenichi Handa <handa@m17n.org>
parents:
89511
diff
changeset
|
98 /* As an non-ASCII character can't have modifier bits, we just |
c719d9f420d1
(char_string): Use ASCII_CHAR_P instead of SINGLE_BYTE_CHAR_P.
Kenichi Handa <handa@m17n.org>
parents:
89511
diff
changeset
|
99 ignore the bits. */ |
c719d9f420d1
(char_string): Use ASCII_CHAR_P instead of SINGLE_BYTE_CHAR_P.
Kenichi Handa <handa@m17n.org>
parents:
89511
diff
changeset
|
100 if (ASCII_CHAR_P ((c & ~CHAR_MODIFIER_MASK))) |
89181
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
101 { |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
102 /* For Meta, Shift, and Control modifiers, we need special care. */ |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
103 if (c & CHAR_META) |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
104 { |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
105 /* Move the meta bit to the right place for a string. */ |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
106 c = (c & ~CHAR_META) | 0x80; |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
107 } |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
108 if (c & CHAR_SHIFT) |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
109 { |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
110 /* Shift modifier is valid only with [A-Za-z]. */ |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
111 if ((c & 0377) >= 'A' && (c & 0377) <= 'Z') |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
112 c &= ~CHAR_SHIFT; |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
113 else if ((c & 0377) >= 'a' && (c & 0377) <= 'z') |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
114 c = (c & ~CHAR_SHIFT) - ('a' - 'A'); |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
115 } |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
116 if (c & CHAR_CTL) |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
117 { |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
118 /* Simulate the code in lread.c. */ |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
119 /* Allow `\C- ' and `\C-?'. */ |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
120 if (c == (CHAR_CTL | ' ')) |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
121 c = 0; |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
122 else if (c == (CHAR_CTL | '?')) |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
123 c = 127; |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
124 /* ASCII control chars are made from letters (both cases), |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
125 as well as the non-letters within 0100...0137. */ |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
126 else if ((c & 0137) >= 0101 && (c & 0137) <= 0132) |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
127 c &= (037 | (~0177 & ~CHAR_CTL)); |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
128 else if ((c & 0177) >= 0100 && (c & 0177) <= 0137) |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
129 c &= (037 | (~0177 & ~CHAR_CTL)); |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
130 } |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
131 } |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
132 |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
133 /* If C still has any modifier bits, just ignore it. */ |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
134 c &= ~CHAR_MODIFIER_MASK; |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
135 } |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
136 |
88363 | 137 MAYBE_UNIFY_CHAR (c); |
138 | |
89181
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
139 if (c <= MAX_3_BYTE_CHAR) |
88363 | 140 { |
141 bytes = CHAR_STRING (c, p); | |
142 } | |
143 else if (c <= MAX_4_BYTE_CHAR) | |
144 { | |
145 p[0] = (0xF0 | (c >> 18)); | |
146 p[1] = (0x80 | ((c >> 12) & 0x3F)); | |
147 p[2] = (0x80 | ((c >> 6) & 0x3F)); | |
148 p[3] = (0x80 | (c & 0x3F)); | |
149 bytes = 4; | |
150 } | |
89181
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
151 else if (c <= MAX_5_BYTE_CHAR) |
88363 | 152 { |
153 p[0] = 0xF8; | |
154 p[1] = (0x80 | ((c >> 18) & 0x0F)); | |
155 p[2] = (0x80 | ((c >> 12) & 0x3F)); | |
156 p[3] = (0x80 | ((c >> 6) & 0x3F)); | |
157 p[4] = (0x80 | (c & 0x3F)); | |
158 bytes = 5; | |
159 } | |
89181
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
160 else |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
161 { |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
162 c = CHAR_TO_BYTE8 (c); |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
163 bytes = BYTE8_STRING (c, p); |
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
164 } |
88427
1a3aec316071
(c_string_width): Add return type `int'.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
165 |
88363 | 166 return bytes; |
167 } | |
168 | |
169 | |
170 int | |
89181
be75d5934738
(char_string): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
89054
diff
changeset
|
171 string_char (p, advanced, len) |
88878
a0ae1a5876c7
(Vscript_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
88853
diff
changeset
|
172 const unsigned char *p; |
a0ae1a5876c7
(Vscript_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
88853
diff
changeset
|
173 const unsigned char **advanced; |
88363 | 174 int *len; |
175 { | |
88427
1a3aec316071
(c_string_width): Add return type `int'.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
176 int c; |
88878
a0ae1a5876c7
(Vscript_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
88853
diff
changeset
|
177 const unsigned char *saved_p = p; |
88363 | 178 |
179 if (*p < 0x80 || ! (*p & 0x20) || ! (*p & 0x10)) | |
180 { | |
181 c = STRING_CHAR_ADVANCE (p); | |
182 } | |
183 else if (! (*p & 0x08)) | |
184 { | |
185 c = ((((p)[0] & 0xF) << 18) | |
186 | (((p)[1] & 0x3F) << 12) | |
187 | (((p)[2] & 0x3F) << 6) | |
188 | ((p)[3] & 0x3F)); | |
189 p += 4; | |
190 } | |
191 else | |
192 { | |
193 c = ((((p)[1] & 0x3F) << 18) | |
194 | (((p)[2] & 0x3F) << 12) | |
195 | (((p)[3] & 0x3F) << 6) | |
196 | ((p)[4] & 0x3F)); | |
197 p += 5; | |
198 } | |
199 | |
200 MAYBE_UNIFY_CHAR (c); | |
201 | |
202 if (len) | |
203 *len = p - saved_p; | |
204 if (advanced) | |
205 *advanced = p; | |
206 return c; | |
207 } | |
208 | |
209 | |
210 /* Translate character C by translation table TABLE. If C is | |
211 negative, translate a character specified by CHARSET and CODE. If | |
212 no translation is found in TABLE, return the untranslated | |
89757
482c15940000
(translate_char): Accept list of translation tables.
Kenichi Handa <handa@m17n.org>
parents:
89538
diff
changeset
|
213 character. If TABLE is a list, elements are char tables. In this |
482c15940000
(translate_char): Accept list of translation tables.
Kenichi Handa <handa@m17n.org>
parents:
89538
diff
changeset
|
214 case, translace C by all tables. */ |
88363 | 215 |
216 int | |
217 translate_char (table, c) | |
218 Lisp_Object table; | |
219 int c; | |
220 { | |
89757
482c15940000
(translate_char): Accept list of translation tables.
Kenichi Handa <handa@m17n.org>
parents:
89538
diff
changeset
|
221 if (CHAR_TABLE_P (table)) |
482c15940000
(translate_char): Accept list of translation tables.
Kenichi Handa <handa@m17n.org>
parents:
89538
diff
changeset
|
222 { |
482c15940000
(translate_char): Accept list of translation tables.
Kenichi Handa <handa@m17n.org>
parents:
89538
diff
changeset
|
223 Lisp_Object ch; |
88363 | 224 |
89757
482c15940000
(translate_char): Accept list of translation tables.
Kenichi Handa <handa@m17n.org>
parents:
89538
diff
changeset
|
225 ch = CHAR_TABLE_REF (table, c); |
482c15940000
(translate_char): Accept list of translation tables.
Kenichi Handa <handa@m17n.org>
parents:
89538
diff
changeset
|
226 if (CHARACTERP (ch)) |
482c15940000
(translate_char): Accept list of translation tables.
Kenichi Handa <handa@m17n.org>
parents:
89538
diff
changeset
|
227 c = XINT (ch); |
482c15940000
(translate_char): Accept list of translation tables.
Kenichi Handa <handa@m17n.org>
parents:
89538
diff
changeset
|
228 } |
482c15940000
(translate_char): Accept list of translation tables.
Kenichi Handa <handa@m17n.org>
parents:
89538
diff
changeset
|
229 else |
482c15940000
(translate_char): Accept list of translation tables.
Kenichi Handa <handa@m17n.org>
parents:
89538
diff
changeset
|
230 { |
482c15940000
(translate_char): Accept list of translation tables.
Kenichi Handa <handa@m17n.org>
parents:
89538
diff
changeset
|
231 for (; CONSP (table); table = XCDR (table)) |
482c15940000
(translate_char): Accept list of translation tables.
Kenichi Handa <handa@m17n.org>
parents:
89538
diff
changeset
|
232 c = translate_char (XCAR (table), c); |
482c15940000
(translate_char): Accept list of translation tables.
Kenichi Handa <handa@m17n.org>
parents:
89538
diff
changeset
|
233 } |
482c15940000
(translate_char): Accept list of translation tables.
Kenichi Handa <handa@m17n.org>
parents:
89538
diff
changeset
|
234 return c; |
88363 | 235 } |
236 | |
237 /* Convert the multibyte character C to unibyte 8-bit character based | |
88983
2d504d707ce6
(unibyte_char_to_multibyte): Refer to
Kenichi Handa <handa@m17n.org>
parents:
88947
diff
changeset
|
238 on the current value of charset_unibyte. If dimension of |
2d504d707ce6
(unibyte_char_to_multibyte): Refer to
Kenichi Handa <handa@m17n.org>
parents:
88947
diff
changeset
|
239 charset_unibyte is more than one, return (C & 0xFF). |
88363 | 240 |
241 The argument REV_TBL is now ignored. It will be removed in the | |
242 future. */ | |
243 | |
244 int | |
245 multibyte_char_to_unibyte (c, rev_tbl) | |
246 int c; | |
247 Lisp_Object rev_tbl; | |
248 { | |
89054
8a6da305ac40
(unibyte_to_multibyte_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
89029
diff
changeset
|
249 struct charset *charset; |
8a6da305ac40
(unibyte_to_multibyte_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
89029
diff
changeset
|
250 unsigned c1; |
88363 | 251 |
89054
8a6da305ac40
(unibyte_to_multibyte_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
89029
diff
changeset
|
252 if (CHAR_BYTE8_P (c)) |
8a6da305ac40
(unibyte_to_multibyte_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
89029
diff
changeset
|
253 return CHAR_TO_BYTE8 (c); |
8a6da305ac40
(unibyte_to_multibyte_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
89029
diff
changeset
|
254 charset = CHARSET_FROM_ID (charset_unibyte); |
8a6da305ac40
(unibyte_to_multibyte_table): New variable.
Kenichi Handa <handa@m17n.org>
parents:
89029
diff
changeset
|
255 c1 = ENCODE_CHAR (charset, c); |
88363 | 256 return ((c1 != CHARSET_INVALID_CODE (charset)) ? c1 : c & 0xFF); |
257 } | |
258 | |
259 | |
260 DEFUN ("characterp", Fcharacterp, Scharacterp, 1, 2, 0, | |
261 doc: /* Return non-nil if OBJECT is a character. */) | |
262 (object, ignore) | |
263 Lisp_Object object, ignore; | |
264 { | |
265 return (CHARACTERP (object) ? Qt : Qnil); | |
266 } | |
267 | |
268 DEFUN ("max-char", Fmax_char, Smax_char, 0, 0, 0, | |
269 doc: /* Return the character of the maximum code. */) | |
270 () | |
271 { | |
272 return make_number (MAX_CHAR); | |
273 } | |
274 | |
275 DEFUN ("unibyte-char-to-multibyte", Funibyte_char_to_multibyte, | |
276 Sunibyte_char_to_multibyte, 1, 1, 0, | |
277 doc: /* Convert the unibyte character CH to multibyte character. | |
278 The multibyte character is a result of decoding CH by | |
88990
16317690f974
(Funibyte_char_to_multibyte): Doc fix.
Dave Love <fx@gnu.org>
parents:
88983
diff
changeset
|
279 the current unibyte charset (see `unibyte-charset'). */) |
88363 | 280 (ch) |
281 Lisp_Object ch; | |
282 { | |
283 int c; | |
284 struct charset *charset; | |
285 | |
286 CHECK_CHARACTER (ch); | |
287 c = XFASTINT (ch); | |
288 if (c >= 0400) | |
289 error ("Invalid unibyte character: %d", c); | |
88983
2d504d707ce6
(unibyte_char_to_multibyte): Refer to
Kenichi Handa <handa@m17n.org>
parents:
88947
diff
changeset
|
290 charset = CHARSET_FROM_ID (charset_unibyte); |
88363 | 291 c = DECODE_CHAR (charset, c); |
292 if (c < 0) | |
88947
894b8bce3208
(Funibyte_char_to_multibyte): If C can't be decoded
Kenichi Handa <handa@m17n.org>
parents:
88926
diff
changeset
|
293 c = BYTE8_TO_CHAR (XFASTINT (ch)); |
88363 | 294 return make_number (c); |
295 } | |
296 | |
297 DEFUN ("multibyte-char-to-unibyte", Fmultibyte_char_to_unibyte, | |
298 Smultibyte_char_to_unibyte, 1, 1, 0, | |
299 doc: /* Convert the multibyte character CH to unibyte character.\n\ | |
300 The unibyte character is a result of encoding CH by | |
301 the current primary charset (value of `charset-primary'). */) | |
302 (ch) | |
303 Lisp_Object ch; | |
304 { | |
305 int c; | |
306 | |
307 CHECK_CHARACTER (ch); | |
308 c = XFASTINT (ch); | |
88947
894b8bce3208
(Funibyte_char_to_multibyte): If C can't be decoded
Kenichi Handa <handa@m17n.org>
parents:
88926
diff
changeset
|
309 c = CHAR_TO_BYTE8 (c); |
894b8bce3208
(Funibyte_char_to_multibyte): If C can't be decoded
Kenichi Handa <handa@m17n.org>
parents:
88926
diff
changeset
|
310 return make_number (c); |
88363 | 311 } |
312 | |
313 DEFUN ("char-bytes", Fchar_bytes, Schar_bytes, 1, 1, 0, | |
314 doc: /* Return 1 regardless of the argument CHAR. | |
315 This is now an obsolete function. We keep it just for backward compatibility. */) | |
316 (ch) | |
317 Lisp_Object ch; | |
318 { | |
319 CHECK_CHARACTER (ch); | |
320 return make_number (1); | |
321 } | |
322 | |
323 DEFUN ("char-width", Fchar_width, Schar_width, 1, 1, 0, | |
324 doc: /* Return width of CHAR when displayed in the current buffer. | |
325 The width is measured by how many columns it occupies on the screen. | |
326 Tab is taken to occupy `tab-width' columns. */) | |
327 (ch) | |
328 Lisp_Object ch; | |
329 { | |
330 Lisp_Object disp; | |
331 int c, width; | |
332 struct Lisp_Char_Table *dp = buffer_display_table (); | |
333 | |
334 CHECK_CHARACTER (ch); | |
335 c = XINT (ch); | |
336 | |
337 /* Get the way the display table would display it. */ | |
338 disp = dp ? DISP_CHAR_VECTOR (dp, c) : Qnil; | |
339 | |
340 if (VECTORP (disp)) | |
341 width = ASIZE (disp); | |
342 else | |
343 width = CHAR_WIDTH (c); | |
344 | |
345 return make_number (width); | |
346 } | |
347 | |
348 /* Return width of string STR of length LEN when displayed in the | |
349 current buffer. The width is measured by how many columns it | |
350 occupies on the screen. If PRECISION > 0, return the width of | |
351 longest substring that doesn't exceed PRECISION, and set number of | |
352 characters and bytes of the substring in *NCHARS and *NBYTES | |
353 respectively. */ | |
354 | |
88427
1a3aec316071
(c_string_width): Add return type `int'.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
355 int |
88363 | 356 c_string_width (str, len, precision, nchars, nbytes) |
89483 | 357 const unsigned char *str; |
88363 | 358 int precision, *nchars, *nbytes; |
359 { | |
360 int i = 0, i_byte = 0; | |
361 int width = 0; | |
362 struct Lisp_Char_Table *dp = buffer_display_table (); | |
363 | |
364 while (i_byte < len) | |
365 { | |
366 int bytes, thiswidth; | |
367 Lisp_Object val; | |
368 int c = STRING_CHAR_AND_LENGTH (str + i_byte, len - i_byte, bytes); | |
369 | |
370 if (dp) | |
371 { | |
372 val = DISP_CHAR_VECTOR (dp, c); | |
373 if (VECTORP (val)) | |
374 thiswidth = XVECTOR (val)->size; | |
375 else | |
376 thiswidth = CHAR_WIDTH (c); | |
377 } | |
378 else | |
379 { | |
380 thiswidth = CHAR_WIDTH (c); | |
381 } | |
382 | |
383 if (precision > 0 | |
384 && (width + thiswidth > precision)) | |
385 { | |
386 *nchars = i; | |
387 *nbytes = i_byte; | |
388 return width; | |
389 } | |
390 i++; | |
391 i_byte += bytes; | |
392 width += thiswidth; | |
393 } | |
394 | |
395 if (precision > 0) | |
396 { | |
397 *nchars = i; | |
398 *nbytes = i_byte; | |
399 } | |
400 | |
401 return width; | |
402 } | |
403 | |
88427
1a3aec316071
(c_string_width): Add return type `int'.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
404 /* Return width of string STR of length LEN when displayed in the |
1a3aec316071
(c_string_width): Add return type `int'.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
405 current buffer. The width is measured by how many columns it |
1a3aec316071
(c_string_width): Add return type `int'.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
406 occupies on the screen. */ |
1a3aec316071
(c_string_width): Add return type `int'.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
407 |
1a3aec316071
(c_string_width): Add return type `int'.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
408 int |
1a3aec316071
(c_string_width): Add return type `int'.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
409 strwidth (str, len) |
1a3aec316071
(c_string_width): Add return type `int'.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
410 unsigned char *str; |
1a3aec316071
(c_string_width): Add return type `int'.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
411 int len; |
1a3aec316071
(c_string_width): Add return type `int'.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
412 { |
1a3aec316071
(c_string_width): Add return type `int'.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
413 return c_string_width (str, len, -1, NULL, NULL); |
1a3aec316071
(c_string_width): Add return type `int'.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
414 } |
1a3aec316071
(c_string_width): Add return type `int'.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
415 |
88363 | 416 /* Return width of Lisp string STRING when displayed in the current |
417 buffer. The width is measured by how many columns it occupies on | |
418 the screen while paying attention to compositions. If PRECISION > | |
419 0, return the width of longest substring that doesn't exceed | |
420 PRECISION, and set number of characters and bytes of the substring | |
421 in *NCHARS and *NBYTES respectively. */ | |
422 | |
423 int | |
424 lisp_string_width (string, precision, nchars, nbytes) | |
425 Lisp_Object string; | |
426 int precision, *nchars, *nbytes; | |
427 { | |
89483 | 428 int len = SCHARS (string); |
429 unsigned char *str = SDATA (string); | |
88363 | 430 int i = 0, i_byte = 0; |
431 int width = 0; | |
432 struct Lisp_Char_Table *dp = buffer_display_table (); | |
433 | |
434 while (i < len) | |
435 { | |
436 int chars, bytes, thiswidth; | |
437 Lisp_Object val; | |
438 int cmp_id; | |
89511
bae1254b8517
(lisp_string_width): Make ignore and end EMACS_INT.
Dave Love <fx@gnu.org>
parents:
89483
diff
changeset
|
439 EMACS_INT ignore, end; |
88363 | 440 |
441 if (find_composition (i, -1, &ignore, &end, &val, string) | |
442 && ((cmp_id = get_composition_id (i, i_byte, end - i, val, string)) | |
443 >= 0)) | |
444 { | |
445 thiswidth = composition_table[cmp_id]->width; | |
446 chars = end - i; | |
447 bytes = string_char_to_byte (string, end) - i_byte; | |
448 } | |
449 else if (dp) | |
450 { | |
451 int c = STRING_CHAR_AND_LENGTH (str + i_byte, len - i_byte, bytes); | |
452 | |
453 chars = 1; | |
454 val = DISP_CHAR_VECTOR (dp, c); | |
455 if (VECTORP (val)) | |
456 thiswidth = XVECTOR (val)->size; | |
457 else | |
458 thiswidth = CHAR_WIDTH (c); | |
459 } | |
460 else | |
461 { | |
462 int c = STRING_CHAR_AND_LENGTH (str + i_byte, len - i_byte, bytes); | |
463 | |
464 chars = 1; | |
465 thiswidth = CHAR_WIDTH (c); | |
466 } | |
467 | |
468 if (precision > 0 | |
469 && (width + thiswidth > precision)) | |
470 { | |
471 *nchars = i; | |
472 *nbytes = i_byte; | |
473 return width; | |
474 } | |
475 i += chars; | |
476 i_byte += bytes; | |
477 width += thiswidth; | |
478 } | |
479 | |
480 if (precision > 0) | |
481 { | |
482 *nchars = i; | |
483 *nbytes = i_byte; | |
484 } | |
485 | |
486 return width; | |
487 } | |
488 | |
489 DEFUN ("string-width", Fstring_width, Sstring_width, 1, 1, 0, | |
490 doc: /* Return width of STRING when displayed in the current buffer. | |
491 Width is measured by how many columns it occupies on the screen. | |
492 When calculating width of a multibyte character in STRING, | |
493 only the base leading-code is considered; the validity of | |
494 the following bytes is not checked. Tabs in STRING are always | |
495 taken to occupy `tab-width' columns. */) | |
496 (str) | |
497 Lisp_Object str; | |
498 { | |
499 Lisp_Object val; | |
500 | |
501 CHECK_STRING (str); | |
502 XSETFASTINT (val, lisp_string_width (str, -1, NULL, NULL)); | |
503 return val; | |
504 } | |
505 | |
506 DEFUN ("char-direction", Fchar_direction, Schar_direction, 1, 1, 0, | |
507 doc: /* Return the direction of CHAR. | |
508 The returned value is 0 for left-to-right and 1 for right-to-left. */) | |
509 (ch) | |
510 Lisp_Object ch; | |
511 { | |
512 int c; | |
513 | |
514 CHECK_CHARACTER (ch); | |
515 c = XINT (ch); | |
516 return CHAR_TABLE_REF (Vchar_direction_table, c); | |
517 } | |
518 | |
519 DEFUN ("chars-in-region", Fchars_in_region, Schars_in_region, 2, 2, 0, | |
520 doc: /* Return number of characters between BEG and END. | |
521 This is now an obsolete function. We keep it just for backward compatibility. */) | |
522 (beg, end) | |
523 Lisp_Object beg, end; | |
524 { | |
525 int from, to; | |
526 | |
527 CHECK_NUMBER_COERCE_MARKER (beg); | |
528 CHECK_NUMBER_COERCE_MARKER (end); | |
529 | |
530 from = min (XFASTINT (beg), XFASTINT (end)); | |
531 to = max (XFASTINT (beg), XFASTINT (end)); | |
532 | |
533 return make_number (to - from); | |
534 } | |
535 | |
536 /* Return the number of characters in the NBYTES bytes at PTR. | |
537 This works by looking at the contents and checking for multibyte | |
538 sequences while assuming that there's no invalid sequence. | |
539 However, if the current buffer has enable-multibyte-characters = | |
540 nil, we treat each byte as a character. */ | |
541 | |
542 int | |
543 chars_in_text (ptr, nbytes) | |
89483 | 544 const unsigned char *ptr; |
88363 | 545 int nbytes; |
546 { | |
547 /* current_buffer is null at early stages of Emacs initialization. */ | |
548 if (current_buffer == 0 | |
549 || NILP (current_buffer->enable_multibyte_characters)) | |
550 return nbytes; | |
551 | |
552 return multibyte_chars_in_text (ptr, nbytes); | |
553 } | |
554 | |
555 /* Return the number of characters in the NBYTES bytes at PTR. | |
556 This works by looking at the contents and checking for multibyte | |
557 sequences while assuming that there's no invalid sequence. It | |
558 ignores enable-multibyte-characters. */ | |
559 | |
560 int | |
561 multibyte_chars_in_text (ptr, nbytes) | |
89483 | 562 const unsigned char *ptr; |
88363 | 563 int nbytes; |
564 { | |
89483 | 565 const unsigned char *endp = ptr + nbytes; |
88363 | 566 int chars = 0; |
567 | |
568 while (ptr < endp) | |
569 { | |
570 int len = MULTIBYTE_LENGTH (ptr, endp); | |
571 | |
572 if (len == 0) | |
573 abort (); | |
574 ptr += len; | |
575 chars++; | |
576 } | |
577 | |
578 return chars; | |
579 } | |
580 | |
581 /* Parse unibyte text at STR of LEN bytes as a multibyte text, count | |
582 characters and bytes in it, and store them in *NCHARS and *NBYTES | |
583 respectively. On counting bytes, pay attention to that 8-bit | |
584 characters not constructing a valid multibyte sequence are | |
585 represented by 2-byte in a multibyte text. */ | |
586 | |
587 void | |
588 parse_str_as_multibyte (str, len, nchars, nbytes) | |
89483 | 589 const unsigned char *str; |
88363 | 590 int len, *nchars, *nbytes; |
591 { | |
89483 | 592 const unsigned char *endp = str + len; |
88363 | 593 int n, chars = 0, bytes = 0; |
594 | |
595 if (len >= MAX_MULTIBYTE_LENGTH) | |
596 { | |
89483 | 597 const unsigned char *adjusted_endp = endp - MAX_MULTIBYTE_LENGTH; |
88363 | 598 while (str < adjusted_endp) |
599 { | |
600 if ((n = MULTIBYTE_LENGTH_NO_CHECK (str)) > 0) | |
601 str += n, bytes += n; | |
602 else | |
603 str++, bytes += 2; | |
604 chars++; | |
605 } | |
606 } | |
607 while (str < endp) | |
608 { | |
609 if ((n = MULTIBYTE_LENGTH (str, endp)) > 0) | |
610 str += n, bytes += n; | |
611 else | |
612 str++, bytes += 2; | |
613 chars++; | |
614 } | |
615 | |
616 *nchars = chars; | |
617 *nbytes = bytes; | |
618 return; | |
619 } | |
620 | |
621 /* Arrange unibyte text at STR of NBYTES bytes as a multibyte text. | |
622 It actually converts only such 8-bit characters that don't contruct | |
623 a multibyte sequence to multibyte forms of Latin-1 characters. If | |
624 NCHARS is nonzero, set *NCHARS to the number of characters in the | |
625 text. It is assured that we can use LEN bytes at STR as a work | |
626 area and that is enough. Return the number of bytes of the | |
627 resulting text. */ | |
628 | |
629 int | |
630 str_as_multibyte (str, len, nbytes, nchars) | |
631 unsigned char *str; | |
632 int len, nbytes, *nchars; | |
633 { | |
634 unsigned char *p = str, *endp = str + nbytes; | |
635 unsigned char *to; | |
636 int chars = 0; | |
637 int n; | |
638 | |
639 if (nbytes >= MAX_MULTIBYTE_LENGTH) | |
640 { | |
641 unsigned char *adjusted_endp = endp - MAX_MULTIBYTE_LENGTH; | |
642 while (p < adjusted_endp | |
643 && (n = MULTIBYTE_LENGTH_NO_CHECK (p)) > 0) | |
644 p += n, chars++; | |
645 } | |
646 while ((n = MULTIBYTE_LENGTH (p, endp)) > 0) | |
647 p += n, chars++; | |
648 if (nchars) | |
649 *nchars = chars; | |
650 if (p == endp) | |
651 return nbytes; | |
652 | |
653 to = p; | |
654 nbytes = endp - p; | |
655 endp = str + len; | |
656 safe_bcopy ((char *) p, (char *) (endp - nbytes), nbytes); | |
657 p = endp - nbytes; | |
658 | |
659 if (nbytes >= MAX_MULTIBYTE_LENGTH) | |
660 { | |
661 unsigned char *adjusted_endp = endp - MAX_MULTIBYTE_LENGTH; | |
662 while (p < adjusted_endp) | |
663 { | |
664 if ((n = MULTIBYTE_LENGTH_NO_CHECK (p)) > 0) | |
665 { | |
666 while (n--) | |
667 *to++ = *p++; | |
668 } | |
669 else | |
670 { | |
671 int c = *p++; | |
672 c = BYTE8_TO_CHAR (c); | |
673 to += CHAR_STRING (c, to); | |
674 } | |
675 } | |
676 chars++; | |
677 } | |
678 while (p < endp) | |
679 { | |
680 if ((n = MULTIBYTE_LENGTH (p, endp)) > 0) | |
681 { | |
682 while (n--) | |
683 *to++ = *p++; | |
89483 | 684 } |
88363 | 685 else |
686 { | |
687 int c = *p++; | |
688 c = BYTE8_TO_CHAR (c); | |
689 to += CHAR_STRING (c, to); | |
690 } | |
691 chars++; | |
692 } | |
693 if (nchars) | |
694 *nchars = chars; | |
695 return (to - str); | |
696 } | |
697 | |
698 /* Parse unibyte string at STR of LEN bytes, and return the number of | |
699 bytes it may ocupy when converted to multibyte string by | |
700 `str_to_multibyte'. */ | |
701 | |
702 int | |
703 parse_str_to_multibyte (str, len) | |
704 unsigned char *str; | |
705 int len; | |
706 { | |
707 unsigned char *endp = str + len; | |
708 int bytes; | |
709 | |
710 for (bytes = 0; str < endp; str++) | |
711 bytes += (*str < 0x80) ? 1 : 2; | |
712 return bytes; | |
713 } | |
714 | |
715 | |
716 /* Convert unibyte text at STR of NBYTES bytes to a multibyte text | |
717 that contains the same single-byte characters. It actually | |
718 converts all 8-bit characters to multibyte forms. It is assured | |
719 that we can use LEN bytes at STR as a work area and that is | |
720 enough. */ | |
721 | |
722 int | |
723 str_to_multibyte (str, len, bytes) | |
724 unsigned char *str; | |
725 int len, bytes; | |
726 { | |
727 unsigned char *p = str, *endp = str + bytes; | |
728 unsigned char *to; | |
729 | |
730 while (p < endp && *p < 0x80) p++; | |
731 if (p == endp) | |
732 return bytes; | |
733 to = p; | |
734 bytes = endp - p; | |
735 endp = str + len; | |
736 safe_bcopy ((char *) p, (char *) (endp - bytes), bytes); | |
737 p = endp - bytes; | |
89483 | 738 while (p < endp) |
88363 | 739 { |
740 int c = *p++; | |
741 | |
742 if (c >= 0x80) | |
743 c = BYTE8_TO_CHAR (c); | |
744 to += CHAR_STRING (c, to); | |
745 } | |
746 return (to - str); | |
747 } | |
748 | |
749 /* Arrange multibyte text at STR of LEN bytes as a unibyte text. It | |
750 actually converts characters in the range 0x80..0xFF to | |
751 unibyte. */ | |
752 | |
753 int | |
754 str_as_unibyte (str, bytes) | |
755 unsigned char *str; | |
756 int bytes; | |
757 { | |
88878
a0ae1a5876c7
(Vscript_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
88853
diff
changeset
|
758 const unsigned char *p = str, *endp = str + bytes; |
a0ae1a5876c7
(Vscript_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
88853
diff
changeset
|
759 unsigned char *to; |
88363 | 760 int c, len; |
761 | |
762 while (p < endp) | |
763 { | |
764 c = *p; | |
765 len = BYTES_BY_CHAR_HEAD (c); | |
766 if (CHAR_BYTE8_HEAD_P (c)) | |
767 break; | |
768 p += len; | |
769 } | |
88878
a0ae1a5876c7
(Vscript_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
88853
diff
changeset
|
770 to = str + (p - str); |
89483 | 771 while (p < endp) |
88363 | 772 { |
773 c = *p; | |
774 len = BYTES_BY_CHAR_HEAD (c); | |
775 if (CHAR_BYTE8_HEAD_P (c)) | |
776 { | |
777 c = STRING_CHAR_ADVANCE (p); | |
778 *to++ = CHAR_TO_BYTE8 (c); | |
779 } | |
780 else | |
781 { | |
782 while (len--) *to++ = *p++; | |
783 } | |
784 } | |
785 return (to - str); | |
786 } | |
787 | |
788 int | |
789 string_count_byte8 (string) | |
790 Lisp_Object string; | |
791 { | |
792 int multibyte = STRING_MULTIBYTE (string); | |
89483 | 793 int nbytes = SBYTES (string); |
794 unsigned char *p = SDATA (string); | |
88363 | 795 unsigned char *pend = p + nbytes; |
796 int count = 0; | |
797 int c, len; | |
798 | |
799 if (multibyte) | |
800 while (p < pend) | |
801 { | |
802 c = *p; | |
803 len = BYTES_BY_CHAR_HEAD (c); | |
804 | |
805 if (CHAR_BYTE8_HEAD_P (c)) | |
806 count++; | |
807 p += len; | |
808 } | |
809 else | |
810 while (p < pend) | |
811 { | |
812 if (*p++ >= 0x80) | |
813 count++; | |
814 } | |
815 return count; | |
816 } | |
817 | |
818 | |
819 Lisp_Object | |
820 string_escape_byte8 (string) | |
821 Lisp_Object string; | |
822 { | |
89483 | 823 int nchars = SCHARS (string); |
824 int nbytes = SBYTES (string); | |
88363 | 825 int multibyte = STRING_MULTIBYTE (string); |
826 int byte8_count; | |
88878
a0ae1a5876c7
(Vscript_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
88853
diff
changeset
|
827 const unsigned char *src, *src_end; |
a0ae1a5876c7
(Vscript_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
88853
diff
changeset
|
828 unsigned char *dst; |
88363 | 829 Lisp_Object val; |
830 int c, len; | |
831 | |
832 if (multibyte && nchars == nbytes) | |
833 return string; | |
834 | |
835 byte8_count = string_count_byte8 (string); | |
836 | |
837 if (byte8_count == 0) | |
838 return string; | |
839 | |
840 if (multibyte) | |
841 /* Convert 2-byte sequence of byte8 chars to 4-byte octal. */ | |
88526
6bac4ae1c326
(string_escape_byte8): Make multibyte string with correct size.
Kenichi Handa <handa@m17n.org>
parents:
88427
diff
changeset
|
842 val = make_uninit_multibyte_string (nchars + byte8_count * 3, |
88363 | 843 nbytes + byte8_count * 2); |
844 else | |
845 /* Convert 1-byte sequence of byte8 chars to 4-byte octal. */ | |
846 val = make_uninit_string (nbytes + byte8_count * 3); | |
847 | |
89483 | 848 src = SDATA (string); |
88363 | 849 src_end = src + nbytes; |
89483 | 850 dst = SDATA (val); |
88363 | 851 if (multibyte) |
852 while (src < src_end) | |
853 { | |
854 c = *src; | |
855 len = BYTES_BY_CHAR_HEAD (c); | |
856 | |
857 if (CHAR_BYTE8_HEAD_P (c)) | |
858 { | |
859 c = STRING_CHAR_ADVANCE (src); | |
860 c = CHAR_TO_BYTE8 (c); | |
88427
1a3aec316071
(c_string_width): Add return type `int'.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
861 sprintf ((char *) dst, "\\%03o", c); |
88363 | 862 dst += 4; |
863 } | |
864 else | |
865 while (len--) *dst++ = *src++; | |
866 } | |
867 else | |
868 while (src < src_end) | |
869 { | |
870 c = *src++; | |
871 if (c >= 0x80) | |
872 { | |
88427
1a3aec316071
(c_string_width): Add return type `int'.
Kenichi Handa <handa@m17n.org>
parents:
88363
diff
changeset
|
873 sprintf ((char *) dst, "\\%03o", c); |
88363 | 874 dst += 4; |
875 } | |
876 else | |
877 *dst++ = c; | |
878 } | |
879 return val; | |
880 } | |
881 | |
882 | |
89483 | 883 DEFUN ("string", Fstring, Sstring, 0, MANY, 0, |
88363 | 884 doc: /* |
88640 | 885 Concatenate all the argument characters and make the result a string. |
886 usage: (string &rest CHARACTERS) */) | |
88363 | 887 (n, args) |
888 int n; | |
889 Lisp_Object *args; | |
890 { | |
891 int i; | |
892 unsigned char *buf = (unsigned char *) alloca (MAX_MULTIBYTE_LENGTH * n); | |
893 unsigned char *p = buf; | |
894 int c; | |
895 | |
896 for (i = 0; i < n; i++) | |
897 { | |
898 CHECK_CHARACTER (args[i]); | |
899 c = XINT (args[i]); | |
900 p += CHAR_STRING (c, p); | |
901 } | |
902 | |
903 return make_string_from_bytes ((char *) buf, n, p - buf); | |
904 } | |
905 | |
906 void | |
907 init_character_once () | |
908 { | |
909 } | |
910 | |
911 #ifdef emacs | |
912 | |
913 void | |
914 syms_of_character () | |
915 { | |
916 DEFSYM (Qcharacterp, "characterp"); | |
917 DEFSYM (Qauto_fill_chars, "auto-fill-chars"); | |
918 | |
919 staticpro (&Vchar_unify_table); | |
920 Vchar_unify_table = Qnil; | |
921 | |
922 defsubr (&Smax_char); | |
923 defsubr (&Scharacterp); | |
924 defsubr (&Sunibyte_char_to_multibyte); | |
925 defsubr (&Smultibyte_char_to_unibyte); | |
926 defsubr (&Schar_bytes); | |
927 defsubr (&Schar_width); | |
928 defsubr (&Sstring_width); | |
929 defsubr (&Schar_direction); | |
930 defsubr (&Schars_in_region); | |
931 defsubr (&Sstring); | |
932 | |
933 DEFVAR_LISP ("translation-table-vector", &Vtranslation_table_vector, | |
934 doc: /* | |
88926
f026b7e4fc61
(syms_of_character) <translation-table-vector>: Doc
Dave Love <fx@gnu.org>
parents:
88913
diff
changeset
|
935 Vector recording all translation tables ever defined. |
f026b7e4fc61
(syms_of_character) <translation-table-vector>: Doc
Dave Love <fx@gnu.org>
parents:
88913
diff
changeset
|
936 Each element is a pair (SYMBOL . TABLE) relating the table to the |
f026b7e4fc61
(syms_of_character) <translation-table-vector>: Doc
Dave Love <fx@gnu.org>
parents:
88913
diff
changeset
|
937 symbol naming it. The ID of a translation table is an index into this vector. */); |
88363 | 938 Vtranslation_table_vector = Fmake_vector (make_number (16), Qnil); |
939 | |
940 DEFVAR_LISP ("auto-fill-chars", &Vauto_fill_chars, | |
941 doc: /* | |
942 A char-table for characters which invoke auto-filling. | |
943 Such characters have value t in this table. */); | |
944 Vauto_fill_chars = Fmake_char_table (Qauto_fill_chars, Qnil); | |
88853
503c60238368
(syms_of_character): Fix CHAR_TABLE_SET call.
Dave Love <fx@gnu.org>
parents:
88743
diff
changeset
|
945 CHAR_TABLE_SET (Vauto_fill_chars, ' ', Qt); |
503c60238368
(syms_of_character): Fix CHAR_TABLE_SET call.
Dave Love <fx@gnu.org>
parents:
88743
diff
changeset
|
946 CHAR_TABLE_SET (Vauto_fill_chars, '\n', Qt); |
88363 | 947 |
948 DEFVAR_LISP ("char-width-table", &Vchar_width_table, | |
949 doc: /* | |
950 A char-table for width (columns) of each character. */); | |
951 Vchar_width_table = Fmake_char_table (Qnil, make_number (1)); | |
88743
4570f1a4c391
(syms_of_character): Setup Vchar_width_table for
Kenichi Handa <handa@m17n.org>
parents:
88716
diff
changeset
|
952 char_table_set_range (Vchar_width_table, 0x80, 0x9F, make_number (4)); |
4570f1a4c391
(syms_of_character): Setup Vchar_width_table for
Kenichi Handa <handa@m17n.org>
parents:
88716
diff
changeset
|
953 char_table_set_range (Vchar_width_table, MAX_5_BYTE_CHAR + 1, MAX_CHAR, |
4570f1a4c391
(syms_of_character): Setup Vchar_width_table for
Kenichi Handa <handa@m17n.org>
parents:
88716
diff
changeset
|
954 make_number (4)); |
88363 | 955 |
956 DEFVAR_LISP ("char-direction-table", &Vchar_direction_table, | |
957 doc: /* A char-table for direction of each character. */); | |
958 Vchar_direction_table = Fmake_char_table (Qnil, make_number (1)); | |
959 | |
960 DEFVAR_LISP ("printable-chars", &Vprintable_chars, | |
961 doc: /* A char-table for each printable character. */); | |
88716
f617b1bf301b
(syms_of_character): Set the default value of
Kenichi Handa <handa@m17n.org>
parents:
88640
diff
changeset
|
962 Vprintable_chars = Fmake_char_table (Qnil, Qnil); |
89029
ad8f56efa7c6
(syms_of_character): Setup Vprintable_chars.
Kenichi Handa <handa@m17n.org>
parents:
89020
diff
changeset
|
963 Fset_char_table_range (Vprintable_chars, |
ad8f56efa7c6
(syms_of_character): Setup Vprintable_chars.
Kenichi Handa <handa@m17n.org>
parents:
89020
diff
changeset
|
964 Fcons (make_number (32), make_number (126)), Qt); |
ad8f56efa7c6
(syms_of_character): Setup Vprintable_chars.
Kenichi Handa <handa@m17n.org>
parents:
89020
diff
changeset
|
965 Fset_char_table_range (Vprintable_chars, |
ad8f56efa7c6
(syms_of_character): Setup Vprintable_chars.
Kenichi Handa <handa@m17n.org>
parents:
89020
diff
changeset
|
966 Fcons (make_number (160), |
ad8f56efa7c6
(syms_of_character): Setup Vprintable_chars.
Kenichi Handa <handa@m17n.org>
parents:
89020
diff
changeset
|
967 make_number (MAX_5_BYTE_CHAR)), Qt); |
88878
a0ae1a5876c7
(Vscript_alist): New variable.
Kenichi Handa <handa@m17n.org>
parents:
88853
diff
changeset
|
968 |
88913
76074dea1258
(Vscript_alist): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
88878
diff
changeset
|
969 DEFVAR_LISP ("char-script-table", &Vchar_script_table, |
76074dea1258
(Vscript_alist): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
88878
diff
changeset
|
970 doc: /* Char table of script symbols. |
76074dea1258
(Vscript_alist): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
88878
diff
changeset
|
971 It has one extra slot whose value is a list of script symbols. */); |
76074dea1258
(Vscript_alist): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
88878
diff
changeset
|
972 |
76074dea1258
(Vscript_alist): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
88878
diff
changeset
|
973 /* Intern this now in case it isn't already done. |
76074dea1258
(Vscript_alist): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
88878
diff
changeset
|
974 Setting this variable twice is harmless. |
76074dea1258
(Vscript_alist): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
88878
diff
changeset
|
975 But don't staticpro it here--that is done in alloc.c. */ |
76074dea1258
(Vscript_alist): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
88878
diff
changeset
|
976 Qchar_table_extra_slots = intern ("char-table-extra-slots"); |
76074dea1258
(Vscript_alist): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
88878
diff
changeset
|
977 DEFSYM (Qchar_script_table, "char-script-table"); |
76074dea1258
(Vscript_alist): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
88878
diff
changeset
|
978 Fput (Qchar_script_table, Qchar_table_extra_slots, make_number (1)); |
76074dea1258
(Vscript_alist): This variable deleted.
Kenichi Handa <handa@m17n.org>
parents:
88878
diff
changeset
|
979 Vchar_script_table = Fmake_char_table (Qchar_script_table, Qnil); |
88363 | 980 } |
981 | |
982 #endif /* emacs */ |