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
|
298
|
24 /* Rewritten by Ben Wing <ben@xemacs.org>. */
|
70
|
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
|
280
|
460 CHARSET_DIMENSION (cs) = (CHARSET_TYPE (cs) == CHARSET_TYPE_94 ||
|
|
461 CHARSET_TYPE (cs) == CHARSET_TYPE_96) ? 1 : 2;
|
|
462 CHARSET_CHARS (cs) = (CHARSET_TYPE (cs) == CHARSET_TYPE_94 ||
|
|
463 CHARSET_TYPE (cs) == CHARSET_TYPE_94X94) ? 94 : 96;
|
|
464
|
70
|
465 if (final)
|
|
466 {
|
|
467 /* some charsets do not have final characters. This includes
|
|
468 ASCII, Control-1, Composite, and the two faux private
|
|
469 charsets. */
|
|
470 assert (NILP (charset_by_attributes[type][final][direction]));
|
|
471 charset_by_attributes[type][final][direction] = obj;
|
|
472 }
|
|
473
|
|
474 assert (NILP (charset_by_leading_byte[leading_byte - 128]));
|
|
475 charset_by_leading_byte[leading_byte - 128] = obj;
|
|
476 if (leading_byte < 0xA0)
|
|
477 /* official leading byte */
|
|
478 rep_bytes_by_first_byte[leading_byte] = rep_bytes;
|
183
|
479
|
70
|
480 /* Some charsets are "faux" and don't have names or really exist at
|
|
481 all except in the leading-byte table. */
|
|
482 if (!NILP (name))
|
|
483 Fputhash (name, obj, Vcharset_hashtable);
|
|
484 return obj;
|
|
485 }
|
|
486
|
|
487 static int
|
|
488 get_unallocated_leading_byte (int dimension)
|
|
489 {
|
|
490 int lb;
|
|
491
|
|
492 if (dimension == 1)
|
|
493 {
|
|
494 if (next_allocated_1_byte_leading_byte > MAX_LEADING_BYTE_PRIVATE_1)
|
|
495 lb = 0;
|
|
496 else
|
|
497 lb = next_allocated_1_byte_leading_byte++;
|
|
498 }
|
|
499 else
|
|
500 {
|
|
501 if (next_allocated_2_byte_leading_byte > MAX_LEADING_BYTE_PRIVATE_2)
|
|
502 lb = 0;
|
|
503 else
|
|
504 lb = next_allocated_2_byte_leading_byte++;
|
|
505 }
|
|
506
|
|
507 if (!lb)
|
|
508 signal_simple_error
|
|
509 ("No more character sets free for this dimension",
|
|
510 make_int (dimension));
|
|
511
|
|
512 return lb;
|
|
513 }
|
|
514
|
|
515
|
|
516 /************************************************************************/
|
|
517 /* Basic charset Lisp functions */
|
|
518 /************************************************************************/
|
|
519
|
|
520 DEFUN ("charsetp", Fcharsetp, 1, 1, 0, /*
|
|
521 Return non-nil if OBJECT is a charset.
|
|
522 */
|
|
523 (object))
|
|
524 {
|
272
|
525 return CHARSETP (object) ? Qt : Qnil;
|
70
|
526 }
|
|
527
|
|
528 DEFUN ("find-charset", Ffind_charset, 1, 1, 0, /*
|
|
529 Retrieve the charset of the given name.
|
|
530 If CHARSET-OR-NAME is a charset object, it is simply returned.
|
|
531 Otherwise, CHARSET-OR-NAME should be a symbol. If there is no such charset,
|
|
532 nil is returned. Otherwise the associated charset object is returned.
|
|
533 */
|
|
534 (charset_or_name))
|
|
535 {
|
|
536 if (CHARSETP (charset_or_name))
|
|
537 return charset_or_name;
|
272
|
538
|
70
|
539 CHECK_SYMBOL (charset_or_name);
|
|
540 return Fgethash (charset_or_name, Vcharset_hashtable, Qnil);
|
|
541 }
|
|
542
|
|
543 DEFUN ("get-charset", Fget_charset, 1, 1, 0, /*
|
|
544 Retrieve the charset of the given name.
|
|
545 Same as `find-charset' except an error is signalled if there is no such
|
|
546 charset instead of returning nil.
|
|
547 */
|
|
548 (name))
|
|
549 {
|
|
550 Lisp_Object charset = Ffind_charset (name);
|
|
551
|
|
552 if (NILP (charset))
|
|
553 signal_simple_error ("No such charset", name);
|
|
554 return charset;
|
|
555 }
|
|
556
|
|
557 /* We store the charsets in hash tables with the names as the key and the
|
|
558 actual charset object as the value. Occasionally we need to use them
|
|
559 in a list format. These routines provide us with that. */
|
|
560 struct charset_list_closure
|
|
561 {
|
|
562 Lisp_Object *charset_list;
|
|
563 };
|
|
564
|
241
|
565 static int
|
70
|
566 add_charset_to_list_mapper (CONST void *hash_key, void *hash_contents,
|
|
567 void *charset_list_closure)
|
|
568 {
|
|
569 /* This function can GC */
|
|
570 Lisp_Object key, contents;
|
|
571 Lisp_Object *charset_list;
|
185
|
572 struct charset_list_closure *chcl =
|
|
573 (struct charset_list_closure*) charset_list_closure;
|
70
|
574 CVOID_TO_LISP (key, hash_key);
|
|
575 VOID_TO_LISP (contents, hash_contents);
|
|
576 charset_list = chcl->charset_list;
|
|
577
|
|
578 *charset_list = Fcons (XCHARSET_NAME (contents), *charset_list);
|
241
|
579 return 0;
|
70
|
580 }
|
|
581
|
|
582 DEFUN ("charset-list", Fcharset_list, 0, 0, 0, /*
|
|
583 Return a list of the names of all defined charsets.
|
|
584 */
|
|
585 ())
|
|
586 {
|
|
587 Lisp_Object charset_list = Qnil;
|
|
588 struct gcpro gcpro1;
|
|
589 struct charset_list_closure charset_list_closure;
|
|
590
|
|
591 GCPRO1 (charset_list);
|
|
592 charset_list_closure.charset_list = &charset_list;
|
|
593 elisp_maphash (add_charset_to_list_mapper, Vcharset_hashtable,
|
|
594 &charset_list_closure);
|
|
595 UNGCPRO;
|
|
596
|
|
597 return charset_list;
|
|
598 }
|
|
599
|
|
600 DEFUN ("charset-name", Fcharset_name, 1, 1, 0, /*
|
|
601 Return the name of the given charset.
|
|
602 */
|
|
603 (charset))
|
|
604 {
|
272
|
605 return XCHARSET_NAME (Fget_charset (charset));
|
70
|
606 }
|
|
607
|
|
608 DEFUN ("make-charset", Fmake_charset, 3, 3, 0, /*
|
|
609 Define a new character set.
|
|
610 This function is for use with Mule support.
|
|
611 NAME is a symbol, the name by which the character set is normally referred.
|
|
612 DOC-STRING is a string describing the character set.
|
|
613 PROPS is a property list, describing the specific nature of the
|
|
614 character set. Recognized properties are:
|
|
615
|
|
616 'registry A regular expression matching the font registry field for
|
|
617 this character set.
|
|
618 'dimension Number of octets used to index a character in this charset.
|
|
619 Either 1 or 2. Defaults to 1.
|
|
620 'columns Number of columns used to display a character in this charset.
|
|
621 Only used in TTY mode. (Under X, the actual width of a
|
|
622 character can be derived from the font used to display the
|
|
623 characters.) If unspecified, defaults to the dimension
|
|
624 (this is almost always the correct value).
|
|
625 'chars Number of characters in each dimension (94 or 96).
|
|
626 Defaults to 94. Note that if the dimension is 2, the
|
|
627 character set thus described is 94x94 or 96x96.
|
|
628 'final Final byte of ISO 2022 escape sequence. Must be
|
|
629 supplied. Each combination of (DIMENSION, CHARS) defines a
|
|
630 separate namespace for final bytes. Note that ISO
|
|
631 2022 restricts the final byte to the range
|
|
632 0x30 - 0x7E if dimension == 1, and 0x30 - 0x5F if
|
|
633 dimension == 2. Note also that final bytes in the range
|
|
634 0x30 - 0x3F are reserved for user-defined (not official)
|
|
635 character sets.
|
|
636 'graphic 0 (use left half of font on output) or 1 (use right half
|
|
637 of font on output). Defaults to 0. For example, for
|
|
638 a font whose registry is ISO8859-1, the left half
|
|
639 (octets 0x20 - 0x7F) is the `ascii' character set, while
|
|
640 the right half (octets 0xA0 - 0xFF) is the `latin-1'
|
|
641 character set. With 'graphic set to 0, the octets
|
|
642 will have their high bit cleared; with it set to 1,
|
|
643 the octets will have their high bit set.
|
|
644 'direction 'l2r (left-to-right) or 'r2l (right-to-left).
|
|
645 Defaults to 'l2r.
|
|
646 'ccl-program A compiled CCL program used to convert a character in
|
|
647 this charset into an index into the font. This is in
|
|
648 addition to the 'graphic property. The CCL program
|
|
649 is passed the octets of the character, with the high
|
|
650 bit cleared and set depending upon whether the value
|
|
651 of the 'graphic property is 0 or 1.
|
|
652 */
|
|
653 (name, doc_string, props))
|
|
654 {
|
|
655 int lb, dimension = 1, chars = 94, graphic = 0, final = 0, columns = -1;
|
|
656 int direction = CHARSET_LEFT_TO_RIGHT;
|
|
657 int type;
|
|
658 Lisp_Object registry = Qnil;
|
|
659 Lisp_Object charset;
|
|
660 Lisp_Object rest, keyword, value;
|
|
661 Lisp_Object ccl_program = Qnil;
|
|
662
|
|
663 CHECK_SYMBOL (name);
|
|
664 if (!NILP (doc_string))
|
|
665 CHECK_STRING (doc_string);
|
|
666
|
|
667 charset = Ffind_charset (name);
|
|
668 if (!NILP (charset))
|
|
669 signal_simple_error ("Cannot redefine existing charset", name);
|
|
670
|
|
671 EXTERNAL_PROPERTY_LIST_LOOP (rest, keyword, value, props)
|
|
672 {
|
|
673 if (EQ (keyword, Qdimension))
|
|
674 {
|
|
675 CHECK_INT (value);
|
|
676 dimension = XINT (value);
|
|
677 if (dimension < 1 || dimension > 2)
|
|
678 signal_simple_error ("Invalid value for 'dimension", value);
|
|
679 }
|
|
680
|
|
681 else if (EQ (keyword, Qchars))
|
|
682 {
|
|
683 CHECK_INT (value);
|
|
684 chars = XINT (value);
|
|
685 if (chars != 94 && chars != 96)
|
|
686 signal_simple_error ("Invalid value for 'chars", value);
|
|
687 }
|
|
688
|
|
689 else if (EQ (keyword, Qcolumns))
|
|
690 {
|
|
691 CHECK_INT (value);
|
|
692 columns = XINT (value);
|
|
693 if (columns != 1 && columns != 2)
|
|
694 signal_simple_error ("Invalid value for 'columns", value);
|
|
695 }
|
|
696
|
|
697 else if (EQ (keyword, Qgraphic))
|
|
698 {
|
|
699 CHECK_INT (value);
|
|
700 graphic = XINT (value);
|
|
701 if (graphic < 0 || graphic > 1)
|
|
702 signal_simple_error ("Invalid value for 'graphic", value);
|
|
703 }
|
|
704
|
|
705 else if (EQ (keyword, Qregistry))
|
|
706 {
|
|
707 CHECK_STRING (value);
|
|
708 registry = value;
|
|
709 }
|
|
710
|
|
711 else if (EQ (keyword, Qdirection))
|
|
712 {
|
|
713 if (EQ (value, Ql2r))
|
|
714 direction = CHARSET_LEFT_TO_RIGHT;
|
|
715 else if (EQ (value, Qr2l))
|
|
716 direction = CHARSET_RIGHT_TO_LEFT;
|
|
717 else
|
|
718 signal_simple_error ("Invalid value for 'direction", value);
|
|
719 }
|
|
720
|
|
721 else if (EQ (keyword, Qfinal))
|
|
722 {
|
|
723 CHECK_CHAR_COERCE_INT (value);
|
|
724 final = XCHAR (value);
|
|
725 if (final < '0' || final > '~')
|
|
726 signal_simple_error ("Invalid value for 'final", value);
|
|
727 }
|
|
728
|
|
729 else if (EQ (keyword, Qccl_program))
|
|
730 {
|
|
731 CHECK_VECTOR (value);
|
|
732 ccl_program = value;
|
|
733 }
|
|
734
|
|
735 else
|
|
736 signal_simple_error ("Unrecognized property", keyword);
|
|
737 }
|
|
738
|
|
739 if (!final)
|
|
740 error ("'final must be specified");
|
|
741 if (dimension == 2 && final > 0x5F)
|
|
742 signal_simple_error
|
|
743 ("Final must be in the range 0x30 - 0x5F for dimension == 2",
|
|
744 make_char (final));
|
|
745
|
|
746 if (dimension == 1)
|
|
747 type = (chars == 94) ? CHARSET_TYPE_94 : CHARSET_TYPE_96;
|
|
748 else
|
|
749 type = (chars == 94) ? CHARSET_TYPE_94X94 : CHARSET_TYPE_96X96;
|
|
750
|
|
751 if (!NILP (CHARSET_BY_ATTRIBUTES (type, final, CHARSET_LEFT_TO_RIGHT)) ||
|
|
752 !NILP (CHARSET_BY_ATTRIBUTES (type, final, CHARSET_RIGHT_TO_LEFT)))
|
|
753 error
|
|
754 ("Character set already defined for this DIMENSION/CHARS/FINAL combo");
|
|
755
|
|
756 lb = get_unallocated_leading_byte (dimension);
|
|
757
|
|
758 if (NILP (doc_string))
|
|
759 doc_string = build_string ("");
|
|
760
|
|
761 if (NILP (registry))
|
|
762 registry = build_string ("");
|
|
763
|
|
764 if (columns == -1)
|
|
765 columns = dimension;
|
213
|
766 charset = make_charset (-1, name, lb, dimension + 2, type, columns, graphic,
|
70
|
767 final, direction, doc_string, registry);
|
|
768 if (!NILP (ccl_program))
|
|
769 XCHARSET_CCL_PROGRAM (charset) = ccl_program;
|
|
770 return charset;
|
|
771 }
|
|
772
|
280
|
773 DEFUN ("make-reverse-direction-charset", Fmake_reverse_direction_charset,
|
|
774 2, 2, 0, /*
|
70
|
775 Make a charset equivalent to CHARSET but which goes in the opposite direction.
|
|
776 NEW-NAME is the name of the new charset. Return the new charset.
|
|
777 */
|
|
778 (charset, new_name))
|
|
779 {
|
|
780 Lisp_Object new_charset = Qnil;
|
|
781 int lb, dimension, columns, graphic, final;
|
|
782 int direction, type;
|
|
783 Lisp_Object registry, doc_string;
|
|
784 struct Lisp_Charset *cs;
|
|
785
|
|
786 charset = Fget_charset (charset);
|
|
787 if (!NILP (XCHARSET_REVERSE_DIRECTION_CHARSET (charset)))
|
|
788 signal_simple_error ("Charset already has reverse-direction charset",
|
|
789 charset);
|
|
790
|
|
791 CHECK_SYMBOL (new_name);
|
|
792 if (!NILP (Ffind_charset (new_name)))
|
|
793 signal_simple_error ("Cannot redefine existing charset", new_name);
|
|
794
|
|
795 cs = XCHARSET (charset);
|
183
|
796
|
70
|
797 type = CHARSET_TYPE (cs);
|
|
798 columns = CHARSET_COLUMNS (cs);
|
|
799 dimension = CHARSET_DIMENSION (cs);
|
|
800 lb = get_unallocated_leading_byte (dimension);
|
|
801
|
|
802 graphic = CHARSET_GRAPHIC (cs);
|
|
803 final = CHARSET_FINAL (cs);
|
|
804 direction = CHARSET_RIGHT_TO_LEFT;
|
|
805 if (CHARSET_DIRECTION (cs) == CHARSET_RIGHT_TO_LEFT)
|
|
806 direction = CHARSET_LEFT_TO_RIGHT;
|
|
807 doc_string = CHARSET_DOC_STRING (cs);
|
|
808 registry = CHARSET_REGISTRY (cs);
|
|
809
|
213
|
810 new_charset = make_charset (-1, new_name, lb, dimension + 2, type, columns,
|
70
|
811 graphic, final, direction, doc_string, registry);
|
|
812
|
|
813 CHARSET_REVERSE_DIRECTION_CHARSET (cs) = new_charset;
|
|
814 XCHARSET_REVERSE_DIRECTION_CHARSET (new_charset) = charset;
|
|
815
|
|
816 return new_charset;
|
|
817 }
|
|
818
|
284
|
819 /* #### Reverse direction charsets not yet implemented. */
|
70
|
820 #if 0
|
280
|
821 DEFUN ("charset-reverse-direction-charset", Fcharset_reverse_direction_charset,
|
|
822 1, 1, 0, /*
|
70
|
823 Return the reverse-direction charset parallel to CHARSET, if any.
|
|
824 This is the charset with the same properties (in particular, the same
|
|
825 dimension, number of characters per dimension, and final byte) as
|
|
826 CHARSET but whose characters are displayed in the opposite direction.
|
|
827 */
|
|
828 (charset))
|
|
829 {
|
|
830 charset = Fget_charset (charset);
|
|
831 return XCHARSET_REVERSE_DIRECTION_CHARSET (charset);
|
|
832 }
|
|
833 #endif
|
|
834
|
|
835 DEFUN ("charset-from-attributes", Fcharset_from_attributes, 3, 4, 0, /*
|
|
836 Return a charset with the given DIMENSION, CHARS, FINAL, and DIRECTION.
|
|
837 If DIRECTION is omitted, both directions will be checked (left-to-right
|
|
838 will be returned if character sets exist for both directions).
|
|
839 */
|
|
840 (dimension, chars, final, direction))
|
|
841 {
|
|
842 int dm, ch, fi, di = -1;
|
|
843 int type;
|
|
844 Lisp_Object obj = Qnil;
|
|
845
|
|
846 CHECK_INT (dimension);
|
|
847 dm = XINT (dimension);
|
|
848 if (dm < 1 || dm > 2)
|
|
849 signal_simple_error ("Invalid value for DIMENSION", dimension);
|
|
850
|
|
851 CHECK_INT (chars);
|
|
852 ch = XINT (chars);
|
|
853 if (ch != 94 && ch != 96)
|
|
854 signal_simple_error ("Invalid value for CHARS", chars);
|
|
855
|
|
856 CHECK_CHAR_COERCE_INT (final);
|
|
857 fi = XCHAR (final);
|
|
858 if (fi < '0' || fi > '~')
|
|
859 signal_simple_error ("Invalid value for FINAL", final);
|
|
860
|
|
861 if (EQ (direction, Ql2r))
|
|
862 di = CHARSET_LEFT_TO_RIGHT;
|
|
863 else if (EQ (direction, Qr2l))
|
|
864 di = CHARSET_RIGHT_TO_LEFT;
|
|
865 else if (!NILP (direction))
|
|
866 signal_simple_error ("Invalid value for DIRECTION", direction);
|
|
867
|
|
868 if (dm == 2 && fi > 0x5F)
|
|
869 signal_simple_error
|
|
870 ("Final must be in the range 0x30 - 0x5F for dimension == 2", final);
|
|
871
|
|
872 if (dm == 1)
|
|
873 type = (ch == 94) ? CHARSET_TYPE_94 : CHARSET_TYPE_96;
|
|
874 else
|
|
875 type = (ch == 94) ? CHARSET_TYPE_94X94 : CHARSET_TYPE_96X96;
|
|
876
|
|
877 if (di == -1)
|
|
878 {
|
|
879 obj = CHARSET_BY_ATTRIBUTES (type, fi, CHARSET_LEFT_TO_RIGHT);
|
|
880 if (NILP (obj))
|
|
881 obj = CHARSET_BY_ATTRIBUTES (type, fi, CHARSET_RIGHT_TO_LEFT);
|
|
882 }
|
|
883 else
|
|
884 obj = CHARSET_BY_ATTRIBUTES (type, fi, di);
|
|
885
|
|
886 if (CHARSETP (obj))
|
|
887 return XCHARSET_NAME (obj);
|
|
888 return obj;
|
|
889 }
|
|
890
|
|
891 DEFUN ("charset-doc-string", Fcharset_doc_string, 1, 1, 0, /*
|
|
892 Return doc string of CHARSET.
|
|
893 */
|
|
894 (charset))
|
|
895 {
|
|
896 return XCHARSET_DOC_STRING (Fget_charset (charset));
|
|
897 }
|
|
898
|
|
899 DEFUN ("charset-dimension", Fcharset_dimension, 1, 1, 0, /*
|
|
900 Return dimension of CHARSET.
|
|
901 */
|
|
902 (charset))
|
|
903 {
|
|
904 return make_int (XCHARSET_DIMENSION (Fget_charset (charset)));
|
|
905 }
|
|
906
|
|
907 DEFUN ("charset-property", Fcharset_property, 2, 2, 0, /*
|
|
908 Return property PROP of CHARSET.
|
|
909 Recognized properties are those listed in `make-charset', as well as
|
|
910 'name and 'doc-string.
|
|
911 */
|
|
912 (charset, prop))
|
|
913 {
|
|
914 struct Lisp_Charset *cs;
|
|
915
|
|
916 charset = Fget_charset (charset);
|
|
917 cs = XCHARSET (charset);
|
|
918
|
|
919 CHECK_SYMBOL (prop);
|
|
920 if (EQ (prop, Qname)) return CHARSET_NAME (cs);
|
|
921 if (EQ (prop, Qdoc_string)) return CHARSET_DOC_STRING (cs);
|
|
922 if (EQ (prop, Qdimension)) return make_int (CHARSET_DIMENSION (cs));
|
|
923 if (EQ (prop, Qcolumns)) return make_int (CHARSET_COLUMNS (cs));
|
|
924 if (EQ (prop, Qgraphic)) return make_int (CHARSET_GRAPHIC (cs));
|
|
925 if (EQ (prop, Qfinal)) return make_char (CHARSET_FINAL (cs));
|
|
926 if (EQ (prop, Qchars)) return make_int (CHARSET_CHARS (cs));
|
|
927 if (EQ (prop, Qregistry)) return CHARSET_REGISTRY (cs);
|
|
928 if (EQ (prop, Qccl_program)) return CHARSET_CCL_PROGRAM (cs);
|
|
929 if (EQ (prop, Qdirection))
|
272
|
930 return CHARSET_DIRECTION (cs) == CHARSET_LEFT_TO_RIGHT ? Ql2r : Qr2l;
|
70
|
931 if (EQ (prop, Qreverse_direction_charset))
|
|
932 {
|
|
933 Lisp_Object obj = CHARSET_REVERSE_DIRECTION_CHARSET (cs);
|
|
934 if (NILP (obj))
|
|
935 return Qnil;
|
|
936 else
|
|
937 return XCHARSET_NAME (obj);
|
|
938 }
|
|
939 signal_simple_error ("Unrecognized charset property name", prop);
|
|
940 return Qnil; /* not reached */
|
|
941 }
|
|
942
|
213
|
943 DEFUN ("charset-id", Fcharset_id, 1, 1, 0, /*
|
|
944 Return charset identification number of CHARSET.
|
|
945 */
|
|
946 (charset))
|
|
947 {
|
|
948 return make_int(XCHARSET_ID (Fget_charset (charset)));
|
|
949 }
|
|
950
|
70
|
951 /* #### We need to figure out which properties we really want to
|
|
952 allow to be set. */
|
|
953
|
|
954 DEFUN ("set-charset-ccl-program", Fset_charset_ccl_program, 2, 2, 0, /*
|
|
955 Set the 'ccl-program property of CHARSET to CCL-PROGRAM.
|
|
956 */
|
|
957 (charset, ccl_program))
|
|
958 {
|
|
959 charset = Fget_charset (charset);
|
|
960 CHECK_VECTOR (ccl_program);
|
|
961 XCHARSET_CCL_PROGRAM (charset) = ccl_program;
|
|
962 return Qnil;
|
|
963 }
|
|
964
|
|
965 static void
|
|
966 invalidate_charset_font_caches (Lisp_Object charset)
|
|
967 {
|
|
968 /* Invalidate font cache entries for charset on all devices. */
|
|
969 Lisp_Object devcons, concons, hashtab;
|
|
970 DEVICE_LOOP_NO_BREAK (devcons, concons)
|
|
971 {
|
|
972 struct device *d = XDEVICE (XCAR (devcons));
|
|
973 hashtab = Fgethash (charset, d->charset_font_cache, Qunbound);
|
|
974 if (!UNBOUNDP (hashtab))
|
|
975 Fclrhash (hashtab);
|
|
976 }
|
|
977 }
|
|
978
|
|
979 /* Japanese folks may want to (set-charset-registry 'ascii "jisx0201") */
|
|
980 DEFUN ("set-charset-registry", Fset_charset_registry, 2, 2, 0, /*
|
|
981 Set the 'registry property of CHARSET to REGISTRY.
|
|
982 */
|
|
983 (charset, registry))
|
|
984 {
|
|
985 charset = Fget_charset (charset);
|
|
986 CHECK_STRING (registry);
|
|
987 XCHARSET_REGISTRY (charset) = registry;
|
|
988 invalidate_charset_font_caches (charset);
|
|
989 face_property_was_changed (Vdefault_face, Qfont, Qglobal);
|
|
990 return Qnil;
|
|
991 }
|
183
|
992
|
70
|
993
|
|
994 /************************************************************************/
|
|
995 /* Lisp primitives for working with characters */
|
|
996 /************************************************************************/
|
|
997
|
|
998 DEFUN ("make-char", Fmake_char, 2, 3, 0, /*
|
|
999 Make a multi-byte character from CHARSET and octets ARG1 and ARG2.
|
|
1000 */
|
|
1001 (charset, arg1, arg2))
|
|
1002 {
|
|
1003 struct Lisp_Charset *cs;
|
|
1004 int a1, a2;
|
|
1005 int lowlim, highlim;
|
|
1006
|
|
1007 charset = Fget_charset (charset);
|
|
1008 cs = XCHARSET (charset);
|
|
1009
|
|
1010 if (EQ (charset, Vcharset_ascii)) lowlim = 0, highlim = 127;
|
|
1011 else if (EQ (charset, Vcharset_control_1)) lowlim = 0, highlim = 31;
|
|
1012 else if (CHARSET_CHARS (cs) == 94) lowlim = 33, highlim = 126;
|
|
1013 else /* CHARSET_CHARS (cs) == 96) */ lowlim = 32, highlim = 127;
|
|
1014
|
|
1015 CHECK_INT (arg1);
|
|
1016 a1 = XINT (arg1);
|
|
1017 if (a1 < lowlim || a1 > highlim)
|
|
1018 args_out_of_range_3 (arg1, make_int (lowlim), make_int (highlim));
|
|
1019
|
|
1020 if (CHARSET_DIMENSION (cs) == 1)
|
|
1021 {
|
|
1022 if (!NILP (arg2))
|
|
1023 signal_simple_error
|
|
1024 ("Charset is of dimension one; second octet must be nil", arg2);
|
|
1025 return make_char (MAKE_CHAR (charset, a1, 0));
|
|
1026 }
|
|
1027
|
|
1028 CHECK_INT (arg2);
|
|
1029 a2 = XINT (arg2);
|
|
1030 if (a2 < lowlim || a2 > highlim)
|
|
1031 args_out_of_range_3 (arg2, make_int (lowlim), make_int (highlim));
|
|
1032
|
|
1033 return make_char (MAKE_CHAR (charset, a1, a2));
|
|
1034 }
|
|
1035
|
|
1036 DEFUN ("char-charset", Fchar_charset, 1, 1, 0, /*
|
|
1037 Return the character set of char CH.
|
|
1038 */
|
|
1039 (ch))
|
|
1040 {
|
|
1041 CHECK_CHAR_COERCE_INT (ch);
|
|
1042
|
|
1043 return XCHARSET_NAME (CHARSET_BY_LEADING_BYTE
|
|
1044 (CHAR_LEADING_BYTE (XCHAR (ch))));
|
|
1045 }
|
|
1046
|
|
1047 DEFUN ("char-octet", Fchar_octet, 1, 2, 0, /*
|
|
1048 Return the octet numbered N (should be 0 or 1) of char CH.
|
|
1049 N defaults to 0 if omitted.
|
|
1050 */
|
|
1051 (ch, n))
|
|
1052 {
|
|
1053 Lisp_Object charset;
|
183
|
1054 int c1, c2, int_n;
|
70
|
1055
|
|
1056 CHECK_CHAR_COERCE_INT (ch);
|
|
1057 if (NILP (n))
|
183
|
1058 int_n = 0;
|
70
|
1059 else
|
|
1060 {
|
|
1061 CHECK_INT (n);
|
183
|
1062 int_n = XINT (n);
|
|
1063 if (int_n != 0 && int_n != 1)
|
70
|
1064 signal_simple_error ("Octet number must be 0 or 1", n);
|
|
1065 }
|
|
1066 BREAKUP_CHAR (XCHAR (ch), charset, c1, c2);
|
183
|
1067 return make_int (int_n == 0 ? c1 : c2);
|
70
|
1068 }
|
|
1069
|
|
1070
|
|
1071 /************************************************************************/
|
|
1072 /* composite character functions */
|
|
1073 /************************************************************************/
|
|
1074
|
|
1075 Emchar
|
|
1076 lookup_composite_char (Bufbyte *str, int len)
|
|
1077 {
|
|
1078 Lisp_Object lispstr = make_string (str, len);
|
|
1079 Lisp_Object ch = Fgethash (lispstr,
|
|
1080 Vcomposite_char_string2char_hashtable,
|
|
1081 Qunbound);
|
|
1082 Emchar emch;
|
|
1083
|
|
1084 if (UNBOUNDP (ch))
|
|
1085 {
|
|
1086 if (composite_char_row_next >= 128)
|
|
1087 signal_simple_error ("No more composite chars available", lispstr);
|
|
1088 emch = MAKE_CHAR (Vcharset_composite, composite_char_row_next,
|
|
1089 composite_char_col_next);
|
|
1090 Fputhash (make_char (emch), lispstr,
|
|
1091 Vcomposite_char_char2string_hashtable);
|
|
1092 Fputhash (lispstr, make_char (emch),
|
|
1093 Vcomposite_char_string2char_hashtable);
|
|
1094 composite_char_col_next++;
|
|
1095 if (composite_char_col_next >= 128)
|
|
1096 {
|
|
1097 composite_char_col_next = 32;
|
|
1098 composite_char_row_next++;
|
|
1099 }
|
|
1100 }
|
|
1101 else
|
|
1102 emch = XCHAR (ch);
|
|
1103 return emch;
|
|
1104 }
|
|
1105
|
|
1106 Lisp_Object
|
|
1107 composite_char_string (Emchar ch)
|
|
1108 {
|
|
1109 Lisp_Object str = Fgethash (make_char (ch),
|
|
1110 Vcomposite_char_char2string_hashtable,
|
|
1111 Qunbound);
|
|
1112 assert (!UNBOUNDP (str));
|
|
1113 return str;
|
|
1114 }
|
|
1115
|
|
1116 DEFUN ("make-composite-char", Fmake_composite_char, 1, 1, 0, /*
|
|
1117 Convert a string into a single composite character.
|
|
1118 The character is the result of overstriking all the characters in
|
|
1119 the string.
|
|
1120 */
|
|
1121 (string))
|
|
1122 {
|
|
1123 CHECK_STRING (string);
|
|
1124 return make_char (lookup_composite_char (XSTRING_DATA (string),
|
|
1125 XSTRING_LENGTH (string)));
|
|
1126 }
|
|
1127
|
|
1128 DEFUN ("composite-char-string", Fcomposite_char_string, 1, 1, 0, /*
|
|
1129 Return a string of the characters comprising a composite character.
|
|
1130 */
|
|
1131 (ch))
|
|
1132 {
|
|
1133 Emchar emch;
|
|
1134
|
|
1135 CHECK_CHAR (ch);
|
|
1136 emch = XCHAR (ch);
|
|
1137 if (CHAR_LEADING_BYTE (emch) != LEADING_BYTE_COMPOSITE)
|
|
1138 signal_simple_error ("Must be composite char", ch);
|
|
1139 return composite_char_string (emch);
|
|
1140 }
|
|
1141
|
|
1142
|
|
1143 /************************************************************************/
|
|
1144 /* initialization */
|
|
1145 /************************************************************************/
|
|
1146
|
|
1147 void
|
|
1148 syms_of_mule_charset (void)
|
|
1149 {
|
|
1150 DEFSUBR (Fcharsetp);
|
|
1151 DEFSUBR (Ffind_charset);
|
|
1152 DEFSUBR (Fget_charset);
|
|
1153 DEFSUBR (Fcharset_list);
|
|
1154 DEFSUBR (Fcharset_name);
|
|
1155 DEFSUBR (Fmake_charset);
|
|
1156 DEFSUBR (Fmake_reverse_direction_charset);
|
|
1157 /* DEFSUBR (Freverse_direction_charset); */
|
|
1158 DEFSUBR (Fcharset_from_attributes);
|
|
1159 DEFSUBR (Fcharset_doc_string);
|
|
1160 DEFSUBR (Fcharset_dimension);
|
|
1161 DEFSUBR (Fcharset_property);
|
213
|
1162 DEFSUBR (Fcharset_id);
|
70
|
1163 DEFSUBR (Fset_charset_ccl_program);
|
|
1164 DEFSUBR (Fset_charset_registry);
|
|
1165
|
|
1166 DEFSUBR (Fmake_char);
|
|
1167 DEFSUBR (Fchar_charset);
|
|
1168 DEFSUBR (Fchar_octet);
|
|
1169
|
|
1170 DEFSUBR (Fmake_composite_char);
|
|
1171 DEFSUBR (Fcomposite_char_string);
|
|
1172
|
|
1173 defsymbol (&Qcharsetp, "charsetp");
|
|
1174 defsymbol (&Qregistry, "registry");
|
|
1175 defsymbol (&Qfinal, "final");
|
|
1176 defsymbol (&Qgraphic, "graphic");
|
|
1177 defsymbol (&Qdirection, "direction");
|
|
1178 defsymbol (&Qreverse_direction_charset, "reverse-direction-charset");
|
|
1179 defsymbol (&Qccl_program, "ccl-program");
|
|
1180
|
|
1181 defsymbol (&Ql2r, "l2r");
|
|
1182 defsymbol (&Qr2l, "r2l");
|
|
1183
|
74
|
1184 /* Charsets, compatible with Emacs/Mule 19.33-delta
|
|
1185 Naming convention is Script-Charset[-Edition] */
|
|
1186 defsymbol (&Qascii, "ascii");
|
|
1187 defsymbol (&Qcontrol_1, "control-1");
|
|
1188 defsymbol (&Qlatin_iso8859_1, "latin-iso8859-1");
|
|
1189 defsymbol (&Qlatin_iso8859_2, "latin-iso8859-2");
|
|
1190 defsymbol (&Qlatin_iso8859_3, "latin-iso8859-3");
|
|
1191 defsymbol (&Qlatin_iso8859_4, "latin-iso8859-4");
|
|
1192 defsymbol (&Qcyrillic_iso8859_5, "cyrillic-iso8859-5");
|
|
1193 defsymbol (&Qarabic_iso8859_6, "arabic-iso8859-6");
|
|
1194 defsymbol (&Qgreek_iso8859_7, "greek-iso8859-7");
|
|
1195 defsymbol (&Qhebrew_iso8859_8, "hebrew-iso8859-8");
|
|
1196 defsymbol (&Qlatin_iso8859_9, "latin-iso8859-9");
|
|
1197 defsymbol (&Qthai_tis620, "thai-tis620");
|
183
|
1198
|
74
|
1199 defsymbol (&Qkatakana_jisx0201, "katakana-jisx0201");
|
|
1200 defsymbol (&Qlatin_jisx0201, "latin-jisx0201");
|
70
|
1201 defsymbol (&Qjapanese_jisx0208_1978, "japanese-jisx0208-1978");
|
|
1202 defsymbol (&Qjapanese_jisx0208, "japanese-jisx0208");
|
|
1203 defsymbol (&Qjapanese_jisx0212, "japanese-jisx0212");
|
183
|
1204
|
74
|
1205 defsymbol (&Qchinese_gb2312, "chinese-gb2312");
|
|
1206 defsymbol (&Qchinese_big5_1, "chinese-big5-1");
|
|
1207 defsymbol (&Qchinese_big5_2, "chinese-big5-2");
|
|
1208 defsymbol (&Qchinese_cns11643_1, "chinese-cns11643-1");
|
|
1209 defsymbol (&Qchinese_cns11643_2, "chinese-cns11643-2");
|
183
|
1210
|
74
|
1211 defsymbol (&Qkorean_ksc5601, "korean-ksc5601");
|
|
1212 defsymbol (&Qcomposite, "composite");
|
70
|
1213 }
|
|
1214
|
|
1215 void
|
|
1216 vars_of_mule_charset (void)
|
|
1217 {
|
|
1218 int i, j, k;
|
|
1219
|
183
|
1220 /* Table of charsets indexed by leading byte. */
|
|
1221 for (i = 0; i < countof (charset_by_leading_byte); i++)
|
70
|
1222 charset_by_leading_byte[i] = Qnil;
|
183
|
1223
|
|
1224 /* Table of charsets indexed by type/final-byte/direction. */
|
|
1225 for (i = 0; i < countof (charset_by_attributes); i++)
|
|
1226 for (j = 0; j < countof (charset_by_attributes[0]); j++)
|
|
1227 for (k = 0; k < countof (charset_by_attributes[0][0]); k++)
|
70
|
1228 charset_by_attributes[i][j][k] = Qnil;
|
|
1229
|
|
1230 next_allocated_1_byte_leading_byte = MIN_LEADING_BYTE_PRIVATE_1;
|
|
1231 next_allocated_2_byte_leading_byte = MIN_LEADING_BYTE_PRIVATE_2;
|
|
1232 }
|
|
1233
|
|
1234 void
|
|
1235 complex_vars_of_mule_charset (void)
|
|
1236 {
|
|
1237 staticpro (&Vcharset_hashtable);
|
|
1238 Vcharset_hashtable = make_lisp_hashtable (50, HASHTABLE_NONWEAK,
|
|
1239 HASHTABLE_EQ);
|
183
|
1240
|
70
|
1241 /* Predefined character sets. We store them into variables for
|
|
1242 ease of access. */
|
|
1243
|
|
1244 Vcharset_ascii =
|
213
|
1245 make_charset (0, Qascii, LEADING_BYTE_ASCII, 1,
|
70
|
1246 CHARSET_TYPE_94, 1, 0, 'B',
|
|
1247 CHARSET_LEFT_TO_RIGHT,
|
167
|
1248 build_string ("ASCII (ISO 646 IRV)"),
|
78
|
1249 build_string ("iso8859-1"));
|
70
|
1250 Vcharset_control_1 =
|
213
|
1251 make_charset (-1, Qcontrol_1, LEADING_BYTE_CONTROL_1, 2,
|
70
|
1252 CHARSET_TYPE_94, 1, 0, 0,
|
|
1253 CHARSET_LEFT_TO_RIGHT,
|
|
1254 build_string ("Control characters"),
|
|
1255 build_string (""));
|
74
|
1256 Vcharset_latin_iso8859_1 =
|
213
|
1257 make_charset (129, Qlatin_iso8859_1, LEADING_BYTE_LATIN_ISO8859_1, 2,
|
70
|
1258 CHARSET_TYPE_96, 1, 1, 'A',
|
|
1259 CHARSET_LEFT_TO_RIGHT,
|
167
|
1260 build_string ("ISO 8859-1 (Latin-1)"),
|
78
|
1261 build_string ("iso8859-1"));
|
74
|
1262 Vcharset_latin_iso8859_2 =
|
213
|
1263 make_charset (130, Qlatin_iso8859_2, LEADING_BYTE_LATIN_ISO8859_2, 2,
|
70
|
1264 CHARSET_TYPE_96, 1, 1, 'B',
|
|
1265 CHARSET_LEFT_TO_RIGHT,
|
167
|
1266 build_string ("ISO 8859-2 (Latin-2)"),
|
78
|
1267 build_string ("iso8859-2"));
|
74
|
1268 Vcharset_latin_iso8859_3 =
|
213
|
1269 make_charset (131, Qlatin_iso8859_3, LEADING_BYTE_LATIN_ISO8859_3, 2,
|
70
|
1270 CHARSET_TYPE_96, 1, 1, 'C',
|
|
1271 CHARSET_LEFT_TO_RIGHT,
|
167
|
1272 build_string ("ISO 8859-3 (Latin-3)"),
|
78
|
1273 build_string ("iso8859-3"));
|
74
|
1274 Vcharset_latin_iso8859_4 =
|
213
|
1275 make_charset (132, Qlatin_iso8859_4, LEADING_BYTE_LATIN_ISO8859_4, 2,
|
70
|
1276 CHARSET_TYPE_96, 1, 1, 'D',
|
|
1277 CHARSET_LEFT_TO_RIGHT,
|
167
|
1278 build_string ("ISO 8859-4 (Latin-4)"),
|
78
|
1279 build_string ("iso8859-4"));
|
74
|
1280 Vcharset_cyrillic_iso8859_5 =
|
213
|
1281 make_charset (140, Qcyrillic_iso8859_5, LEADING_BYTE_CYRILLIC_ISO8859_5, 2,
|
70
|
1282 CHARSET_TYPE_96, 1, 1, 'L',
|
|
1283 CHARSET_LEFT_TO_RIGHT,
|
167
|
1284 build_string ("ISO 8859-5 (Cyrillic)"),
|
78
|
1285 build_string ("iso8859-5"));
|
74
|
1286 Vcharset_arabic_iso8859_6 =
|
213
|
1287 make_charset (135, Qarabic_iso8859_6, LEADING_BYTE_ARABIC_ISO8859_6, 2,
|
70
|
1288 CHARSET_TYPE_96, 1, 1, 'G',
|
|
1289 CHARSET_RIGHT_TO_LEFT,
|
167
|
1290 build_string ("ISO 8859-6 (Arabic)"),
|
78
|
1291 build_string ("iso8859-6"));
|
74
|
1292 Vcharset_greek_iso8859_7 =
|
213
|
1293 make_charset (134, Qgreek_iso8859_7, LEADING_BYTE_GREEK_ISO8859_7, 2,
|
70
|
1294 CHARSET_TYPE_96, 1, 1, 'F',
|
|
1295 CHARSET_LEFT_TO_RIGHT,
|
167
|
1296 build_string ("ISO 8859-7 (Greek)"),
|
78
|
1297 build_string ("iso8859-7"));
|
74
|
1298 Vcharset_hebrew_iso8859_8 =
|
213
|
1299 make_charset (136, Qhebrew_iso8859_8, LEADING_BYTE_HEBREW_ISO8859_8, 2,
|
70
|
1300 CHARSET_TYPE_96, 1, 1, 'H',
|
|
1301 CHARSET_RIGHT_TO_LEFT,
|
167
|
1302 build_string ("ISO 8859-8 (Hebrew)"),
|
78
|
1303 build_string ("iso8859-8"));
|
74
|
1304 Vcharset_latin_iso8859_9 =
|
213
|
1305 make_charset (141, Qlatin_iso8859_9, LEADING_BYTE_LATIN_ISO8859_9, 2,
|
70
|
1306 CHARSET_TYPE_96, 1, 1, 'M',
|
|
1307 CHARSET_LEFT_TO_RIGHT,
|
167
|
1308 build_string ("ISO 8859-9 (Latin-5)"),
|
78
|
1309 build_string ("iso8859-9"));
|
74
|
1310 Vcharset_thai_tis620 =
|
213
|
1311 make_charset (133, Qthai_tis620, LEADING_BYTE_THAI_TIS620, 2,
|
70
|
1312 CHARSET_TYPE_96, 1, 1, 'T',
|
|
1313 CHARSET_LEFT_TO_RIGHT,
|
167
|
1314 build_string ("TIS 620.2529 (Thai)"),
|
78
|
1315 build_string ("tis620"));
|
70
|
1316
|
|
1317 /* Japanese */
|
74
|
1318 Vcharset_katakana_jisx0201 =
|
213
|
1319 make_charset (137, Qkatakana_jisx0201,
|
74
|
1320 LEADING_BYTE_KATAKANA_JISX0201, 2,
|
70
|
1321 CHARSET_TYPE_94, 1, 1, 'I',
|
|
1322 CHARSET_LEFT_TO_RIGHT,
|
167
|
1323 build_string ("JIS X0201-Katakana"),
|
78
|
1324 build_string ("jisx0201.1976"));
|
74
|
1325 Vcharset_latin_jisx0201 =
|
213
|
1326 make_charset (138, Qlatin_jisx0201,
|
74
|
1327 LEADING_BYTE_LATIN_JISX0201, 2,
|
70
|
1328 CHARSET_TYPE_94, 1, 0, 'J',
|
|
1329 CHARSET_LEFT_TO_RIGHT,
|
167
|
1330 build_string ("JIS X0201-Latin"),
|
78
|
1331 build_string ("jisx0201.1976"));
|
70
|
1332 Vcharset_japanese_jisx0208_1978 =
|
213
|
1333 make_charset (144, Qjapanese_jisx0208_1978,
|
70
|
1334 LEADING_BYTE_JAPANESE_JISX0208_1978, 3,
|
|
1335 CHARSET_TYPE_94X94, 2, 0, '@',
|
|
1336 CHARSET_LEFT_TO_RIGHT,
|
167
|
1337 build_string
|
|
1338 ("JIS X0208-1978 (Japanese Kanji; Old Version)"),
|
78
|
1339 build_string ("\\(jisx0208\\|jisc6226\\).19"));
|
70
|
1340 Vcharset_japanese_jisx0208 =
|
213
|
1341 make_charset (146, Qjapanese_jisx0208,
|
70
|
1342 LEADING_BYTE_JAPANESE_JISX0208, 3,
|
|
1343 CHARSET_TYPE_94X94, 2, 0, 'B',
|
|
1344 CHARSET_LEFT_TO_RIGHT,
|
167
|
1345 build_string ("JIS X0208-1983 (Japanese Kanji)"),
|
78
|
1346 build_string ("jisx0208.19\\(83\\|90\\)"));
|
70
|
1347 Vcharset_japanese_jisx0212 =
|
213
|
1348 make_charset (148, Qjapanese_jisx0212,
|
70
|
1349 LEADING_BYTE_JAPANESE_JISX0212, 3,
|
|
1350 CHARSET_TYPE_94X94, 2, 0, 'D',
|
|
1351 CHARSET_LEFT_TO_RIGHT,
|
167
|
1352 build_string ("JIS X0212 (Japanese Supplement)"),
|
78
|
1353 build_string ("jisx0212"));
|
70
|
1354
|
|
1355 /* Chinese */
|
74
|
1356 Vcharset_chinese_gb2312 =
|
213
|
1357 make_charset (145, Qchinese_gb2312, LEADING_BYTE_CHINESE_GB2312, 3,
|
70
|
1358 CHARSET_TYPE_94X94, 2, 0, 'A',
|
|
1359 CHARSET_LEFT_TO_RIGHT,
|
167
|
1360 build_string ("GB 2312 (Simplified Chinese)"),
|
78
|
1361 build_string ("gb2312"));
|
|
1362 #define CHINESE_CNS_PLANE_RE(n) "cns11643[.-]\\(.*[.-]\\)?" n "$"
|
70
|
1363 Vcharset_chinese_cns11643_1 =
|
213
|
1364 make_charset (149, Qchinese_cns11643_1,
|
70
|
1365 LEADING_BYTE_CHINESE_CNS11643_1, 3,
|
|
1366 CHARSET_TYPE_94X94, 2, 0, 'G',
|
|
1367 CHARSET_LEFT_TO_RIGHT,
|
167
|
1368 build_string
|
|
1369 ("CNS 11643 Plane 1 (Traditional Chinese for daily use)"),
|
70
|
1370 build_string (CHINESE_CNS_PLANE_RE("1")));
|
|
1371 Vcharset_chinese_cns11643_2 =
|
213
|
1372 make_charset (150, Qchinese_cns11643_2,
|
70
|
1373 LEADING_BYTE_CHINESE_CNS11643_2, 3,
|
|
1374 CHARSET_TYPE_94X94, 2, 0, 'H',
|
|
1375 CHARSET_LEFT_TO_RIGHT,
|
167
|
1376 build_string
|
|
1377 ("CNS 11643 Plane 2 (Traditional Chinese for daily use)"),
|
70
|
1378 build_string (CHINESE_CNS_PLANE_RE("2")));
|
|
1379 Vcharset_chinese_big5_1 =
|
213
|
1380 make_charset (152, Qchinese_big5_1, LEADING_BYTE_CHINESE_BIG5_1, 3,
|
70
|
1381 CHARSET_TYPE_94X94, 2, 0, '0',
|
|
1382 CHARSET_LEFT_TO_RIGHT,
|
167
|
1383 build_string
|
|
1384 ("Big5 Level 1 (Traditional Chinese for daily use)"),
|
78
|
1385 build_string ("big5"));
|
70
|
1386 Vcharset_chinese_big5_2 =
|
213
|
1387 make_charset (153, Qchinese_big5_2, LEADING_BYTE_CHINESE_BIG5_2, 3,
|
70
|
1388 CHARSET_TYPE_94X94, 2, 0, '1',
|
|
1389 CHARSET_LEFT_TO_RIGHT,
|
167
|
1390 build_string
|
|
1391 ("Big5 Level 2 (Traditional Chinese for daily use)"),
|
78
|
1392 build_string ("big5"));
|
70
|
1393
|
|
1394 Vcharset_korean_ksc5601 =
|
213
|
1395 make_charset (147, Qkorean_ksc5601, LEADING_BYTE_KOREAN_KSC5601, 3,
|
70
|
1396 CHARSET_TYPE_94X94, 2, 0, 'C',
|
|
1397 CHARSET_LEFT_TO_RIGHT,
|
167
|
1398 build_string ("KS C5601 (Hangul and Korean Hanja)"),
|
78
|
1399 build_string ("ksc5601"));
|
70
|
1400 /* #### For simplicity, we put composite chars into a 96x96 charset.
|
|
1401 This is going to lead to problems because you can run out of
|
|
1402 room, esp. as we don't yet recycle numbers. */
|
|
1403 Vcharset_composite =
|
213
|
1404 make_charset (-1, Qcomposite, LEADING_BYTE_COMPOSITE, 3,
|
70
|
1405 CHARSET_TYPE_96X96, 2, 0, 0,
|
|
1406 CHARSET_LEFT_TO_RIGHT,
|
|
1407 build_string ("Composite characters"),
|
|
1408 build_string (""));
|
|
1409
|
|
1410 composite_char_row_next = 32;
|
|
1411 composite_char_col_next = 32;
|
|
1412
|
|
1413 Vcomposite_char_string2char_hashtable =
|
183
|
1414 make_lisp_hashtable (500, HASHTABLE_NONWEAK, HASHTABLE_EQUAL);
|
70
|
1415 Vcomposite_char_char2string_hashtable =
|
183
|
1416 make_lisp_hashtable (500, HASHTABLE_NONWEAK, HASHTABLE_EQ);
|
70
|
1417 staticpro (&Vcomposite_char_string2char_hashtable);
|
|
1418 staticpro (&Vcomposite_char_char2string_hashtable);
|
|
1419
|
|
1420 }
|