70
|
1 /* Functions to handle multilingual characters.
|
|
2 Copyright (C) 1992, 1995 Free Software Foundation, Inc.
|
|
3 Copyright (C) 1995 Sun Microsystems, Inc.
|
|
4
|
|
5 This file is part of XEmacs.
|
|
6
|
|
7 XEmacs is free software; you can redistribute it and/or modify it
|
|
8 under the terms of the GNU General Public License as published by the
|
|
9 Free Software Foundation; either version 2, or (at your option) any
|
|
10 later version.
|
|
11
|
|
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
15 for more details.
|
|
16
|
|
17 You should have received a copy of the GNU General Public License
|
|
18 along with XEmacs; see the file COPYING. If not, write to
|
|
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
20 Boston, MA 02111-1307, USA. */
|
|
21
|
|
22 /* Synched up with: Mule 2.3. Not in FSF. */
|
|
23
|
|
24 /* Rewritten by Ben Wing <wing@666.com>. */
|
|
25
|
|
26 #include <config.h>
|
|
27 #include "lisp.h"
|
|
28
|
|
29 #include "buffer.h"
|
|
30 #include "chartab.h"
|
|
31 #include "elhash.h"
|
|
32 #include "lstream.h"
|
|
33 #include "device.h"
|
|
34 #include "faces.h"
|
|
35
|
|
36 /* The various pre-defined charsets. */
|
|
37
|
|
38 Lisp_Object Vcharset_ascii;
|
|
39 Lisp_Object Vcharset_control_1;
|
74
|
40 Lisp_Object Vcharset_latin_iso8859_1;
|
|
41 Lisp_Object Vcharset_latin_iso8859_2;
|
|
42 Lisp_Object Vcharset_latin_iso8859_3;
|
|
43 Lisp_Object Vcharset_latin_iso8859_4;
|
|
44 Lisp_Object Vcharset_cyrillic_iso8859_5;
|
|
45 Lisp_Object Vcharset_arabic_iso8859_6;
|
|
46 Lisp_Object Vcharset_greek_iso8859_7;
|
|
47 Lisp_Object Vcharset_hebrew_iso8859_8;
|
|
48 Lisp_Object Vcharset_latin_iso8859_9;
|
|
49 Lisp_Object Vcharset_thai_tis620;
|
|
50 Lisp_Object Vcharset_katakana_jisx0201;
|
|
51 Lisp_Object Vcharset_latin_jisx0201;
|
70
|
52 Lisp_Object Vcharset_japanese_jisx0208_1978;
|
|
53 Lisp_Object Vcharset_japanese_jisx0208;
|
|
54 Lisp_Object Vcharset_japanese_jisx0212;
|
74
|
55 Lisp_Object Vcharset_chinese_gb2312;
|
70
|
56 Lisp_Object Vcharset_chinese_big5_1;
|
|
57 Lisp_Object Vcharset_chinese_big5_2;
|
|
58 Lisp_Object Vcharset_chinese_cns11643_1;
|
|
59 Lisp_Object Vcharset_chinese_cns11643_2;
|
|
60 Lisp_Object Vcharset_korean_ksc5601;
|
|
61 Lisp_Object Vcharset_composite;
|
|
62
|
|
63 /* Hashtables for composite chars. One maps string representing
|
|
64 composed chars to their equivalent chars; one goes the
|
|
65 other way. */
|
|
66 Lisp_Object Vcomposite_char_char2string_hashtable;
|
|
67 Lisp_Object Vcomposite_char_string2char_hashtable;
|
|
68
|
|
69 /* Table of charsets indexed by leading byte. */
|
|
70 Lisp_Object charset_by_leading_byte[128];
|
|
71
|
|
72 /* Table of charsets indexed by type/final-byte/direction. */
|
|
73 Lisp_Object charset_by_attributes[4][128][2];
|
|
74
|
|
75 static int composite_char_row_next;
|
|
76 static int composite_char_col_next;
|
|
77
|
|
78 /* Table of number of bytes in the string representation of a character
|
|
79 indexed by the first byte of that representation.
|
|
80
|
183
|
81 rep_bytes_by_first_byte(c) is more efficient than the equivalent
|
|
82 canonical computation:
|
70
|
83
|
183
|
84 (BYTE_ASCII_P (c) ? 1 : XCHARSET_REP_BYTES (CHARSET_BY_LEADING_BYTE (c))) */
|
70
|
85
|
|
86 Bytecount rep_bytes_by_first_byte[0xA0] =
|
183
|
87 { /* 0x00 - 0x7f are for straight ASCII */
|
70
|
88 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
89 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
90 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
91 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
92 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
93 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
94 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
95 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
183
|
96 /* 0x80 - 0x8f are for Dimension-1 official charsets */
|
70
|
97 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
183
|
98 /* 0x90 - 0x9d are for Dimension-2 official charsets */
|
|
99 /* 0x9e is for Dimension-1 private charsets */
|
|
100 /* 0x9f is for Dimension-2 private charsets */
|
70
|
101 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4
|
|
102 };
|
|
103
|
|
104 Lisp_Object Qcharsetp;
|
|
105
|
|
106 /* Qdoc_string, Qdimension, Qchars defined in general.c */
|
|
107 Lisp_Object Qregistry, Qfinal, Qgraphic;
|
|
108 Lisp_Object Qdirection;
|
|
109 Lisp_Object Qreverse_direction_charset;
|
|
110 Lisp_Object Qccl_program;
|
|
111
|
74
|
112 Lisp_Object Qascii, Qcontrol_1,
|
183
|
113
|
74
|
114 Qlatin_iso8859_1,
|
|
115 Qlatin_iso8859_2,
|
|
116 Qlatin_iso8859_3,
|
|
117 Qlatin_iso8859_4,
|
|
118 Qcyrillic_iso8859_5,
|
|
119 Qarabic_iso8859_6,
|
|
120 Qgreek_iso8859_7,
|
|
121 Qhebrew_iso8859_8,
|
|
122 Qlatin_iso8859_9,
|
183
|
123
|
74
|
124 Qthai_tis620,
|
183
|
125
|
74
|
126 Qkatakana_jisx0201, Qlatin_jisx0201,
|
70
|
127 Qjapanese_jisx0208_1978,
|
|
128 Qjapanese_jisx0208,
|
|
129 Qjapanese_jisx0212,
|
183
|
130
|
74
|
131 Qchinese_gb2312,
|
|
132 Qchinese_big5_1, Qchinese_big5_2,
|
70
|
133 Qchinese_cns11643_1, Qchinese_cns11643_2,
|
183
|
134
|
70
|
135 Qkorean_ksc5601, Qcomposite;
|
|
136
|
|
137 Lisp_Object Ql2r, Qr2l;
|
|
138
|
|
139 Lisp_Object Vcharset_hashtable;
|
|
140
|
|
141 static Bufbyte next_allocated_1_byte_leading_byte;
|
|
142 static Bufbyte next_allocated_2_byte_leading_byte;
|
|
143
|
|
144 /* Composite characters are characters constructed by overstriking two
|
|
145 or more regular characters.
|
|
146
|
|
147 1) The old Mule implementation involves storing composite characters
|
|
148 in a buffer as a tag followed by all of the actual characters
|
|
149 used to make up the composite character. I think this is a bad
|
|
150 idea; it greatly complicates code that wants to handle strings
|
|
151 one character at a time because it has to deal with the possibility
|
|
152 of great big ungainly characters. It's much more reasonable to
|
|
153 simply store an index into a table of composite characters.
|
|
154
|
|
155 2) The current implementation only allows for 16,384 separate
|
|
156 composite characters over the lifetime of the XEmacs process.
|
|
157 This could become a potential problem if the user
|
|
158 edited lots of different files that use composite characters.
|
|
159 Due to FSF bogosity, increasing the number of allowable
|
|
160 composite characters under Mule would decrease the number
|
|
161 of possible faces that can exist. Mule already has shrunk
|
|
162 this to 2048, and further shrinkage would become uncomfortable.
|
|
163 No such problems exist in XEmacs.
|
|
164
|
|
165 Composite characters could be represented as 0x80 C1 C2 C3,
|
|
166 where each C[1-3] is in the range 0xA0 - 0xFF. This allows
|
|
167 for slightly under 2^20 (one million) composite characters
|
|
168 over the XEmacs process lifetime, and you only need to
|
|
169 increase the size of a Mule character from 19 to 21 bits.
|
|
170 Or you could use 0x80 C1 C2 C3 C4, allowing for about
|
|
171 85 million (slightly over 2^26) composite characters. */
|
|
172
|
|
173
|
|
174 /************************************************************************/
|
|
175 /* Basic Emchar functions */
|
|
176 /************************************************************************/
|
|
177
|
|
178 /* Convert a non-ASCII Mule character C into a one-character Mule-encoded
|
|
179 string in STR. Returns the number of bytes stored.
|
|
180 Do not call this directly. Use the macro set_charptr_emchar() instead.
|
|
181 */
|
|
182
|
|
183 Bytecount
|
|
184 non_ascii_set_charptr_emchar (Bufbyte *str, Emchar c)
|
|
185 {
|
|
186 Bufbyte *p;
|
|
187 Bufbyte lb;
|
|
188 int c1, c2;
|
|
189 Lisp_Object charset;
|
|
190
|
|
191 p = str;
|
|
192 BREAKUP_CHAR (c, charset, c1, c2);
|
|
193 lb = CHAR_LEADING_BYTE (c);
|
|
194 if (LEADING_BYTE_PRIVATE_P (lb))
|
|
195 *p++ = PRIVATE_LEADING_BYTE_PREFIX (lb);
|
|
196 *p++ = lb;
|
|
197 if (EQ (charset, Vcharset_control_1))
|
|
198 c1 += 0x20;
|
|
199 *p++ = c1 | 0x80;
|
|
200 if (c2)
|
|
201 *p++ = c2 | 0x80;
|
|
202
|
|
203 return (p - str);
|
|
204 }
|
|
205
|
|
206 /* Return the first character from a Mule-encoded string in STR,
|
|
207 assuming it's non-ASCII. Do not call this directly.
|
|
208 Use the macro charptr_emchar() instead. */
|
|
209
|
|
210 Emchar
|
|
211 non_ascii_charptr_emchar (CONST Bufbyte *str)
|
|
212 {
|
|
213 Bufbyte i0 = *str, i1, i2 = 0;
|
|
214 Lisp_Object charset;
|
|
215
|
|
216 if (i0 == LEADING_BYTE_CONTROL_1)
|
|
217 return (Emchar) (*++str - 0x20);
|
|
218
|
|
219 if (LEADING_BYTE_PREFIX_P (i0))
|
|
220 i0 = *++str;
|
|
221
|
|
222 i1 = *++str & 0x7F;
|
|
223
|
|
224 charset = CHARSET_BY_LEADING_BYTE (i0);
|
|
225 if (XCHARSET_DIMENSION (charset) == 2)
|
|
226 i2 = *++str & 0x7F;
|
|
227
|
|
228 return MAKE_CHAR (charset, i1, i2);
|
|
229 }
|
|
230
|
|
231 /* Return whether CH is a valid Emchar, assuming it's non-ASCII.
|
|
232 Do not call this directly. Use the macro valid_char_p() instead. */
|
|
233
|
|
234 int
|
|
235 non_ascii_valid_char_p (Emchar ch)
|
|
236 {
|
|
237 int f1, f2, f3;
|
|
238
|
|
239 /* Must have only lowest 19 bits set */
|
|
240 if (ch & ~0x7FFFF)
|
|
241 return 0;
|
|
242
|
|
243 f1 = CHAR_FIELD1 (ch);
|
|
244 f2 = CHAR_FIELD2 (ch);
|
|
245 f3 = CHAR_FIELD3 (ch);
|
|
246
|
|
247 if (f1 == 0)
|
|
248 {
|
|
249 Lisp_Object charset;
|
|
250
|
|
251 if (f2 < MIN_CHAR_FIELD2_OFFICIAL ||
|
|
252 (f2 > MAX_CHAR_FIELD2_OFFICIAL && f2 < MIN_CHAR_FIELD2_PRIVATE) ||
|
|
253 f2 > MAX_CHAR_FIELD2_PRIVATE)
|
|
254 return 0;
|
|
255 if (f3 < 0x20)
|
|
256 return 0;
|
|
257
|
|
258 if (f3 != 0x20 && f3 != 0x7F)
|
|
259 return 1;
|
|
260
|
|
261 /*
|
|
262 NOTE: This takes advantage of the fact that
|
|
263 FIELD2_TO_OFFICIAL_LEADING_BYTE and
|
|
264 FIELD2_TO_PRIVATE_LEADING_BYTE are the same.
|
|
265 */
|
|
266 charset = CHARSET_BY_LEADING_BYTE (f2 + FIELD2_TO_OFFICIAL_LEADING_BYTE);
|
|
267 return (XCHARSET_CHARS (charset) == 96);
|
|
268 }
|
|
269 else
|
|
270 {
|
|
271 Lisp_Object charset;
|
|
272
|
|
273 if (f1 < MIN_CHAR_FIELD1_OFFICIAL ||
|
|
274 (f1 > MAX_CHAR_FIELD1_OFFICIAL && f1 < MIN_CHAR_FIELD1_PRIVATE) ||
|
|
275 f1 > MAX_CHAR_FIELD1_PRIVATE)
|
|
276 return 0;
|
|
277 if (f2 < 0x20 || f3 < 0x20)
|
|
278 return 0;
|
|
279
|
|
280 if (f1 + FIELD1_TO_OFFICIAL_LEADING_BYTE == LEADING_BYTE_COMPOSITE)
|
|
281 {
|
|
282 if (UNBOUNDP (Fgethash (make_int (ch),
|
|
283 Vcomposite_char_char2string_hashtable,
|
|
284 Qunbound)))
|
|
285 return 0;
|
|
286 return 1;
|
|
287 }
|
|
288
|
|
289 if (f2 != 0x20 && f2 != 0x7F && f3 != 0x20 && f3 != 0x7F)
|
|
290 return 1;
|
|
291
|
|
292 if (f1 <= MAX_CHAR_FIELD1_OFFICIAL)
|
|
293 charset =
|
|
294 CHARSET_BY_LEADING_BYTE (f1 + FIELD1_TO_OFFICIAL_LEADING_BYTE);
|
|
295 else
|
|
296 charset =
|
|
297 CHARSET_BY_LEADING_BYTE (f1 + FIELD1_TO_PRIVATE_LEADING_BYTE);
|
|
298
|
|
299 return (XCHARSET_CHARS (charset) == 96);
|
|
300 }
|
|
301 }
|
|
302
|
|
303
|
|
304 /************************************************************************/
|
|
305 /* Basic string functions */
|
|
306 /************************************************************************/
|
|
307
|
|
308 /* Copy the character pointed to by PTR into STR, assuming it's
|
|
309 non-ASCII. Do not call this directly. Use the macro
|
|
310 charptr_copy_char() instead. */
|
|
311
|
|
312 Bytecount
|
|
313 non_ascii_charptr_copy_char (CONST Bufbyte *ptr, Bufbyte *str)
|
|
314 {
|
|
315 Bufbyte *strptr = str;
|
|
316 *strptr = *ptr++;
|
|
317 switch (REP_BYTES_BY_FIRST_BYTE (*strptr))
|
|
318 {
|
|
319 /* Notice fallthrough. */
|
|
320 case 4: *++strptr = *ptr++;
|
|
321 case 3: *++strptr = *ptr++;
|
|
322 case 2: *++strptr = *ptr;
|
|
323 break;
|
|
324 default:
|
|
325 abort ();
|
|
326 }
|
|
327 return strptr + 1 - str;
|
|
328 }
|
|
329
|
|
330
|
|
331 /************************************************************************/
|
|
332 /* streams of Emchars */
|
|
333 /************************************************************************/
|
|
334
|
|
335 /* Treat a stream as a stream of Emchar's rather than a stream of bytes.
|
|
336 The functions below are not meant to be called directly; use
|
|
337 the macros in insdel.h. */
|
|
338
|
|
339 Emchar
|
|
340 Lstream_get_emchar_1 (Lstream *stream, int ch)
|
|
341 {
|
|
342 Bufbyte str[MAX_EMCHAR_LEN];
|
|
343 Bufbyte *strptr = str;
|
|
344
|
|
345 str[0] = (Bufbyte) ch;
|
|
346 switch (REP_BYTES_BY_FIRST_BYTE (ch))
|
|
347 {
|
|
348 /* Notice fallthrough. */
|
|
349 case 4:
|
|
350 ch = Lstream_getc (stream);
|
|
351 assert (ch >= 0);
|
|
352 *++strptr = (Bufbyte) ch;
|
|
353 case 3:
|
|
354 ch = Lstream_getc (stream);
|
|
355 assert (ch >= 0);
|
|
356 *++strptr = (Bufbyte) ch;
|
|
357 case 2:
|
|
358 ch = Lstream_getc (stream);
|
|
359 assert (ch >= 0);
|
|
360 *++strptr = (Bufbyte) ch;
|
|
361 break;
|
|
362 default:
|
|
363 abort ();
|
|
364 }
|
|
365 return charptr_emchar (str);
|
|
366 }
|
|
367
|
|
368 int
|
|
369 Lstream_fput_emchar (Lstream *stream, Emchar ch)
|
|
370 {
|
|
371 Bufbyte str[MAX_EMCHAR_LEN];
|
|
372 Bytecount len = set_charptr_emchar (str, ch);
|
|
373 return Lstream_write (stream, str, len);
|
|
374 }
|
|
375
|
|
376 void
|
|
377 Lstream_funget_emchar (Lstream *stream, Emchar ch)
|
|
378 {
|
|
379 Bufbyte str[MAX_EMCHAR_LEN];
|
|
380 Bytecount len = set_charptr_emchar (str, ch);
|
|
381 Lstream_unread (stream, str, len);
|
|
382 }
|
|
383
|
|
384
|
|
385 /************************************************************************/
|
|
386 /* charset object */
|
|
387 /************************************************************************/
|
|
388
|
|
389 static Lisp_Object
|
|
390 mark_charset (Lisp_Object obj, void (*markobj) (Lisp_Object))
|
|
391 {
|
|
392 struct Lisp_Charset *cs = XCHARSET (obj);
|
|
393
|
|
394 (markobj) (cs->doc_string);
|
|
395 (markobj) (cs->registry);
|
|
396 (markobj) (cs->ccl_program);
|
|
397 return cs->name;
|
|
398 }
|
|
399
|
|
400 static void
|
|
401 print_charset (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
|
|
402 {
|
|
403 struct Lisp_Charset *cs = XCHARSET (obj);
|
|
404 char buf[200];
|
183
|
405
|
70
|
406 if (print_readably)
|
|
407 error ("printing unreadable object #<charset %s 0x%x>",
|
|
408 string_data (XSYMBOL (CHARSET_NAME (cs))->name),
|
|
409 cs->header.uid);
|
|
410
|
|
411 write_c_string ("#<charset ", printcharfun);
|
|
412 print_internal (CHARSET_NAME (cs), printcharfun, 0);
|
|
413 write_c_string (" ", printcharfun);
|
|
414 print_internal (CHARSET_DOC_STRING (cs), printcharfun, 1);
|
|
415 sprintf (buf, " %s %s cols=%d g%d final='%c' reg=",
|
|
416 CHARSET_TYPE (cs) == CHARSET_TYPE_94 ? "94" :
|
|
417 CHARSET_TYPE (cs) == CHARSET_TYPE_96 ? "96" :
|
|
418 CHARSET_TYPE (cs) == CHARSET_TYPE_94X94 ? "94x94" :
|
|
419 "96x96",
|
|
420 CHARSET_DIRECTION (cs) == CHARSET_LEFT_TO_RIGHT ? "l2r" : "r2l",
|
|
421 CHARSET_COLUMNS (cs),
|
|
422 CHARSET_GRAPHIC (cs),
|
|
423 CHARSET_FINAL (cs));
|
|
424 write_c_string (buf, printcharfun);
|
|
425 print_internal (CHARSET_REGISTRY (cs), printcharfun, 0);
|
|
426 sprintf (buf, " 0x%x>", cs->header.uid);
|
|
427 write_c_string (buf, printcharfun);
|
|
428 }
|
|
429
|
272
|
430 DEFINE_LRECORD_IMPLEMENTATION ("charset", charset,
|
|
431 mark_charset, print_charset, 0, 0, 0,
|
|
432 struct Lisp_Charset);
|
70
|
433 /* Make a new charset. */
|
|
434
|
|
435 static Lisp_Object
|
213
|
436 make_charset (int id, Lisp_Object name, Bufbyte leading_byte, unsigned char rep_bytes,
|
70
|
437 unsigned char type, unsigned char columns, unsigned char graphic,
|
|
438 Bufbyte final, unsigned char direction, Lisp_Object doc,
|
|
439 Lisp_Object reg)
|
|
440 {
|
272
|
441 Lisp_Object obj;
|
|
442 struct Lisp_Charset *cs =
|
|
443 alloc_lcrecord_type (struct Lisp_Charset, lrecord_charset);
|
70
|
444 XSETCHARSET (obj, cs);
|
|
445
|
213
|
446 CHARSET_ID (cs) = id;
|
70
|
447 CHARSET_NAME (cs) = name;
|
|
448 CHARSET_LEADING_BYTE (cs) = leading_byte;
|
|
449 CHARSET_REP_BYTES (cs) = rep_bytes;
|
|
450 CHARSET_DIRECTION (cs) = direction;
|
|
451 CHARSET_TYPE (cs) = type;
|
|
452 CHARSET_COLUMNS (cs) = columns;
|
|
453 CHARSET_GRAPHIC (cs) = graphic;
|
|
454 CHARSET_FINAL (cs) = final;
|
|
455 CHARSET_DOC_STRING (cs) = doc;
|
|
456 CHARSET_REGISTRY (cs) = reg;
|
|
457 CHARSET_CCL_PROGRAM (cs) = Qnil;
|
|
458 CHARSET_REVERSE_DIRECTION_CHARSET (cs) = Qnil;
|
|
459
|
|
460 if (final)
|
|
461 {
|
|
462 /* some charsets do not have final characters. This includes
|
|
463 ASCII, Control-1, Composite, and the two faux private
|
|
464 charsets. */
|
|
465 assert (NILP (charset_by_attributes[type][final][direction]));
|
|
466 charset_by_attributes[type][final][direction] = obj;
|
|
467 }
|
|
468
|
|
469 assert (NILP (charset_by_leading_byte[leading_byte - 128]));
|
|
470 charset_by_leading_byte[leading_byte - 128] = obj;
|
|
471 if (leading_byte < 0xA0)
|
|
472 /* official leading byte */
|
|
473 rep_bytes_by_first_byte[leading_byte] = rep_bytes;
|
183
|
474
|
70
|
475 /* Some charsets are "faux" and don't have names or really exist at
|
|
476 all except in the leading-byte table. */
|
|
477 if (!NILP (name))
|
|
478 Fputhash (name, obj, Vcharset_hashtable);
|
|
479 return obj;
|
|
480 }
|
|
481
|
|
482 static int
|
|
483 get_unallocated_leading_byte (int dimension)
|
|
484 {
|
|
485 int lb;
|
|
486
|
|
487 if (dimension == 1)
|
|
488 {
|
|
489 if (next_allocated_1_byte_leading_byte > MAX_LEADING_BYTE_PRIVATE_1)
|
|
490 lb = 0;
|
|
491 else
|
|
492 lb = next_allocated_1_byte_leading_byte++;
|
|
493 }
|
|
494 else
|
|
495 {
|
|
496 if (next_allocated_2_byte_leading_byte > MAX_LEADING_BYTE_PRIVATE_2)
|
|
497 lb = 0;
|
|
498 else
|
|
499 lb = next_allocated_2_byte_leading_byte++;
|
|
500 }
|
|
501
|
|
502 if (!lb)
|
|
503 signal_simple_error
|
|
504 ("No more character sets free for this dimension",
|
|
505 make_int (dimension));
|
|
506
|
|
507 return lb;
|
|
508 }
|
|
509
|
|
510
|
|
511 /************************************************************************/
|
|
512 /* Basic charset Lisp functions */
|
|
513 /************************************************************************/
|
|
514
|
|
515 DEFUN ("charsetp", Fcharsetp, 1, 1, 0, /*
|
|
516 Return non-nil if OBJECT is a charset.
|
|
517 */
|
|
518 (object))
|
|
519 {
|
272
|
520 return CHARSETP (object) ? Qt : Qnil;
|
70
|
521 }
|
|
522
|
|
523 DEFUN ("find-charset", Ffind_charset, 1, 1, 0, /*
|
|
524 Retrieve the charset of the given name.
|
|
525 If CHARSET-OR-NAME is a charset object, it is simply returned.
|
|
526 Otherwise, CHARSET-OR-NAME should be a symbol. If there is no such charset,
|
|
527 nil is returned. Otherwise the associated charset object is returned.
|
|
528 */
|
|
529 (charset_or_name))
|
|
530 {
|
|
531 if (CHARSETP (charset_or_name))
|
|
532 return charset_or_name;
|
272
|
533
|
70
|
534 CHECK_SYMBOL (charset_or_name);
|
|
535 return Fgethash (charset_or_name, Vcharset_hashtable, Qnil);
|
|
536 }
|
|
537
|
|
538 DEFUN ("get-charset", Fget_charset, 1, 1, 0, /*
|
|
539 Retrieve the charset of the given name.
|
|
540 Same as `find-charset' except an error is signalled if there is no such
|
|
541 charset instead of returning nil.
|
|
542 */
|
|
543 (name))
|
|
544 {
|
|
545 Lisp_Object charset = Ffind_charset (name);
|
|
546
|
|
547 if (NILP (charset))
|
|
548 signal_simple_error ("No such charset", name);
|
|
549 return charset;
|
|
550 }
|
|
551
|
|
552 /* We store the charsets in hash tables with the names as the key and the
|
|
553 actual charset object as the value. Occasionally we need to use them
|
|
554 in a list format. These routines provide us with that. */
|
|
555 struct charset_list_closure
|
|
556 {
|
|
557 Lisp_Object *charset_list;
|
|
558 };
|
|
559
|
241
|
560 static int
|
70
|
561 add_charset_to_list_mapper (CONST void *hash_key, void *hash_contents,
|
|
562 void *charset_list_closure)
|
|
563 {
|
|
564 /* This function can GC */
|
|
565 Lisp_Object key, contents;
|
|
566 Lisp_Object *charset_list;
|
185
|
567 struct charset_list_closure *chcl =
|
|
568 (struct charset_list_closure*) charset_list_closure;
|
70
|
569 CVOID_TO_LISP (key, hash_key);
|
|
570 VOID_TO_LISP (contents, hash_contents);
|
|
571 charset_list = chcl->charset_list;
|
|
572
|
|
573 *charset_list = Fcons (XCHARSET_NAME (contents), *charset_list);
|
241
|
574 return 0;
|
70
|
575 }
|
|
576
|
|
577 DEFUN ("charset-list", Fcharset_list, 0, 0, 0, /*
|
|
578 Return a list of the names of all defined charsets.
|
|
579 */
|
|
580 ())
|
|
581 {
|
|
582 Lisp_Object charset_list = Qnil;
|
|
583 struct gcpro gcpro1;
|
|
584 struct charset_list_closure charset_list_closure;
|
|
585
|
|
586 GCPRO1 (charset_list);
|
|
587 charset_list_closure.charset_list = &charset_list;
|
|
588 elisp_maphash (add_charset_to_list_mapper, Vcharset_hashtable,
|
|
589 &charset_list_closure);
|
|
590 UNGCPRO;
|
|
591
|
|
592 return charset_list;
|
|
593 }
|
|
594
|
|
595 DEFUN ("charset-name", Fcharset_name, 1, 1, 0, /*
|
|
596 Return the name of the given charset.
|
|
597 */
|
|
598 (charset))
|
|
599 {
|
272
|
600 return XCHARSET_NAME (Fget_charset (charset));
|
70
|
601 }
|
|
602
|
|
603 DEFUN ("make-charset", Fmake_charset, 3, 3, 0, /*
|
|
604 Define a new character set.
|
|
605 This function is for use with Mule support.
|
|
606 NAME is a symbol, the name by which the character set is normally referred.
|
|
607 DOC-STRING is a string describing the character set.
|
|
608 PROPS is a property list, describing the specific nature of the
|
|
609 character set. Recognized properties are:
|
|
610
|
|
611 'registry A regular expression matching the font registry field for
|
|
612 this character set.
|
|
613 'dimension Number of octets used to index a character in this charset.
|
|
614 Either 1 or 2. Defaults to 1.
|
|
615 'columns Number of columns used to display a character in this charset.
|
|
616 Only used in TTY mode. (Under X, the actual width of a
|
|
617 character can be derived from the font used to display the
|
|
618 characters.) If unspecified, defaults to the dimension
|
|
619 (this is almost always the correct value).
|
|
620 'chars Number of characters in each dimension (94 or 96).
|
|
621 Defaults to 94. Note that if the dimension is 2, the
|
|
622 character set thus described is 94x94 or 96x96.
|
|
623 'final Final byte of ISO 2022 escape sequence. Must be
|
|
624 supplied. Each combination of (DIMENSION, CHARS) defines a
|
|
625 separate namespace for final bytes. Note that ISO
|
|
626 2022 restricts the final byte to the range
|
|
627 0x30 - 0x7E if dimension == 1, and 0x30 - 0x5F if
|
|
628 dimension == 2. Note also that final bytes in the range
|
|
629 0x30 - 0x3F are reserved for user-defined (not official)
|
|
630 character sets.
|
|
631 'graphic 0 (use left half of font on output) or 1 (use right half
|
|
632 of font on output). Defaults to 0. For example, for
|
|
633 a font whose registry is ISO8859-1, the left half
|
|
634 (octets 0x20 - 0x7F) is the `ascii' character set, while
|
|
635 the right half (octets 0xA0 - 0xFF) is the `latin-1'
|
|
636 character set. With 'graphic set to 0, the octets
|
|
637 will have their high bit cleared; with it set to 1,
|
|
638 the octets will have their high bit set.
|
|
639 'direction 'l2r (left-to-right) or 'r2l (right-to-left).
|
|
640 Defaults to 'l2r.
|
|
641 'ccl-program A compiled CCL program used to convert a character in
|
|
642 this charset into an index into the font. This is in
|
|
643 addition to the 'graphic property. The CCL program
|
|
644 is passed the octets of the character, with the high
|
|
645 bit cleared and set depending upon whether the value
|
|
646 of the 'graphic property is 0 or 1.
|
|
647 */
|
|
648 (name, doc_string, props))
|
|
649 {
|
|
650 int lb, dimension = 1, chars = 94, graphic = 0, final = 0, columns = -1;
|
|
651 int direction = CHARSET_LEFT_TO_RIGHT;
|
|
652 int type;
|
|
653 Lisp_Object registry = Qnil;
|
|
654 Lisp_Object charset;
|
|
655 Lisp_Object rest, keyword, value;
|
|
656 Lisp_Object ccl_program = Qnil;
|
|
657
|
|
658 CHECK_SYMBOL (name);
|
|
659 if (!NILP (doc_string))
|
|
660 CHECK_STRING (doc_string);
|
|
661
|
|
662 charset = Ffind_charset (name);
|
|
663 if (!NILP (charset))
|
|
664 signal_simple_error ("Cannot redefine existing charset", name);
|
|
665
|
|
666 EXTERNAL_PROPERTY_LIST_LOOP (rest, keyword, value, props)
|
|
667 {
|
|
668 if (EQ (keyword, Qdimension))
|
|
669 {
|
|
670 CHECK_INT (value);
|
|
671 dimension = XINT (value);
|
|
672 if (dimension < 1 || dimension > 2)
|
|
673 signal_simple_error ("Invalid value for 'dimension", value);
|
|
674 }
|
|
675
|
|
676 else if (EQ (keyword, Qchars))
|
|
677 {
|
|
678 CHECK_INT (value);
|
|
679 chars = XINT (value);
|
|
680 if (chars != 94 && chars != 96)
|
|
681 signal_simple_error ("Invalid value for 'chars", value);
|
|
682 }
|
|
683
|
|
684 else if (EQ (keyword, Qcolumns))
|
|
685 {
|
|
686 CHECK_INT (value);
|
|
687 columns = XINT (value);
|
|
688 if (columns != 1 && columns != 2)
|
|
689 signal_simple_error ("Invalid value for 'columns", value);
|
|
690 }
|
|
691
|
|
692 else if (EQ (keyword, Qgraphic))
|
|
693 {
|
|
694 CHECK_INT (value);
|
|
695 graphic = XINT (value);
|
|
696 if (graphic < 0 || graphic > 1)
|
|
697 signal_simple_error ("Invalid value for 'graphic", value);
|
|
698 }
|
|
699
|
|
700 else if (EQ (keyword, Qregistry))
|
|
701 {
|
|
702 CHECK_STRING (value);
|
|
703 registry = value;
|
|
704 }
|
|
705
|
|
706 else if (EQ (keyword, Qdirection))
|
|
707 {
|
|
708 if (EQ (value, Ql2r))
|
|
709 direction = CHARSET_LEFT_TO_RIGHT;
|
|
710 else if (EQ (value, Qr2l))
|
|
711 direction = CHARSET_RIGHT_TO_LEFT;
|
|
712 else
|
|
713 signal_simple_error ("Invalid value for 'direction", value);
|
|
714 }
|
|
715
|
|
716 else if (EQ (keyword, Qfinal))
|
|
717 {
|
|
718 CHECK_CHAR_COERCE_INT (value);
|
|
719 final = XCHAR (value);
|
|
720 if (final < '0' || final > '~')
|
|
721 signal_simple_error ("Invalid value for 'final", value);
|
|
722 }
|
|
723
|
|
724 else if (EQ (keyword, Qccl_program))
|
|
725 {
|
|
726 CHECK_VECTOR (value);
|
|
727 ccl_program = value;
|
|
728 }
|
|
729
|
|
730 else
|
|
731 signal_simple_error ("Unrecognized property", keyword);
|
|
732 }
|
|
733
|
|
734 if (!final)
|
|
735 error ("'final must be specified");
|
|
736 if (dimension == 2 && final > 0x5F)
|
|
737 signal_simple_error
|
|
738 ("Final must be in the range 0x30 - 0x5F for dimension == 2",
|
|
739 make_char (final));
|
|
740
|
|
741 if (dimension == 1)
|
|
742 type = (chars == 94) ? CHARSET_TYPE_94 : CHARSET_TYPE_96;
|
|
743 else
|
|
744 type = (chars == 94) ? CHARSET_TYPE_94X94 : CHARSET_TYPE_96X96;
|
|
745
|
|
746 if (!NILP (CHARSET_BY_ATTRIBUTES (type, final, CHARSET_LEFT_TO_RIGHT)) ||
|
|
747 !NILP (CHARSET_BY_ATTRIBUTES (type, final, CHARSET_RIGHT_TO_LEFT)))
|
|
748 error
|
|
749 ("Character set already defined for this DIMENSION/CHARS/FINAL combo");
|
|
750
|
|
751 lb = get_unallocated_leading_byte (dimension);
|
|
752
|
|
753 if (NILP (doc_string))
|
|
754 doc_string = build_string ("");
|
|
755
|
|
756 if (NILP (registry))
|
|
757 registry = build_string ("");
|
|
758
|
|
759 if (columns == -1)
|
|
760 columns = dimension;
|
213
|
761 charset = make_charset (-1, name, lb, dimension + 2, type, columns, graphic,
|
70
|
762 final, direction, doc_string, registry);
|
|
763 if (!NILP (ccl_program))
|
|
764 XCHARSET_CCL_PROGRAM (charset) = ccl_program;
|
|
765 return charset;
|
|
766 }
|
|
767
|
|
768 DEFUN ("make-reverse-direction-charset",
|
|
769 Fmake_reverse_direction_charset, 2, 2, 0, /*
|
|
770 Make a charset equivalent to CHARSET but which goes in the opposite direction.
|
|
771 NEW-NAME is the name of the new charset. Return the new charset.
|
|
772 */
|
|
773 (charset, new_name))
|
|
774 {
|
|
775 Lisp_Object new_charset = Qnil;
|
|
776 int lb, dimension, columns, graphic, final;
|
|
777 int direction, type;
|
|
778 Lisp_Object registry, doc_string;
|
|
779 struct Lisp_Charset *cs;
|
|
780
|
|
781 charset = Fget_charset (charset);
|
|
782 if (!NILP (XCHARSET_REVERSE_DIRECTION_CHARSET (charset)))
|
|
783 signal_simple_error ("Charset already has reverse-direction charset",
|
|
784 charset);
|
|
785
|
|
786 CHECK_SYMBOL (new_name);
|
|
787 if (!NILP (Ffind_charset (new_name)))
|
|
788 signal_simple_error ("Cannot redefine existing charset", new_name);
|
|
789
|
|
790 cs = XCHARSET (charset);
|
183
|
791
|
70
|
792 type = CHARSET_TYPE (cs);
|
|
793 columns = CHARSET_COLUMNS (cs);
|
|
794 dimension = CHARSET_DIMENSION (cs);
|
|
795 lb = get_unallocated_leading_byte (dimension);
|
|
796
|
|
797 graphic = CHARSET_GRAPHIC (cs);
|
|
798 final = CHARSET_FINAL (cs);
|
|
799 direction = CHARSET_RIGHT_TO_LEFT;
|
|
800 if (CHARSET_DIRECTION (cs) == CHARSET_RIGHT_TO_LEFT)
|
|
801 direction = CHARSET_LEFT_TO_RIGHT;
|
|
802 doc_string = CHARSET_DOC_STRING (cs);
|
|
803 registry = CHARSET_REGISTRY (cs);
|
|
804
|
213
|
805 new_charset = make_charset (-1, new_name, lb, dimension + 2, type, columns,
|
70
|
806 graphic, final, direction, doc_string, registry);
|
|
807
|
|
808 CHARSET_REVERSE_DIRECTION_CHARSET (cs) = new_charset;
|
|
809 XCHARSET_REVERSE_DIRECTION_CHARSET (new_charset) = charset;
|
|
810
|
|
811 return new_charset;
|
|
812 }
|
|
813
|
|
814 /* #### The defsubr for this is commented out at the moment but no
|
|
815 reason why is given. */
|
|
816 #if 0
|
|
817 DEFUN ("charset-reverse-direction-charset",
|
|
818 Fcharset_reverse_direction_charset, 1, 1, 0, /*
|
|
819 Return the reverse-direction charset parallel to CHARSET, if any.
|
|
820 This is the charset with the same properties (in particular, the same
|
|
821 dimension, number of characters per dimension, and final byte) as
|
|
822 CHARSET but whose characters are displayed in the opposite direction.
|
|
823 */
|
|
824 (charset))
|
|
825 {
|
|
826 charset = Fget_charset (charset);
|
|
827 return XCHARSET_REVERSE_DIRECTION_CHARSET (charset);
|
|
828 }
|
|
829 #endif
|
|
830
|
|
831 DEFUN ("charset-from-attributes", Fcharset_from_attributes, 3, 4, 0, /*
|
|
832 Return a charset with the given DIMENSION, CHARS, FINAL, and DIRECTION.
|
|
833 If DIRECTION is omitted, both directions will be checked (left-to-right
|
|
834 will be returned if character sets exist for both directions).
|
|
835 */
|
|
836 (dimension, chars, final, direction))
|
|
837 {
|
|
838 int dm, ch, fi, di = -1;
|
|
839 int type;
|
|
840 Lisp_Object obj = Qnil;
|
|
841
|
|
842 CHECK_INT (dimension);
|
|
843 dm = XINT (dimension);
|
|
844 if (dm < 1 || dm > 2)
|
|
845 signal_simple_error ("Invalid value for DIMENSION", dimension);
|
|
846
|
|
847 CHECK_INT (chars);
|
|
848 ch = XINT (chars);
|
|
849 if (ch != 94 && ch != 96)
|
|
850 signal_simple_error ("Invalid value for CHARS", chars);
|
|
851
|
|
852 CHECK_CHAR_COERCE_INT (final);
|
|
853 fi = XCHAR (final);
|
|
854 if (fi < '0' || fi > '~')
|
|
855 signal_simple_error ("Invalid value for FINAL", final);
|
|
856
|
|
857 if (EQ (direction, Ql2r))
|
|
858 di = CHARSET_LEFT_TO_RIGHT;
|
|
859 else if (EQ (direction, Qr2l))
|
|
860 di = CHARSET_RIGHT_TO_LEFT;
|
|
861 else if (!NILP (direction))
|
|
862 signal_simple_error ("Invalid value for DIRECTION", direction);
|
|
863
|
|
864 if (dm == 2 && fi > 0x5F)
|
|
865 signal_simple_error
|
|
866 ("Final must be in the range 0x30 - 0x5F for dimension == 2", final);
|
|
867
|
|
868 if (dm == 1)
|
|
869 type = (ch == 94) ? CHARSET_TYPE_94 : CHARSET_TYPE_96;
|
|
870 else
|
|
871 type = (ch == 94) ? CHARSET_TYPE_94X94 : CHARSET_TYPE_96X96;
|
|
872
|
|
873 if (di == -1)
|
|
874 {
|
|
875 obj = CHARSET_BY_ATTRIBUTES (type, fi, CHARSET_LEFT_TO_RIGHT);
|
|
876 if (NILP (obj))
|
|
877 obj = CHARSET_BY_ATTRIBUTES (type, fi, CHARSET_RIGHT_TO_LEFT);
|
|
878 }
|
|
879 else
|
|
880 obj = CHARSET_BY_ATTRIBUTES (type, fi, di);
|
|
881
|
|
882 if (CHARSETP (obj))
|
|
883 return XCHARSET_NAME (obj);
|
|
884 return obj;
|
|
885 }
|
|
886
|
|
887 DEFUN ("charset-doc-string", Fcharset_doc_string, 1, 1, 0, /*
|
|
888 Return doc string of CHARSET.
|
|
889 */
|
|
890 (charset))
|
|
891 {
|
|
892 return XCHARSET_DOC_STRING (Fget_charset (charset));
|
|
893 }
|
|
894
|
|
895 DEFUN ("charset-dimension", Fcharset_dimension, 1, 1, 0, /*
|
|
896 Return dimension of CHARSET.
|
|
897 */
|
|
898 (charset))
|
|
899 {
|
|
900 return make_int (XCHARSET_DIMENSION (Fget_charset (charset)));
|
|
901 }
|
|
902
|
|
903 DEFUN ("charset-property", Fcharset_property, 2, 2, 0, /*
|
|
904 Return property PROP of CHARSET.
|
|
905 Recognized properties are those listed in `make-charset', as well as
|
|
906 'name and 'doc-string.
|
|
907 */
|
|
908 (charset, prop))
|
|
909 {
|
|
910 struct Lisp_Charset *cs;
|
|
911
|
|
912 charset = Fget_charset (charset);
|
|
913 cs = XCHARSET (charset);
|
|
914
|
|
915 CHECK_SYMBOL (prop);
|
|
916 if (EQ (prop, Qname)) return CHARSET_NAME (cs);
|
|
917 if (EQ (prop, Qdoc_string)) return CHARSET_DOC_STRING (cs);
|
|
918 if (EQ (prop, Qdimension)) return make_int (CHARSET_DIMENSION (cs));
|
|
919 if (EQ (prop, Qcolumns)) return make_int (CHARSET_COLUMNS (cs));
|
|
920 if (EQ (prop, Qgraphic)) return make_int (CHARSET_GRAPHIC (cs));
|
|
921 if (EQ (prop, Qfinal)) return make_char (CHARSET_FINAL (cs));
|
|
922 if (EQ (prop, Qchars)) return make_int (CHARSET_CHARS (cs));
|
|
923 if (EQ (prop, Qregistry)) return CHARSET_REGISTRY (cs);
|
|
924 if (EQ (prop, Qccl_program)) return CHARSET_CCL_PROGRAM (cs);
|
|
925 if (EQ (prop, Qdirection))
|
272
|
926 return CHARSET_DIRECTION (cs) == CHARSET_LEFT_TO_RIGHT ? Ql2r : Qr2l;
|
70
|
927 if (EQ (prop, Qreverse_direction_charset))
|
|
928 {
|
|
929 Lisp_Object obj = CHARSET_REVERSE_DIRECTION_CHARSET (cs);
|
|
930 if (NILP (obj))
|
|
931 return Qnil;
|
|
932 else
|
|
933 return XCHARSET_NAME (obj);
|
|
934 }
|
|
935 signal_simple_error ("Unrecognized charset property name", prop);
|
|
936 return Qnil; /* not reached */
|
|
937 }
|
|
938
|
213
|
939 DEFUN ("charset-id", Fcharset_id, 1, 1, 0, /*
|
|
940 Return charset identification number of CHARSET.
|
|
941 */
|
|
942 (charset))
|
|
943 {
|
|
944 return make_int(XCHARSET_ID (Fget_charset (charset)));
|
|
945 }
|
|
946
|
70
|
947 /* #### We need to figure out which properties we really want to
|
|
948 allow to be set. */
|
|
949
|
|
950 DEFUN ("set-charset-ccl-program", Fset_charset_ccl_program, 2, 2, 0, /*
|
|
951 Set the 'ccl-program property of CHARSET to CCL-PROGRAM.
|
|
952 */
|
|
953 (charset, ccl_program))
|
|
954 {
|
|
955 charset = Fget_charset (charset);
|
|
956 CHECK_VECTOR (ccl_program);
|
|
957 XCHARSET_CCL_PROGRAM (charset) = ccl_program;
|
|
958 return Qnil;
|
|
959 }
|
|
960
|
|
961 static void
|
|
962 invalidate_charset_font_caches (Lisp_Object charset)
|
|
963 {
|
|
964 /* Invalidate font cache entries for charset on all devices. */
|
|
965 Lisp_Object devcons, concons, hashtab;
|
|
966 DEVICE_LOOP_NO_BREAK (devcons, concons)
|
|
967 {
|
|
968 struct device *d = XDEVICE (XCAR (devcons));
|
|
969 hashtab = Fgethash (charset, d->charset_font_cache, Qunbound);
|
|
970 if (!UNBOUNDP (hashtab))
|
|
971 Fclrhash (hashtab);
|
|
972 }
|
|
973 }
|
|
974
|
|
975 /* Japanese folks may want to (set-charset-registry 'ascii "jisx0201") */
|
|
976 DEFUN ("set-charset-registry", Fset_charset_registry, 2, 2, 0, /*
|
|
977 Set the 'registry property of CHARSET to REGISTRY.
|
|
978 */
|
|
979 (charset, registry))
|
|
980 {
|
|
981 charset = Fget_charset (charset);
|
|
982 CHECK_STRING (registry);
|
|
983 XCHARSET_REGISTRY (charset) = registry;
|
|
984 invalidate_charset_font_caches (charset);
|
|
985 face_property_was_changed (Vdefault_face, Qfont, Qglobal);
|
|
986 return Qnil;
|
|
987 }
|
183
|
988
|
70
|
989
|
|
990 /************************************************************************/
|
|
991 /* Lisp primitives for working with characters */
|
|
992 /************************************************************************/
|
|
993
|
|
994 DEFUN ("make-char", Fmake_char, 2, 3, 0, /*
|
|
995 Make a multi-byte character from CHARSET and octets ARG1 and ARG2.
|
|
996 */
|
|
997 (charset, arg1, arg2))
|
|
998 {
|
|
999 struct Lisp_Charset *cs;
|
|
1000 int a1, a2;
|
|
1001 int lowlim, highlim;
|
|
1002
|
|
1003 charset = Fget_charset (charset);
|
|
1004 cs = XCHARSET (charset);
|
|
1005
|
|
1006 if (EQ (charset, Vcharset_ascii)) lowlim = 0, highlim = 127;
|
|
1007 else if (EQ (charset, Vcharset_control_1)) lowlim = 0, highlim = 31;
|
|
1008 else if (CHARSET_CHARS (cs) == 94) lowlim = 33, highlim = 126;
|
|
1009 else /* CHARSET_CHARS (cs) == 96) */ lowlim = 32, highlim = 127;
|
|
1010
|
|
1011 CHECK_INT (arg1);
|
|
1012 a1 = XINT (arg1);
|
|
1013 if (a1 < lowlim || a1 > highlim)
|
|
1014 args_out_of_range_3 (arg1, make_int (lowlim), make_int (highlim));
|
|
1015
|
|
1016 if (CHARSET_DIMENSION (cs) == 1)
|
|
1017 {
|
|
1018 if (!NILP (arg2))
|
|
1019 signal_simple_error
|
|
1020 ("Charset is of dimension one; second octet must be nil", arg2);
|
|
1021 return make_char (MAKE_CHAR (charset, a1, 0));
|
|
1022 }
|
|
1023
|
|
1024 CHECK_INT (arg2);
|
|
1025 a2 = XINT (arg2);
|
|
1026 if (a2 < lowlim || a2 > highlim)
|
|
1027 args_out_of_range_3 (arg2, make_int (lowlim), make_int (highlim));
|
|
1028
|
|
1029 return make_char (MAKE_CHAR (charset, a1, a2));
|
|
1030 }
|
|
1031
|
|
1032 DEFUN ("char-charset", Fchar_charset, 1, 1, 0, /*
|
|
1033 Return the character set of char CH.
|
|
1034 */
|
|
1035 (ch))
|
|
1036 {
|
|
1037 CHECK_CHAR_COERCE_INT (ch);
|
|
1038
|
|
1039 return XCHARSET_NAME (CHARSET_BY_LEADING_BYTE
|
|
1040 (CHAR_LEADING_BYTE (XCHAR (ch))));
|
|
1041 }
|
|
1042
|
|
1043 DEFUN ("char-octet", Fchar_octet, 1, 2, 0, /*
|
|
1044 Return the octet numbered N (should be 0 or 1) of char CH.
|
|
1045 N defaults to 0 if omitted.
|
|
1046 */
|
|
1047 (ch, n))
|
|
1048 {
|
|
1049 Lisp_Object charset;
|
183
|
1050 int c1, c2, int_n;
|
70
|
1051
|
|
1052 CHECK_CHAR_COERCE_INT (ch);
|
|
1053 if (NILP (n))
|
183
|
1054 int_n = 0;
|
70
|
1055 else
|
|
1056 {
|
|
1057 CHECK_INT (n);
|
183
|
1058 int_n = XINT (n);
|
|
1059 if (int_n != 0 && int_n != 1)
|
70
|
1060 signal_simple_error ("Octet number must be 0 or 1", n);
|
|
1061 }
|
|
1062 BREAKUP_CHAR (XCHAR (ch), charset, c1, c2);
|
183
|
1063 return make_int (int_n == 0 ? c1 : c2);
|
70
|
1064 }
|
|
1065
|
|
1066
|
|
1067 /************************************************************************/
|
|
1068 /* composite character functions */
|
|
1069 /************************************************************************/
|
|
1070
|
|
1071 Emchar
|
|
1072 lookup_composite_char (Bufbyte *str, int len)
|
|
1073 {
|
|
1074 Lisp_Object lispstr = make_string (str, len);
|
|
1075 Lisp_Object ch = Fgethash (lispstr,
|
|
1076 Vcomposite_char_string2char_hashtable,
|
|
1077 Qunbound);
|
|
1078 Emchar emch;
|
|
1079
|
|
1080 if (UNBOUNDP (ch))
|
|
1081 {
|
|
1082 if (composite_char_row_next >= 128)
|
|
1083 signal_simple_error ("No more composite chars available", lispstr);
|
|
1084 emch = MAKE_CHAR (Vcharset_composite, composite_char_row_next,
|
|
1085 composite_char_col_next);
|
|
1086 Fputhash (make_char (emch), lispstr,
|
|
1087 Vcomposite_char_char2string_hashtable);
|
|
1088 Fputhash (lispstr, make_char (emch),
|
|
1089 Vcomposite_char_string2char_hashtable);
|
|
1090 composite_char_col_next++;
|
|
1091 if (composite_char_col_next >= 128)
|
|
1092 {
|
|
1093 composite_char_col_next = 32;
|
|
1094 composite_char_row_next++;
|
|
1095 }
|
|
1096 }
|
|
1097 else
|
|
1098 emch = XCHAR (ch);
|
|
1099 return emch;
|
|
1100 }
|
|
1101
|
|
1102 Lisp_Object
|
|
1103 composite_char_string (Emchar ch)
|
|
1104 {
|
|
1105 Lisp_Object str = Fgethash (make_char (ch),
|
|
1106 Vcomposite_char_char2string_hashtable,
|
|
1107 Qunbound);
|
|
1108 assert (!UNBOUNDP (str));
|
|
1109 return str;
|
|
1110 }
|
|
1111
|
|
1112 DEFUN ("make-composite-char", Fmake_composite_char, 1, 1, 0, /*
|
|
1113 Convert a string into a single composite character.
|
|
1114 The character is the result of overstriking all the characters in
|
|
1115 the string.
|
|
1116 */
|
|
1117 (string))
|
|
1118 {
|
|
1119 CHECK_STRING (string);
|
|
1120 return make_char (lookup_composite_char (XSTRING_DATA (string),
|
|
1121 XSTRING_LENGTH (string)));
|
|
1122 }
|
|
1123
|
|
1124 DEFUN ("composite-char-string", Fcomposite_char_string, 1, 1, 0, /*
|
|
1125 Return a string of the characters comprising a composite character.
|
|
1126 */
|
|
1127 (ch))
|
|
1128 {
|
|
1129 Emchar emch;
|
|
1130
|
|
1131 CHECK_CHAR (ch);
|
|
1132 emch = XCHAR (ch);
|
|
1133 if (CHAR_LEADING_BYTE (emch) != LEADING_BYTE_COMPOSITE)
|
|
1134 signal_simple_error ("Must be composite char", ch);
|
|
1135 return composite_char_string (emch);
|
|
1136 }
|
|
1137
|
|
1138
|
|
1139 /************************************************************************/
|
|
1140 /* initialization */
|
|
1141 /************************************************************************/
|
|
1142
|
|
1143 void
|
|
1144 syms_of_mule_charset (void)
|
|
1145 {
|
|
1146 DEFSUBR (Fcharsetp);
|
|
1147 DEFSUBR (Ffind_charset);
|
|
1148 DEFSUBR (Fget_charset);
|
|
1149 DEFSUBR (Fcharset_list);
|
|
1150 DEFSUBR (Fcharset_name);
|
|
1151 DEFSUBR (Fmake_charset);
|
|
1152 DEFSUBR (Fmake_reverse_direction_charset);
|
|
1153 /* DEFSUBR (Freverse_direction_charset); */
|
|
1154 DEFSUBR (Fcharset_from_attributes);
|
|
1155 DEFSUBR (Fcharset_doc_string);
|
|
1156 DEFSUBR (Fcharset_dimension);
|
|
1157 DEFSUBR (Fcharset_property);
|
213
|
1158 DEFSUBR (Fcharset_id);
|
70
|
1159 DEFSUBR (Fset_charset_ccl_program);
|
|
1160 DEFSUBR (Fset_charset_registry);
|
|
1161
|
|
1162 DEFSUBR (Fmake_char);
|
|
1163 DEFSUBR (Fchar_charset);
|
|
1164 DEFSUBR (Fchar_octet);
|
|
1165
|
|
1166 DEFSUBR (Fmake_composite_char);
|
|
1167 DEFSUBR (Fcomposite_char_string);
|
|
1168
|
|
1169 defsymbol (&Qcharsetp, "charsetp");
|
|
1170 defsymbol (&Qregistry, "registry");
|
|
1171 defsymbol (&Qfinal, "final");
|
|
1172 defsymbol (&Qgraphic, "graphic");
|
|
1173 defsymbol (&Qdirection, "direction");
|
|
1174 defsymbol (&Qreverse_direction_charset, "reverse-direction-charset");
|
|
1175 defsymbol (&Qccl_program, "ccl-program");
|
|
1176
|
|
1177 defsymbol (&Ql2r, "l2r");
|
|
1178 defsymbol (&Qr2l, "r2l");
|
|
1179
|
74
|
1180 /* Charsets, compatible with Emacs/Mule 19.33-delta
|
|
1181 Naming convention is Script-Charset[-Edition] */
|
|
1182 defsymbol (&Qascii, "ascii");
|
|
1183 defsymbol (&Qcontrol_1, "control-1");
|
|
1184 defsymbol (&Qlatin_iso8859_1, "latin-iso8859-1");
|
|
1185 defsymbol (&Qlatin_iso8859_2, "latin-iso8859-2");
|
|
1186 defsymbol (&Qlatin_iso8859_3, "latin-iso8859-3");
|
|
1187 defsymbol (&Qlatin_iso8859_4, "latin-iso8859-4");
|
|
1188 defsymbol (&Qcyrillic_iso8859_5, "cyrillic-iso8859-5");
|
|
1189 defsymbol (&Qarabic_iso8859_6, "arabic-iso8859-6");
|
|
1190 defsymbol (&Qgreek_iso8859_7, "greek-iso8859-7");
|
|
1191 defsymbol (&Qhebrew_iso8859_8, "hebrew-iso8859-8");
|
|
1192 defsymbol (&Qlatin_iso8859_9, "latin-iso8859-9");
|
|
1193 defsymbol (&Qthai_tis620, "thai-tis620");
|
183
|
1194
|
74
|
1195 defsymbol (&Qkatakana_jisx0201, "katakana-jisx0201");
|
|
1196 defsymbol (&Qlatin_jisx0201, "latin-jisx0201");
|
70
|
1197 defsymbol (&Qjapanese_jisx0208_1978, "japanese-jisx0208-1978");
|
|
1198 defsymbol (&Qjapanese_jisx0208, "japanese-jisx0208");
|
|
1199 defsymbol (&Qjapanese_jisx0212, "japanese-jisx0212");
|
183
|
1200
|
74
|
1201 defsymbol (&Qchinese_gb2312, "chinese-gb2312");
|
|
1202 defsymbol (&Qchinese_big5_1, "chinese-big5-1");
|
|
1203 defsymbol (&Qchinese_big5_2, "chinese-big5-2");
|
|
1204 defsymbol (&Qchinese_cns11643_1, "chinese-cns11643-1");
|
|
1205 defsymbol (&Qchinese_cns11643_2, "chinese-cns11643-2");
|
183
|
1206
|
74
|
1207 defsymbol (&Qkorean_ksc5601, "korean-ksc5601");
|
|
1208 defsymbol (&Qcomposite, "composite");
|
70
|
1209 }
|
|
1210
|
|
1211 void
|
|
1212 vars_of_mule_charset (void)
|
|
1213 {
|
|
1214 int i, j, k;
|
|
1215
|
183
|
1216 /* Table of charsets indexed by leading byte. */
|
|
1217 for (i = 0; i < countof (charset_by_leading_byte); i++)
|
70
|
1218 charset_by_leading_byte[i] = Qnil;
|
183
|
1219
|
|
1220 /* Table of charsets indexed by type/final-byte/direction. */
|
|
1221 for (i = 0; i < countof (charset_by_attributes); i++)
|
|
1222 for (j = 0; j < countof (charset_by_attributes[0]); j++)
|
|
1223 for (k = 0; k < countof (charset_by_attributes[0][0]); k++)
|
70
|
1224 charset_by_attributes[i][j][k] = Qnil;
|
|
1225
|
|
1226 next_allocated_1_byte_leading_byte = MIN_LEADING_BYTE_PRIVATE_1;
|
|
1227 next_allocated_2_byte_leading_byte = MIN_LEADING_BYTE_PRIVATE_2;
|
|
1228 }
|
|
1229
|
|
1230 void
|
|
1231 complex_vars_of_mule_charset (void)
|
|
1232 {
|
|
1233 staticpro (&Vcharset_hashtable);
|
|
1234 Vcharset_hashtable = make_lisp_hashtable (50, HASHTABLE_NONWEAK,
|
|
1235 HASHTABLE_EQ);
|
183
|
1236
|
70
|
1237 /* Predefined character sets. We store them into variables for
|
|
1238 ease of access. */
|
|
1239
|
|
1240 Vcharset_ascii =
|
213
|
1241 make_charset (0, Qascii, LEADING_BYTE_ASCII, 1,
|
70
|
1242 CHARSET_TYPE_94, 1, 0, 'B',
|
|
1243 CHARSET_LEFT_TO_RIGHT,
|
167
|
1244 build_string ("ASCII (ISO 646 IRV)"),
|
78
|
1245 build_string ("iso8859-1"));
|
70
|
1246 Vcharset_control_1 =
|
213
|
1247 make_charset (-1, Qcontrol_1, LEADING_BYTE_CONTROL_1, 2,
|
70
|
1248 CHARSET_TYPE_94, 1, 0, 0,
|
|
1249 CHARSET_LEFT_TO_RIGHT,
|
|
1250 build_string ("Control characters"),
|
|
1251 build_string (""));
|
74
|
1252 Vcharset_latin_iso8859_1 =
|
213
|
1253 make_charset (129, Qlatin_iso8859_1, LEADING_BYTE_LATIN_ISO8859_1, 2,
|
70
|
1254 CHARSET_TYPE_96, 1, 1, 'A',
|
|
1255 CHARSET_LEFT_TO_RIGHT,
|
167
|
1256 build_string ("ISO 8859-1 (Latin-1)"),
|
78
|
1257 build_string ("iso8859-1"));
|
74
|
1258 Vcharset_latin_iso8859_2 =
|
213
|
1259 make_charset (130, Qlatin_iso8859_2, LEADING_BYTE_LATIN_ISO8859_2, 2,
|
70
|
1260 CHARSET_TYPE_96, 1, 1, 'B',
|
|
1261 CHARSET_LEFT_TO_RIGHT,
|
167
|
1262 build_string ("ISO 8859-2 (Latin-2)"),
|
78
|
1263 build_string ("iso8859-2"));
|
74
|
1264 Vcharset_latin_iso8859_3 =
|
213
|
1265 make_charset (131, Qlatin_iso8859_3, LEADING_BYTE_LATIN_ISO8859_3, 2,
|
70
|
1266 CHARSET_TYPE_96, 1, 1, 'C',
|
|
1267 CHARSET_LEFT_TO_RIGHT,
|
167
|
1268 build_string ("ISO 8859-3 (Latin-3)"),
|
78
|
1269 build_string ("iso8859-3"));
|
74
|
1270 Vcharset_latin_iso8859_4 =
|
213
|
1271 make_charset (132, Qlatin_iso8859_4, LEADING_BYTE_LATIN_ISO8859_4, 2,
|
70
|
1272 CHARSET_TYPE_96, 1, 1, 'D',
|
|
1273 CHARSET_LEFT_TO_RIGHT,
|
167
|
1274 build_string ("ISO 8859-4 (Latin-4)"),
|
78
|
1275 build_string ("iso8859-4"));
|
74
|
1276 Vcharset_cyrillic_iso8859_5 =
|
213
|
1277 make_charset (140, Qcyrillic_iso8859_5, LEADING_BYTE_CYRILLIC_ISO8859_5, 2,
|
70
|
1278 CHARSET_TYPE_96, 1, 1, 'L',
|
|
1279 CHARSET_LEFT_TO_RIGHT,
|
167
|
1280 build_string ("ISO 8859-5 (Cyrillic)"),
|
78
|
1281 build_string ("iso8859-5"));
|
74
|
1282 Vcharset_arabic_iso8859_6 =
|
213
|
1283 make_charset (135, Qarabic_iso8859_6, LEADING_BYTE_ARABIC_ISO8859_6, 2,
|
70
|
1284 CHARSET_TYPE_96, 1, 1, 'G',
|
|
1285 CHARSET_RIGHT_TO_LEFT,
|
167
|
1286 build_string ("ISO 8859-6 (Arabic)"),
|
78
|
1287 build_string ("iso8859-6"));
|
74
|
1288 Vcharset_greek_iso8859_7 =
|
213
|
1289 make_charset (134, Qgreek_iso8859_7, LEADING_BYTE_GREEK_ISO8859_7, 2,
|
70
|
1290 CHARSET_TYPE_96, 1, 1, 'F',
|
|
1291 CHARSET_LEFT_TO_RIGHT,
|
167
|
1292 build_string ("ISO 8859-7 (Greek)"),
|
78
|
1293 build_string ("iso8859-7"));
|
74
|
1294 Vcharset_hebrew_iso8859_8 =
|
213
|
1295 make_charset (136, Qhebrew_iso8859_8, LEADING_BYTE_HEBREW_ISO8859_8, 2,
|
70
|
1296 CHARSET_TYPE_96, 1, 1, 'H',
|
|
1297 CHARSET_RIGHT_TO_LEFT,
|
167
|
1298 build_string ("ISO 8859-8 (Hebrew)"),
|
78
|
1299 build_string ("iso8859-8"));
|
74
|
1300 Vcharset_latin_iso8859_9 =
|
213
|
1301 make_charset (141, Qlatin_iso8859_9, LEADING_BYTE_LATIN_ISO8859_9, 2,
|
70
|
1302 CHARSET_TYPE_96, 1, 1, 'M',
|
|
1303 CHARSET_LEFT_TO_RIGHT,
|
167
|
1304 build_string ("ISO 8859-9 (Latin-5)"),
|
78
|
1305 build_string ("iso8859-9"));
|
74
|
1306 Vcharset_thai_tis620 =
|
213
|
1307 make_charset (133, Qthai_tis620, LEADING_BYTE_THAI_TIS620, 2,
|
70
|
1308 CHARSET_TYPE_96, 1, 1, 'T',
|
|
1309 CHARSET_LEFT_TO_RIGHT,
|
167
|
1310 build_string ("TIS 620.2529 (Thai)"),
|
78
|
1311 build_string ("tis620"));
|
70
|
1312
|
|
1313 /* Japanese */
|
74
|
1314 Vcharset_katakana_jisx0201 =
|
213
|
1315 make_charset (137, Qkatakana_jisx0201,
|
74
|
1316 LEADING_BYTE_KATAKANA_JISX0201, 2,
|
70
|
1317 CHARSET_TYPE_94, 1, 1, 'I',
|
|
1318 CHARSET_LEFT_TO_RIGHT,
|
167
|
1319 build_string ("JIS X0201-Katakana"),
|
78
|
1320 build_string ("jisx0201.1976"));
|
74
|
1321 Vcharset_latin_jisx0201 =
|
213
|
1322 make_charset (138, Qlatin_jisx0201,
|
74
|
1323 LEADING_BYTE_LATIN_JISX0201, 2,
|
70
|
1324 CHARSET_TYPE_94, 1, 0, 'J',
|
|
1325 CHARSET_LEFT_TO_RIGHT,
|
167
|
1326 build_string ("JIS X0201-Latin"),
|
78
|
1327 build_string ("jisx0201.1976"));
|
70
|
1328 Vcharset_japanese_jisx0208_1978 =
|
213
|
1329 make_charset (144, Qjapanese_jisx0208_1978,
|
70
|
1330 LEADING_BYTE_JAPANESE_JISX0208_1978, 3,
|
|
1331 CHARSET_TYPE_94X94, 2, 0, '@',
|
|
1332 CHARSET_LEFT_TO_RIGHT,
|
167
|
1333 build_string
|
|
1334 ("JIS X0208-1978 (Japanese Kanji; Old Version)"),
|
78
|
1335 build_string ("\\(jisx0208\\|jisc6226\\).19"));
|
70
|
1336 Vcharset_japanese_jisx0208 =
|
213
|
1337 make_charset (146, Qjapanese_jisx0208,
|
70
|
1338 LEADING_BYTE_JAPANESE_JISX0208, 3,
|
|
1339 CHARSET_TYPE_94X94, 2, 0, 'B',
|
|
1340 CHARSET_LEFT_TO_RIGHT,
|
167
|
1341 build_string ("JIS X0208-1983 (Japanese Kanji)"),
|
78
|
1342 build_string ("jisx0208.19\\(83\\|90\\)"));
|
70
|
1343 Vcharset_japanese_jisx0212 =
|
213
|
1344 make_charset (148, Qjapanese_jisx0212,
|
70
|
1345 LEADING_BYTE_JAPANESE_JISX0212, 3,
|
|
1346 CHARSET_TYPE_94X94, 2, 0, 'D',
|
|
1347 CHARSET_LEFT_TO_RIGHT,
|
167
|
1348 build_string ("JIS X0212 (Japanese Supplement)"),
|
78
|
1349 build_string ("jisx0212"));
|
70
|
1350
|
|
1351 /* Chinese */
|
74
|
1352 Vcharset_chinese_gb2312 =
|
213
|
1353 make_charset (145, Qchinese_gb2312, LEADING_BYTE_CHINESE_GB2312, 3,
|
70
|
1354 CHARSET_TYPE_94X94, 2, 0, 'A',
|
|
1355 CHARSET_LEFT_TO_RIGHT,
|
167
|
1356 build_string ("GB 2312 (Simplified Chinese)"),
|
78
|
1357 build_string ("gb2312"));
|
|
1358 #define CHINESE_CNS_PLANE_RE(n) "cns11643[.-]\\(.*[.-]\\)?" n "$"
|
70
|
1359 Vcharset_chinese_cns11643_1 =
|
213
|
1360 make_charset (149, Qchinese_cns11643_1,
|
70
|
1361 LEADING_BYTE_CHINESE_CNS11643_1, 3,
|
|
1362 CHARSET_TYPE_94X94, 2, 0, 'G',
|
|
1363 CHARSET_LEFT_TO_RIGHT,
|
167
|
1364 build_string
|
|
1365 ("CNS 11643 Plane 1 (Traditional Chinese for daily use)"),
|
70
|
1366 build_string (CHINESE_CNS_PLANE_RE("1")));
|
|
1367 Vcharset_chinese_cns11643_2 =
|
213
|
1368 make_charset (150, Qchinese_cns11643_2,
|
70
|
1369 LEADING_BYTE_CHINESE_CNS11643_2, 3,
|
|
1370 CHARSET_TYPE_94X94, 2, 0, 'H',
|
|
1371 CHARSET_LEFT_TO_RIGHT,
|
167
|
1372 build_string
|
|
1373 ("CNS 11643 Plane 2 (Traditional Chinese for daily use)"),
|
70
|
1374 build_string (CHINESE_CNS_PLANE_RE("2")));
|
|
1375 Vcharset_chinese_big5_1 =
|
213
|
1376 make_charset (152, Qchinese_big5_1, LEADING_BYTE_CHINESE_BIG5_1, 3,
|
70
|
1377 CHARSET_TYPE_94X94, 2, 0, '0',
|
|
1378 CHARSET_LEFT_TO_RIGHT,
|
167
|
1379 build_string
|
|
1380 ("Big5 Level 1 (Traditional Chinese for daily use)"),
|
78
|
1381 build_string ("big5"));
|
70
|
1382 Vcharset_chinese_big5_2 =
|
213
|
1383 make_charset (153, Qchinese_big5_2, LEADING_BYTE_CHINESE_BIG5_2, 3,
|
70
|
1384 CHARSET_TYPE_94X94, 2, 0, '1',
|
|
1385 CHARSET_LEFT_TO_RIGHT,
|
167
|
1386 build_string
|
|
1387 ("Big5 Level 2 (Traditional Chinese for daily use)"),
|
78
|
1388 build_string ("big5"));
|
70
|
1389
|
|
1390 Vcharset_korean_ksc5601 =
|
213
|
1391 make_charset (147, Qkorean_ksc5601, LEADING_BYTE_KOREAN_KSC5601, 3,
|
70
|
1392 CHARSET_TYPE_94X94, 2, 0, 'C',
|
|
1393 CHARSET_LEFT_TO_RIGHT,
|
167
|
1394 build_string ("KS C5601 (Hangul and Korean Hanja)"),
|
78
|
1395 build_string ("ksc5601"));
|
70
|
1396 /* #### For simplicity, we put composite chars into a 96x96 charset.
|
|
1397 This is going to lead to problems because you can run out of
|
|
1398 room, esp. as we don't yet recycle numbers. */
|
|
1399 Vcharset_composite =
|
213
|
1400 make_charset (-1, Qcomposite, LEADING_BYTE_COMPOSITE, 3,
|
70
|
1401 CHARSET_TYPE_96X96, 2, 0, 0,
|
|
1402 CHARSET_LEFT_TO_RIGHT,
|
|
1403 build_string ("Composite characters"),
|
|
1404 build_string (""));
|
|
1405
|
|
1406 composite_char_row_next = 32;
|
|
1407 composite_char_col_next = 32;
|
|
1408
|
|
1409 Vcomposite_char_string2char_hashtable =
|
183
|
1410 make_lisp_hashtable (500, HASHTABLE_NONWEAK, HASHTABLE_EQUAL);
|
70
|
1411 Vcomposite_char_char2string_hashtable =
|
183
|
1412 make_lisp_hashtable (500, HASHTABLE_NONWEAK, HASHTABLE_EQ);
|
70
|
1413 staticpro (&Vcomposite_char_string2char_hashtable);
|
|
1414 staticpro (&Vcomposite_char_char2string_hashtable);
|
|
1415
|
|
1416 }
|