(=>>>hanyo-denshi/jb): New coded-charset for XEmacs CHISE.
[chise/xemacs-chise.git.1] / lisp / mule / mule-conf.el
1 ;;; mule-conf.el --- configure multilingual environment
2
3 ;; Copyright (C) 1995,1999 Electrotechnical Laboratory, JAPAN.
4 ;; Licensed to the Free Software Foundation.
5 ;; Copyright (C) 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2008,
6 ;;   2009, 2010, 2011, 2012 MORIOKA Tomohiko
7
8 ;; Keywords: mule, multilingual, character set, coding system
9
10 ;; This file is part of XEmacs.
11
12 ;; XEmacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
16
17 ;; XEmacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with XEmacs; see the file COPYING.  If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
26
27 ;;; Code:
28
29 (cond
30  ((featurep 'utf-2000)
31   (make-charset
32    '=jis-x0208@1978
33    "JIS X 0208:1978, unchanged part."
34    '(registry "jisx0208\\.1978"
35               dimension 2
36               chars 94
37               mother =jis-x0208
38               =>iso-ir 42
39               final ?@
40               graphic 0
41               partial t))
42   (make-charset
43    '=jis-x0208@1978/-4pr
44    "JIS X 0208:1978, 1st - 3rd impressions."
45    '(registry "jisx0208\\.1978"
46               dimension 2
47               chars 94
48               mother =jis-x0208@1978
49               =>iso-ir 42
50               final ?@
51               graphic 0
52               partial t))
53   (make-charset
54    '=jis-x0208@1978/1pr
55    "JIS X 0208:1978, 1st impression."
56    '(iso-ir 42
57             registry "jisx0208\\.1978"
58             dimension 2
59             chars 94
60             mother =jis-x0208@1978/-4pr
61             final ?@
62             graphic 0))
63   (make-charset
64    '=jis-x0208@1978/-4X
65    "JIS X 0208:1978, index before the 4th impression."
66    '(registry "jisx0208\\.1978"
67               dimension 2
68               chars 94
69               mother =jis-x0208@1978
70               =>iso-ir 42
71               ;; final ?@
72               graphic 0
73               partial t))
74   (make-charset
75    '=jis-x0208@1978/1er-pr
76    "JIS X 0208:1978, fixed by errata [Nov 1978]."
77    '(registry "jisx0208\\.1978"
78               dimension 2
79               chars 94
80               mother =jis-x0208@1978
81               =>iso-ir 42
82               ;; final ?@
83               graphic 0
84               partial t))
85   (make-charset
86    '=jis-x0208@1978/2-pr
87    "JIS X 0208:1978, 2nd impression or later."
88    '(registry "jisx0208\\.1978"
89               dimension 2
90               chars 94
91               mother =jis-x0208@1978/1er-pr
92               =>iso-ir 42
93               ;; final ?@
94               graphic 0
95               partial t))
96   (make-charset
97    '=jis-x0208@1978/4er
98    "JIS X 0208:1978, replaced by errata of 4th impression."
99    '(registry "jisx0208\\.1978"
100               dimension 2
101               chars 94
102               mother =jis-x0208@1978/2-pr
103               =>iso-ir 42
104               ;; final ?@
105               graphic 0
106               partial t))
107   (make-charset
108    '=jis-x0208@1978/4-pr
109    "JIS X 0208:1978, 4th impression or later."
110    '(registry "jisx0208\\.1978"
111               dimension 2
112               chars 94
113               mother =jis-x0208@1978/2-pr
114               =>iso-ir 42
115               ;; final ?@
116               graphic 0
117               partial t))
118   (make-charset
119    '=jis-x0208@1978/5pr
120    "JIS X 0208:1978, 5th impression."
121    '(registry "jisx0208\\.1978"
122               dimension 2
123               chars 94
124               mother =jis-x0208@1978/4-pr
125               =>iso-ir 42
126               ;; final ?@
127               graphic 0
128               partial t))
129   (define-charset-alias '=jis-x0208@1978/i1 '=jis-x0208@1978/1pr)
130   (define-charset-alias '=jis-x0208@1978/i-4 '=jis-x0208@1978/-4pr)
131   (define-charset-alias '=jis-x0208@1978/i4- '=jis-x0208@1978/4-pr)
132   )
133  (t
134   (make-charset
135    '=jis-x0208@1978
136    "JIS X0208:1978 Japanese Kanji (so called \"old JIS\")."
137    '(iso-ir 42
138             registry "jisx0208\\.1978"
139             dimension 2
140             chars 94
141             mother =jis-x0208
142             final ?@
143             graphic 0))
144   ))
145
146 (define-charset-alias '=jis-x0208-1978          '=jis-x0208@1978)
147 (define-charset-alias 'japanese-jisx0208-1978   '=jis-x0208@1978)
148 (define-charset-alias 'chinese-gb2312           '=gb2312)
149 (define-charset-alias '=jis-x0208-1983          '=jis-x0208@1983)
150 (define-charset-alias 'japanese-jisx0208        '=jis-x0208@1983)
151 (define-charset-alias 'korean-ksc5601           '=ks-x1001)
152 (define-charset-alias 'japanese-jisx0212        '=jis-x0212)
153 (define-charset-alias 'chinese-cns11643-1       '=cns11643-1)
154 (define-charset-alias 'chinese-cns11643-2       '=cns11643-2)
155 (define-charset-alias 'chinese-gb12345          '=gb12345)
156 (define-charset-alias 'chinese-big5             '=big5)
157
158 ;; PinYin-ZhuYin
159 (make-charset 'sisheng "PinYin-ZhuYin"
160               '(registry "sisheng_cwnn\\|OMRON_UDC_ZH"
161                 dimension 1
162                 chars 94
163                 final ?0
164                 graphic 0
165                 ))
166
167 ;; Lao script.
168 ;; ISO10646's 0x0E80..0x0EDF are mapped to 0x20..0x7F.
169 (make-charset 'lao "Lao script"
170               '(registry "MuleLao-1"
171                 dimension 1
172                 chars 94
173                 final ?1
174                 graphic 1))
175
176 ;; IPA (International Phonetic Alphabet)
177 (make-charset 'ipa "International Phonetic Alphabet"
178               '(registry "MuleIPA"
179                 dimension 1
180                 chars 96
181                 final ?0
182                 graphic 1))
183
184 ;; Ethiopic
185 (make-charset 'ethiopic "Ethiopic"
186               '(registry "Ethio"
187                 dimension 2
188                 chars 94
189                 final ?3
190                 graphic 0
191                 ))
192
193 ;; ISO-IR-165 (CCITT Extended GB)
194 ;;    It is based on CCITT Recommendation T.101, includes GB 2312-80 +
195 ;;    GB 8565-88 table A4 + 293 characters.
196 (if (featurep 'utf-2000)
197     (progn
198       (make-charset '=iso-ir165
199                     "ISO-IR-165 (CCITT Extended GB; Chinese simplified)"
200                     '(iso-ir 165
201                              dimension 2
202                              chars 94
203                              mother =gb2312
204                              final ?E
205                              registry "isoir165"
206                              graphic 0))
207       (define-charset-alias 'chinese-isoir165 '=iso-ir165))
208   (make-charset 'chinese-isoir165
209                 "ISO-IR-165 (CCITT Extended GB; Chinese simplified)"
210                 '(iso-ir 165
211                          dimension 2
212                          chars 94
213                          final ?E
214                          registry "isoir165"
215                          graphic 0)))
216
217 ;; CNS11643 Plane3 thru Plane7
218 ;; These represent more and more obscure Chinese characters.
219 ;; By the time you get to Plane 7, we're talking about characters
220 ;; that appear once in some ancient manuscript and whose meaning
221 ;; is unknown.
222
223 (flet
224     ((make-chinese-cns11643-charset
225       (name iso-ir plane final)
226       (make-charset
227        name (concat "CNS 11643 Plane " plane " (Chinese traditional)")
228        `(iso-ir ,iso-ir
229          registry 
230          ,(concat "CNS11643[.-]\\(.*[.-]\\)?" plane "$")
231          dimension 2
232          chars 94
233          final ,final
234          graphic 0))
235       ))
236   (make-chinese-cns11643-charset '=cns11643-3 183 "3" ?I)
237   (make-chinese-cns11643-charset '=cns11643-4 184 "4" ?J)
238   (make-chinese-cns11643-charset '=cns11643-5 185 "5" ?K)
239   (make-chinese-cns11643-charset '=cns11643-6 186 "6" ?L)
240   (make-chinese-cns11643-charset '=cns11643-7 187 "7" ?M)
241   (define-charset-alias 'chinese-cns11643-3     '=cns11643-3)
242   (define-charset-alias 'chinese-cns11643-4     '=cns11643-4)
243   (define-charset-alias 'chinese-cns11643-5     '=cns11643-5)
244   (define-charset-alias 'chinese-cns11643-6     '=cns11643-6)
245   (define-charset-alias 'chinese-cns11643-7     '=cns11643-7)
246   )
247
248 ;; JIS X 0213:2000
249 (cond
250  ((featurep 'utf-2000)
251   (make-charset
252    '=jis-x0213-1
253    "JIS X 0213 Plain 1 (unchanged part)"
254    '(registry "jisx0213\\(\\.[0-9]+\\)?-1"
255               dimension 2
256               chars 94
257               =>iso-ir 228
258               final ?O
259               graphic 0
260               partial t))
261
262   (make-charset
263    '=jis-x0213-1@2000
264    "JIS X 0213:2000 Plain 1"
265    '(iso-ir 228
266             registry "jisx0213\\(\\.2000\\)-1"
267             dimension 2
268             chars 94
269             mother =jis-x0213-1
270             final ?O
271             graphic 0))
272   (make-charset
273    '=jis-x0213-2
274    "JIS X 0213 Plain 2"
275    '(iso-ir 229
276             registry "jisx0213\\(\\.\\(2000\\|2004\\)\\)?-2"
277             dimension 2
278             chars 94
279             final ?P
280             graphic 0))
281
282   (make-charset
283    '=jis-x0213-1@2004
284    "JIS X 0213:2004 Plain 1"
285    '(iso-ir 233
286             registry "jisx0213\\(\\.2004\\)-1"
287             dimension 2
288             chars 94
289             mother =jis-x0213-1
290             final ?Q
291             graphic 0))
292
293   (define-charset-alias 'japanese-jisx0213-1 '=jis-x0213-1@2000)
294   (define-charset-alias 'japanese-jisx0213-2 '=jis-x0213-2)
295   (define-charset-alias '=jis-x0213-1-2000 '=jis-x0213-1@2000)
296   (define-charset-alias '=jis-x0213-2-2000 '=jis-x0213-2)
297   )
298  (t
299   (make-charset
300    'japanese-jisx0213-1
301    "JIS X 0213:2000 Plain 1"
302    '(registry "jisx0213\\(\\.2000\\)-1"
303               dimension 2
304               chars 94
305               final ?O
306               graphic 0))
307   (make-charset
308    'japanese-jisx0213-2
309    "JIS X 0213:2000 Plain 2"
310    '(registry "jisx0213\\(\\.2000\\)-2"
311               dimension 2
312               chars 94
313               final ?P
314               graphic 0))
315   ))
316
317 (when (featurep 'utf-2000)
318   (define-charset-alias 'ucs '=ucs)
319   (define-charset-alias '=jis-x0208-1990 '=jis-x0208@1990)
320   (define-charset-alias 'japanese-jisx0208-1990 '=jis-x0208@1990)
321
322   (make-charset
323    '=>>>jis-x0208
324    "JIS X 0208 abstract glyph-forms (unchanged part)."
325    '(registry "jisx0208\\.1990"
326               dimension 2
327               chars 94
328               mother =jis-x0208
329               =>iso-ir 168
330               ;; final ?B
331               graphic 0))
332   (make-charset
333    '=>>>jis-x0208@1978
334    "JIS X 0208:1978 abstract glyph-forms."
335    '(registry "jisx0208\\.1978"
336               dimension 2
337               chars 94
338               mother =>>>jis-x0208
339               =>iso-ir 42
340               ;; final ?@
341               graphic 0))
342   (make-charset
343    '=>>>jis-x0208@1983
344    "JIS X 0208:1983 abstract glyph-forms."
345    '(registry "jisx0208\\.1983"
346               dimension 2
347               chars 94
348               mother =>>>jis-x0208
349               =>iso-ir 87
350               graphic 0))
351   (make-charset
352    '=>>>jis-x0208@1990
353    "JIS X 0208:1990 abstract glyph-forms."
354    '(registry "jisx0208\\.1990"
355               dimension 2
356               chars 94
357               mother =>>>jis-x0208
358               =>iso-ir 168
359               ;; final ?B
360               graphic 0))
361   (make-charset
362    '=>>>jis-x0213-1
363    "JIS X 0213 Plain 1 abstract glyph-forms (unchanged part)"
364    '(registry "jisx0213\\(\\.[0-9]+\\)?-1"
365               dimension 2
366               chars 94
367               mother =jis-x0213-1
368               =>iso-ir 228
369               ;; final ?O
370               graphic 0
371               ;; partial t
372               ))
373   (make-charset
374    '=>>>jis-x0213-1@2000
375    "JIS X 0213:2000 Plain 1 abstract glyph-forms"
376    '(registry "jisx0213\\(\\.2000\\)-1"
377               dimension 2
378               chars 94
379               mother =>>>jis-x0213-1
380               =>iso-ir 228
381               ;; final ?O
382               graphic 0
383               ;; partial t
384               ))
385   (make-charset
386    '=>>>jis-x0213-1@2004
387    "JIS X 0213:2004 Plain 1 abstract glyph-forms"
388    '(mother =>>>jis-x0213-1
389             =>iso-ir 233
390             ;; registry "jisx0213\\(\\.2004\\)-1"
391             dimension 2
392             chars 94
393             graphic 0))
394   (make-charset
395    '=>>>jis-x0213-2
396    "JIS X 0213 Plain 2 abstract glyph-forms"
397    '(mother =jis-x0213-2
398             =>iso-ir 229
399             registry "jisx0213\\(\\.\\(2000\\|2004\\)\\)?-2"
400             dimension 2
401             chars 94
402             graphic 0))
403
404   (make-charset
405    '=>>jis-x0208
406    "JIS X 0208 abstract glyphs (unchanged part)."
407    '(registry "jisx0208\\.1990"
408               dimension 2
409               chars 94
410               mother =>>>jis-x0208
411               =>iso-ir 168
412               ;; final ?B
413               graphic 0))
414   (make-charset
415    '=>>jis-x0208@1978
416    "JIS X 0208:1978 abstract glyphs."
417    '(registry "jisx0208\\.1978"
418               dimension 2
419               chars 94
420               mother =>>jis-x0208
421               =>iso-ir 42
422               ;; final ?@
423               graphic 0))
424   (make-charset
425    '=>>jis-x0208@1983
426    "JIS X 0208:1983 abstract glyphs."
427    '(registry "jisx0208\\.1983"
428               dimension 2
429               chars 94
430               mother =>>jis-x0208
431               =>iso-ir 87
432               graphic 0))
433   (make-charset
434    '=>>jis-x0208@1990
435    "JIS X 0208:1990 abstract glyphs."
436    '(registry "jisx0208\\.1990"
437               dimension 2
438               chars 94
439               mother =>>jis-x0208
440               =>iso-ir 168
441               graphic 0))
442
443   (make-charset
444    '=>>jis-x0213-1
445    "JIS X 0213 Plain 1 abstract glyphs (unchanged part)"
446    '(registry "jisx0213\\(\\.[0-9]+\\)?-1"
447               dimension 2
448               chars 94
449               mother =>>>jis-x0213-1
450               =>iso-ir 228
451               ;; final ?O
452               graphic 0
453               ;; partial t
454               ))
455   (make-charset
456    '=>>jis-x0213-1@2000
457    "JIS X 0213:2000 Plain 1 abstract glyphs"
458    '(registry "jisx0213\\(\\.2000\\)-1"
459               dimension 2
460               chars 94
461               mother =>>jis-x0213-1
462               =>iso-ir 228
463               ;; final ?O
464               graphic 0
465               ;; partial t
466               ))
467   (make-charset
468    '=>>jis-x0213-2
469    "JIS X 0213 Plain 2 abstract glyphs"
470    '(registry "jisx0213\\(\\.\\(2000\\|2004\\)\\)?-2"
471               dimension 2
472               chars 94
473               mother =>>>jis-x0213-2
474               =>iso-ir 229
475               ;; final ?P
476               graphic 0))
477   (make-charset
478    '=>>jis-x0213-1@2004
479    "JIS X 0213:2004 Plain 1 abstract glyphs"
480    '(registry "jisx0213\\(\\.2004\\)-1"
481               dimension 2
482               chars 94
483               mother =>>jis-x0213-1
484               =>iso-ir 233
485               ;; final ?Q
486               graphic 0
487               ;; partial t
488               ))
489
490   (make-charset
491    '=+>jis-x0208
492    "JIS X 0208 based on usual unification."
493    '(registry "jisx0208\\.1990"
494               dimension 2
495               chars 94
496               mother =>>jis-x0208
497               =>iso-ir 168
498               ;; final ?B
499               graphic 0))
500   (define-charset-alias '=>jis-x0208@usual '=+>jis-x0208)
501   (make-charset
502    '=+>jis-x0208@1978
503    "JIS X 0208:1978 unified abstract glyphs."
504    '(registry "jisx0208\\.1978"
505               dimension 2
506               chars 94
507               mother =+>jis-x0208
508               =>iso-ir 42
509               ;; final ?@
510               graphic 0))
511   (make-charset
512    '=+>jis-x0208@1983
513    "JIS X 0208:1983 unified abstract glyphs."
514    '(registry "jisx0208\\.1983"
515               dimension 2
516               chars 94
517               mother =+>jis-x0208
518               =>iso-ir 87
519               graphic 0))
520   (make-charset
521    '=+>jis-x0208@1990
522    "JIS X 0208:1990 unified abstract glyphs."
523    '(registry "jisx0208\\.1990"
524               dimension 2
525               chars 94
526               mother =+>jis-x0208
527               =>iso-ir 168
528               graphic 0))
529   (make-charset
530    '=+>jis-x0213-1
531    "JIS X 0213 Plain 1 unified abstract glyphs (unchanged part)"
532    '(registry "jisx0213\\(\\.[0-9]+\\)?-1"
533               dimension 2
534               chars 94
535               mother =>>jis-x0213-1
536               =>iso-ir 228
537               ;; final ?O
538               graphic 0
539               ;; partial t
540               ))
541   (make-charset
542    '=+>jis-x0213-1@2000
543    "JIS X 0213:2000 Plain 1 unified abstract glyphs"
544    '(registry "jisx0213\\(\\.2000\\)-1"
545               dimension 2
546               chars 94
547               mother =+>jis-x0213-1
548               =>iso-ir 228
549               ;; final ?O
550               graphic 0
551               ;; partial t
552               ))
553
554   (make-charset
555    '=>jis-x0208
556    "JIS X 0208 based on the unchanged unification rules."
557    '(registry "jisx0208\\.1990"
558               dimension 2
559               chars 94
560               mother =+>jis-x0208
561               =>iso-ir 168
562               ;; final ?B
563               graphic 0))
564   (define-charset-alias '<=>jis-x0208 '=>jis-x0208)
565   (make-charset
566    '=>jis-x0208@1997
567    "JIS X 0208 based on the unification rule of 1997 edition."
568    '(registry "jisx0208\\.1990"
569               dimension 2
570               chars 94
571               mother =>jis-x0208
572               =>iso-ir 168
573               ;; final ?B
574               graphic 0))
575   (define-charset-alias '<=>jis-x0208@1997 '=>jis-x0208@1997)
576   (define-charset-alias '  =jis-x0208@1997 '=>jis-x0208@1997)
577
578   (make-charset
579    '=>jis-x0213-1
580    "JIS X 0213 Plain 1 abstract characters (unchanged part)"
581    '(registry "jisx0213\\(\\.[0-9]+\\)?-1"
582               dimension 2
583               chars 94
584               mother =+>jis-x0213-1
585               =>iso-ir 228
586               ;; final ?O
587               graphic 0
588               ;; partial t
589               ))
590   (define-charset-alias '<=>jis-x0213-1 '=>jis-x0213-1)
591   (make-charset
592    '=>jis-x0213-1@2000
593    "JIS X 0213:2000 Plain 1 abstract characters"
594    '(registry "jisx0213\\(\\.2000\\)-1"
595               dimension 2
596               chars 94
597               mother =>jis-x0213-1
598               =>iso-ir 228
599               ;; final ?O
600               graphic 0
601               ;; partial t
602               ))
603   (define-charset-alias '<=>jis-x0213-1@2000 '=>jis-x0213-1@2000)
604   (make-charset
605    '=>jis-x0213-1@2004
606    "JIS X 0213:2004 Plain 1 abstract characters"
607    '(registry "jisx0213\\(\\.2004\\)-1"
608               dimension 2
609               chars 94
610               mother =>jis-x0213-1
611               =>iso-ir 233
612               ;; final ?Q
613               graphic 0
614               ;; partial t
615               ))
616   (define-charset-alias '<=>jis-x0213-1@2004 '=>jis-x0213-1@2004)
617   (make-charset
618    '=+>jis-x0213-2
619    "JIS X 0213 Plain 2 based on usual unification."
620    '(registry "jisx0213\\(\\.\\(2000\\|2004\\)\\)?-2"
621               dimension 2
622               chars 94
623               mother =>>jis-x0213-2
624               =>iso-ir 229
625               ;; final ?P
626               graphic 0))
627   (define-charset-alias '=>jis-x0213-2@usual '=+>jis-x0213-2)
628   (make-charset
629    '=>jis-x0213-2
630    "JIS X 0213 Plain 2 abstract characters"
631    '(registry "jisx0213\\(\\.\\(2000\\|2004\\)\\)?-2"
632               dimension 2
633               chars 94
634               mother =+>jis-x0213-2
635               =>iso-ir 229
636               ;; final ?P
637               graphic 0))
638
639   (make-charset
640    '=>>cns11643-4
641    "CNS 11643 Plane 4 abstract glyphs."
642    '(registry "CNS11643[.-]\\(.*[.-]\\)?4$"
643               dimension 2
644               chars 94
645               mother =cns11643-4
646               =>iso-ir 184
647               graphic 0))
648
649   (make-charset
650    '=>cns11643-2
651    "CNS 11643 Plane 2 abstract characters."
652    '(registry "CNS11643[.-]\\(.*[.-]\\)?2$"
653               dimension 2
654               chars 94
655               mother =cns11643-2
656               =>iso-ir 172
657               graphic 0))
658   (make-charset
659    '=>cns11643-7
660    "CNS 11643 Plane 7 abstract characters."
661    '(registry "CNS11643[.-]\\(.*[.-]\\)?7$"
662               dimension 2
663               chars 94
664               mother =cns11643-7
665               =>iso-ir 187
666               graphic 0))
667
668   (make-charset '=big5-eten
669                 "Big5 ETEN"
670                 '(long-name     "Big5-ETEN"
671                   chars         256
672                   dimension     2
673                   columns       2
674                   graphic       2
675                   direction     l2r
676                   mother        chinese-big5
677                   min-code      #x8140
678                   max-code      #xFEFE
679                   registry      "Big5\\.ETEN"))
680   (define-charset-alias 'chinese-big5-eten '=big5-eten)
681   (make-charset 'chinese-big5-eten-a
682                 "Big5 ETEN (#xF9D6 .. #xF9FE)"
683                 '(long-name     "Big5-ETEN-a"
684                   chars         256
685                   dimension     2
686                   columns       2
687                   graphic       2
688                   direction     l2r
689                   mother        chinese-big5
690                   min-code      #xF9D6
691                   max-code      #xF9FE
692                   registry      "Big5\\.ETEN"))
693   (make-charset 'chinese-big5-eten-b
694                 "Big5 ETEN (#xC6A1 .. #xC8FE)"
695                 '(long-name     "Big5-ETEN-b"
696                   chars         256
697                   dimension     2
698                   columns       2
699                   graphic       2
700                   direction     l2r
701                   mother        chinese-big5
702                   min-code      #xC6A1
703                   max-code      #xC8FE
704                   registry      "Big5\\.ETEN"))
705
706   (make-charset
707    '=adobe-japan1-base
708    "Adobe-Japan1 Character Collection for CID-Keyed Fonts"
709    `(long-name "Adobe-Japan1"
710                chars 256
711                dimension 2
712                columns 2
713                graphic 2
714                direction l2r
715                registry "AdobeJapan1-[0-6]$"
716                min-code ,(lsh #x6300 16)
717                max-code ,(+ (lsh #x6300 16) 23057)
718                code-offset      ,(lsh #x6300 16)))
719   (make-charset
720    '=adobe-japan1-0
721    "Adobe-Japan1-0 Character Collection for CID-Keyed Fonts"
722    '(long-name "Adobe-Japan1-0"
723                chars 256
724                dimension 2
725                columns 2
726                graphic 2
727                direction l2r
728                mother =adobe-japan1-base
729                min-code 0
730                max-code 8283
731                registry "AdobeJapan1-0$"))
732   (make-charset
733    '=adobe-japan1-1
734    "Adobe-Japan1-1 Character Collection for CID-Keyed Fonts"
735    '(long-name "Adobe-Japan1-1"
736                chars 256
737                dimension 2
738                columns 2
739                graphic 2
740                direction l2r
741                mother =adobe-japan1-0
742                min-code 0
743                max-code 8358
744                registry "AdobeJapan1-1$"))
745   (make-charset
746    '=adobe-japan1-2
747    "Adobe-Japan1-2 Character Collection for CID-Keyed Fonts"
748    '(long-name "Adobe-Japan1-2"
749                chars 256
750                dimension 2
751                columns 2
752                graphic 2
753                direction l2r
754                mother =adobe-japan1-1
755                min-code 0
756                max-code 8719
757                registry "AdobeJapan1-2$"))
758   (make-charset
759    '=adobe-japan1-3
760    "Adobe-Japan1-3 Character Collection for CID-Keyed Fonts"
761    '(long-name "Adobe-Japan1-3"
762                chars 256
763                dimension 2
764                columns 2
765                graphic 2
766                direction l2r
767                mother =adobe-japan1-2
768                min-code 0
769                max-code 9353
770                registry "AdobeJapan1-3$"))
771   (make-charset
772    '=adobe-japan1-4
773    "Adobe-Japan1-4 Character Collection for CID-Keyed Fonts"
774    '(long-name "Adobe-Japan1-4"
775                chars 256
776                dimension 2
777                columns 2
778                graphic 2
779                direction l2r
780                mother =adobe-japan1-3
781                min-code 0
782                max-code 15443
783                registry "AdobeJapan1-4$"))
784   (make-charset
785    '=adobe-japan1-5
786    "Adobe-Japan1-5 Character Collection for CID-Keyed Fonts"
787    '(long-name "Adobe-Japan1-5"
788                chars 256
789                dimension 2
790                columns 2
791                graphic 2
792                direction l2r
793                mother =adobe-japan1-4
794                min-code 0
795                max-code 20316
796                registry "AdobeJapan1-5$"))
797   (make-charset
798    '=adobe-japan1-6
799    "Adobe-Japan1-6 Character Collection for CID-Keyed Fonts"
800    '(long-name "Adobe-Japan1-6"
801                chars 256
802                dimension 2
803                columns 2
804                graphic 2
805                direction l2r
806                mother =adobe-japan1-5
807                min-code 0
808                max-code 23057
809                registry "AdobeJapan1-6$"))
810   (define-charset-alias '=adobe-japan1 '=adobe-japan1-6)
811
812   (make-charset
813    '=>>>adobe-japan1-0
814    "Adobe-Japan1-0 abstract glyph-forms"
815    '(long-name "Adobe-Japan1-0 abstract glyph-forms"
816                chars 256
817                dimension 2
818                columns 2
819                graphic 2
820                direction l2r
821                mother =adobe-japan1-0
822                registry "AdobeJapan1-0$"))
823   (make-charset
824    '=>>>adobe-japan1-1
825    "Adobe-Japan1-1 abstract glyph-forms"
826    '(long-name "Adobe-Japan1-1 abstract glyph-forms"
827                chars 256
828                dimension 2
829                columns 2
830                graphic 2
831                direction l2r
832                mother =>>>adobe-japan1-0
833                registry "AdobeJapan1-1$"))
834   (make-charset
835    '=>>>adobe-japan1-2
836    "Adobe-Japan1-2 abstract glyph-forms"
837    '(long-name "Adobe-Japan1-2 abstract glyph-forms"
838                chars 256
839                dimension 2
840                columns 2
841                graphic 2
842                direction l2r
843                mother =>>>adobe-japan1-1
844                registry "AdobeJapan1-2$"))
845   (make-charset
846    '=>>>adobe-japan1-3
847    "Adobe-Japan1-3 abstract glyph-forms"
848    '(long-name "Adobe-Japan1-3 abstract glyph-forms"
849                chars 256
850                dimension 2
851                columns 2
852                graphic 2
853                direction l2r
854                mother =>>>adobe-japan1-2
855                registry "AdobeJapan1-3$"))
856   (make-charset
857    '=>>>adobe-japan1-4
858    "Adobe-Japan1-4 abstract glyph-forms"
859    '(long-name "Adobe-Japan1-4 abstract glyph-forms"
860                chars 256
861                dimension 2
862                columns 2
863                graphic 2
864                direction l2r
865                mother =>>>adobe-japan1-3
866                registry "AdobeJapan1-4$"))
867   (make-charset
868    '=>>>adobe-japan1-5
869    "Adobe-Japan1-5 abstract glyph-forms"
870    '(long-name "Adobe-Japan1-5 abstract glyph-forms"
871                chars 256
872                dimension 2
873                columns 2
874                graphic 2
875                direction l2r
876                mother =>>>adobe-japan1-4
877                registry "AdobeJapan1-5$"))
878   (make-charset
879    '=>>>adobe-japan1-6
880    "Adobe-Japan1-6 abstract glyph-forms"
881    '(long-name "Adobe-Japan1-6 abstract glyph-forms"
882                chars 256
883                dimension 2
884                columns 2
885                graphic 2
886                direction l2r
887                mother =>>>adobe-japan1-5
888                registry "AdobeJapan1-6$"))
889   (define-charset-alias '=>>>adobe-japan1 '=>>>adobe-japan1-6)
890
891   (make-charset
892    '=>>adobe-japan1-0
893    "Adobe-Japan1-0 abstract glyphs"
894    '(long-name "Adobe-Japan1-0 abstract glyphs"
895                chars 256
896                dimension 2
897                columns 2
898                graphic 2
899                direction l2r
900                mother =>>>adobe-japan1
901                registry "AdobeJapan1-0$"))
902   (make-charset
903    '=>>adobe-japan1-1
904    "Adobe-Japan1-1 abstract glyphs"
905    '(long-name "Adobe-Japan1-1 abstract glyphs"
906                chars 256
907                dimension 2
908                columns 2
909                graphic 2
910                direction l2r
911                mother =>>adobe-japan1-0
912                registry "AdobeJapan1-1"))
913   (make-charset
914    '=>>adobe-japan1-2
915    "Adobe-Japan1-2 abstract glyphs"
916    '(long-name "Adobe-Japan1-2 abstract glyphs"
917                chars 256
918                dimension 2
919                columns 2
920                graphic 2
921                direction l2r
922                mother =>>adobe-japan1-1
923                registry "AdobeJapan1-2"))
924   (make-charset
925    '=>>adobe-japan1-3
926    "Adobe-Japan1-3 abstract glyphs"
927    '(long-name "Adobe-Japan1-3 abstract glyphs"
928                chars 256
929                dimension 2
930                columns 2
931                graphic 2
932                direction l2r
933                mother =>>adobe-japan1-2
934                registry "AdobeJapan1-3"))
935   (make-charset
936    '=>>adobe-japan1-4
937    "Adobe-Japan1-4 abstract glyphs"
938    '(long-name "Adobe-Japan1-4 abstract glyphs"
939                chars 256
940                dimension 2
941                columns 2
942                graphic 2
943                direction l2r
944                mother =>>adobe-japan1-3
945                registry "AdobeJapan1-4"))
946   (make-charset
947    '=>>adobe-japan1-5
948    "Adobe-Japan1-5 abstract glyphs"
949    '(long-name "Adobe-Japan1-5 abstract glyphs"
950                chars 256
951                dimension 2
952                columns 2
953                graphic 2
954                direction l2r
955                mother =>>adobe-japan1-4
956                registry "AdobeJapan1-5"))
957   (make-charset
958    '=>>adobe-japan1-6
959    "Adobe-Japan1-6 abstract glyphs"
960    '(long-name "Adobe-Japan1-6 abstract glyphs"
961                chars 256
962                dimension 2
963                columns 2
964                graphic 2
965                direction l2r
966                mother =>>adobe-japan1-5
967                registry "AdobeJapan1-6"))
968   (define-charset-alias '=>>adobe-japan1 '=>>adobe-japan1-6)
969
970   (make-charset
971    '=+>adobe-japan1
972    "Adobe-Japan1 unified abstract glyphs"
973    '(long-name "Adobe-Japan1 unified abstract glyphs"
974                chars 256
975                dimension 2
976                columns 2
977                graphic 2
978                direction l2r
979                mother =>>adobe-japan1
980                registry "AdobeJapan1-6$"))
981
982   (make-charset '=big5-cdp
983                 "Big5 with CDP extension"
984                 '(long-name     "Big5-CDP"
985                   chars         256
986                   dimension     2
987                   columns       2
988                   graphic       2
989                   direction     l2r
990                   registry      "big5\\.cdp-0"
991                   mother        chinese-big5
992                   min-code      #x8140
993                   max-code      #x8DFE))
994   (define-charset-alias 'chinese-big5-cdp '=big5-cdp)
995
996   (make-charset '=>>big5-cdp
997                 "Abstract glyphs of Big5-CDP"
998                 '(long-name     "Big5-CDP glyphs"
999                   chars         256
1000                   dimension     2
1001                   columns       2
1002                   graphic       2
1003                   direction     l2r
1004                   registry      "big5\\.cdp-0"
1005                   mother        =big5-cdp))
1006
1007   (make-charset '=>big5-cdp
1008                 "Big5-CDP abstract characters"
1009                 '(long-name     "Big5-CDP abstract characters"
1010                   chars         256
1011                   dimension     2
1012                   columns       2
1013                   graphic       2
1014                   direction     l2r
1015                   registry      "big5\\.cdp-0"
1016                   mother        =>>big5-cdp))
1017
1018   (make-charset
1019    '=hanyo-denshi/ja
1020    "JA (JIS X0208) part of Han'you-Denshi characters"
1021    `(long-name "Han'you-Denshi/JA"
1022                chars 94
1023                dimension 2
1024                columns 2
1025                graphic 2
1026                direction l2r
1027                registry "HanyoDenshi\\.JA-0$"
1028                min-code ,(lsh #x6400 16)
1029                max-code ,(+ (lsh #x6400 16) (1- (* 94 94)))
1030                code-offset ,(lsh #x6400 16)))
1031   (make-charset
1032    '=hanyo-denshi/jb
1033    "JB (JIS X0212) part of Han'you-Denshi characters"
1034    `(long-name "Han'you-Denshi/JB"
1035                chars 94
1036                dimension 2
1037                columns 2
1038                graphic 2
1039                direction l2r
1040                registry "HanyoDenshi\\.JB-0$"
1041                min-code    ,(+ (lsh #x6400 16) (* 94 94))
1042                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 2)))
1043                code-offset ,(+ (lsh #x6400 16) (* 94 94))))
1044   (make-charset
1045    '=hanyo-denshi/jc
1046    "JC (JIS X0213:2000 Plane 1) part of Han'you-Denshi characters"
1047    `(long-name "Han'you-Denshi/JC"
1048                chars 94
1049                dimension 2
1050                columns 2
1051                graphic 2
1052                direction l2r
1053                registry "HanyoDenshi\\.JC-0$"
1054                min-code    ,(+ (lsh #x6400 16) (* 94 94 2))
1055                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 3)))
1056                code-offset ,(+ (lsh #x6400 16) (* 94 94 2))))
1057   (make-charset
1058    '=hanyo-denshi/jd
1059    "JD (JIS X0213:2000 Plane 1) part of Han'you-Denshi characters"
1060    `(long-name "Han'you-Denshi/JD"
1061                chars 94
1062                dimension 2
1063                columns 2
1064                graphic 2
1065                direction l2r
1066                registry "HanyoDenshi\\.JD-0$"
1067                min-code    ,(+ (lsh #x6400 16) (* 94 94 3))
1068                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 4)))
1069                code-offset ,(+ (lsh #x6400 16) (* 94 94 3))))
1070   (make-charset
1071    '=hanyo-denshi/ft
1072    "FT (FDPC additional) part of Han'you-Denshi characters"
1073    `(long-name "Han'you-Denshi/FT"
1074                chars 94
1075                dimension 2
1076                columns 2
1077                graphic 2
1078                direction l2r
1079                registry "HanyoDenshi\\.FT-0$"
1080                min-code    ,(+ (lsh #x6400 16) (* 94 94 4))
1081                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 5)))
1082                code-offset ,(+ (lsh #x6400 16) (* 94 94 4))))
1083   (make-charset
1084    '=hanyo-denshi/ia
1085    "IA part of Han'you-Denshi characters"
1086    `(long-name "Han'you-Denshi/IA"
1087                chars 94
1088                dimension 2
1089                columns 2
1090                graphic 2
1091                direction l2r
1092                registry "HanyoDenshi\\.IA-0$"
1093                min-code    ,(+ (lsh #x6400 16) (* 94 94 5))
1094                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 6)))
1095                code-offset ,(+ (lsh #x6400 16) (* 94 94 5))))
1096   (make-charset
1097    '=hanyo-denshi/ib
1098    "IB part of Han'you-Denshi characters"
1099    `(long-name "Han'you-Denshi/IB"
1100                chars 94
1101                dimension 2
1102                columns 2
1103                graphic 2
1104                direction l2r
1105                registry "HanyoDenshi\\.IB-0$"
1106                min-code    ,(+ (lsh #x6400 16) (* 94 94 6))
1107                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 7)))
1108                code-offset ,(+ (lsh #x6400 16) (* 94 94 6))))
1109   (make-charset
1110    '=hanyo-denshi/hg
1111    "HG (HyouGai Kanji) part of Han'you-Denshi characters"
1112    `(long-name "Han'you-Denshi/HG"
1113                chars 94
1114                dimension 2
1115                columns 2
1116                graphic 2
1117                direction l2r
1118                registry "HanyoDenshi\\.HG-0$"
1119                min-code    ,(+ (lsh #x6400 16) (* 94 94 7))
1120                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 8)))
1121                code-offset ,(+ (lsh #x6400 16) (* 94 94 7))))
1122   (make-charset
1123    '=hanyo-denshi/ip
1124    "IP (for IPA) part of Han'you-Denshi characters"
1125    `(long-name "Han'you-Denshi/IP"
1126                chars 256
1127                dimension 2
1128                columns 2
1129                graphic 2
1130                direction l2r
1131                registry "HanyoDenshi\\.IP-0$"
1132                min-code    ,(+ (lsh #x6402 16) #x4E00)
1133                max-code    ,(+ (lsh #x6402 16) #x9FFF)
1134                code-offset ,(+ (lsh #x6402 16))))
1135   (make-charset
1136    '=hanyo-denshi/jt
1137    "JT (Juuki Touitsu Moji) part of Han'you-Denshi characters"
1138    `(long-name "Han'you-Denshi/JT"
1139                chars 256
1140                dimension 2
1141                columns 2
1142                graphic 2
1143                direction l2r
1144                registry "HanyoDenshi\\.JT-0$"
1145                min-code    ,(+ (lsh #x6402 16) #xAC00)
1146                max-code    ,(+ (lsh #x6402 16) #xD7AF)
1147                code-offset ,(+ (lsh #x6402 16))))
1148   (make-charset
1149    '=hanyo-denshi/ks
1150    "KS (KoSeki) part of Han'you-Denshi characters"
1151    `(long-name "Han'you-Denshi/KS font encoding"
1152                chars 256
1153                dimension 3
1154                columns 2
1155                graphic 2
1156                direction l2r))
1157   (make-charset
1158    '=hanyo-denshi/ks/mf
1159    "font encoding for KS (KoSeki) characters"
1160    `(long-name "Han'you-Denshi/KS font encoding"
1161                chars 256
1162                dimension 2
1163                columns 2
1164                graphic 2
1165                direction l2r
1166                registry "HanyoDenshi\\.KSMF-0$"
1167                min-code       ,(lsh #x6403 16)
1168                max-code    ,(+ (lsh #x6403 16) #xFFFF)
1169                code-offset    ,(lsh #x6403 16)))
1170
1171   (make-charset
1172    '=>>>hanyo-denshi/ja
1173    "Han'you-Denshi/JA abstract glyph-forms"
1174    '(long-name "Han'you-Denshi/JA glyph-forms"
1175                chars 94
1176                dimension 2
1177                columns 2
1178                graphic 2
1179                direction l2r
1180                registry "HanyoDenshi\\.JA-0$"
1181                mother =hanyo-denshi/ja))
1182   (make-charset
1183    '=>>>hanyo-denshi/jb
1184    "Han'you-Denshi/JB abstract glyph-forms"
1185    '(long-name "Han'you-Denshi/JB glyph-forms"
1186                chars 94
1187                dimension 2
1188                columns 2
1189                graphic 2
1190                direction l2r
1191                registry "HanyoDenshi\\.JB-0$"
1192                mother =hanyo-denshi/jb))
1193   (make-charset
1194    '=>>>hanyo-denshi/jc
1195    "Han'you-Denshi/JC abstract glyph-forms"
1196    '(long-name "Han'you-Denshi/JC glyph-forms"
1197                chars 94
1198                dimension 2
1199                columns 2
1200                graphic 2
1201                direction l2r
1202                registry "HanyoDenshi\\.JC-0$"
1203                mother =hanyo-denshi/jc))
1204   (make-charset
1205    '=>>>hanyo-denshi/ft
1206    "Han'you-Denshi/FT abstract glyph-forms"
1207    '(long-name "Han'you-Denshi/FT glyph-forms"
1208                chars 94
1209                dimension 2
1210                columns 2
1211                graphic 2
1212                direction l2r
1213                registry "HanyoDenshi\\.FT-0$"
1214                mother =hanyo-denshi/ft))
1215   (make-charset
1216    '=>>>hanyo-denshi/ib
1217    "Han'you-Denshi/IB abstract glyph-forms"
1218    '(long-name "Han'you-Denshi/IB glyph-forms"
1219                chars 94
1220                dimension 2
1221                columns 2
1222                graphic 2
1223                direction l2r
1224                registry "HanyoDenshi\\.IB-0$"
1225                mother =hanyo-denshi/ib))
1226   (make-charset
1227    '=>>>hanyo-denshi/hg
1228    "Han'you-Denshi/HG abstract glyph-forms"
1229    '(long-name "Han'you-Denshi/HG glyph-forms"
1230                chars 94
1231                dimension 2
1232                columns 2
1233                graphic 2
1234                direction l2r
1235                registry "HanyoDenshi\\.HG-0$"
1236                mother =hanyo-denshi/hg))
1237   (make-charset
1238    '=>>>hanyo-denshi/jt
1239    "JT (Juuki Touitsu Moji) abstract glyph-forms"
1240    '(long-name "Han'you-Denshi/JT glyph-forms"
1241                chars 256
1242                dimension 2
1243                columns 2
1244                graphic 2
1245                direction l2r
1246                registry "HanyoDenshi\\.JT-0$"
1247                mother =hanyo-denshi/jt))
1248   (make-charset
1249    '=>>>hanyo-denshi/ks
1250    "KoSeki-touitsu-moji abstract glyph-forms"
1251    '(long-name "Han'you-Denshi/KS glyph-forms"
1252                chars 256
1253                dimension 3
1254                columns 2
1255                graphic 2
1256                direction l2r
1257                mother =hanyo-denshi/ks))
1258
1259   (make-charset
1260    '=>>hanyo-denshi/ja
1261    "Han'you-Denshi/JA abstract glyphs"
1262    '(long-name "Han'you-Denshi/JA glyphs"
1263                chars 94
1264                dimension 2
1265                columns 2
1266                graphic 2
1267                direction l2r
1268                registry "HanyoDenshi\\.JA-0$"
1269                mother =>>>hanyo-denshi/ja))
1270   (make-charset
1271    '=>>hanyo-denshi/jb
1272    "Han'you-Denshi/JB abstract glyphs"
1273    '(long-name "Han'you-Denshi/JB glyphs"
1274                chars 94
1275                dimension 2
1276                columns 2
1277                graphic 2
1278                direction l2r
1279                registry "HanyoDenshi\\.JB-0$"
1280                mother =>>>hanyo-denshi/jb))
1281   (make-charset
1282    '=>>hanyo-denshi/jc
1283    "Han'you-Denshi/JC abstract glyphs"
1284    '(long-name "Han'you-Denshi/JC glyphs"
1285                chars 94
1286                dimension 2
1287                columns 2
1288                graphic 2
1289                direction l2r
1290                registry "HanyoDenshi\\.JC-0$"
1291                mother =>>>hanyo-denshi/jc))
1292   (make-charset
1293    '=>>hanyo-denshi/jd
1294    "Han'you-Denshi/JD abstract glyphs"
1295    '(long-name "Han'you-Denshi/JD glyphs"
1296                chars 94
1297                dimension 2
1298                columns 2
1299                graphic 2
1300                direction l2r
1301                registry "HanyoDenshi\\.JD-0$"
1302                mother =hanyo-denshi/jd))
1303   (make-charset
1304    '=>>hanyo-denshi/ft
1305    "Han'you-Denshi/FT abstract glyphs"
1306    '(long-name "Han'you-Denshi/FT glyphs"
1307                chars 94
1308                dimension 2
1309                columns 2
1310                graphic 2
1311                direction l2r
1312                registry "HanyoDenshi\\.FT-0$"
1313                mother =>>>hanyo-denshi/ft))
1314   (make-charset
1315    '=>>hanyo-denshi/ia
1316    "Han'you-Denshi/IA abstract glyphs"
1317    '(long-name "Han'you-Denshi/IA glyphs"
1318                chars 94
1319                dimension 2
1320                columns 2
1321                graphic 2
1322                direction l2r
1323                registry "HanyoDenshi\\.IA-0$"
1324                mother =hanyo-denshi/ia))
1325   (make-charset
1326    '=>>hanyo-denshi/ib
1327    "Han'you-Denshi/IB abstract glyphs"
1328    '(long-name "Han'you-Denshi/IB abstract glyphs"
1329                chars 94
1330                dimension 2
1331                columns 2
1332                graphic 2
1333                direction l2r
1334                registry "HanyoDenshi\\.IB-0$"
1335                mother =>>>hanyo-denshi/ib))
1336   (make-charset
1337    '=>>hanyo-denshi/hg
1338    "Han'you-Denshi/HG abstract glyphs"
1339    '(long-name "Han'you-Denshi/HG abstract glyphs"
1340                chars 94
1341                dimension 2
1342                columns 2
1343                graphic 2
1344                direction l2r
1345                registry "HanyoDenshi\\.HG-0$"
1346                mother =>>>hanyo-denshi/hg))
1347   (make-charset
1348    '=>>hanyo-denshi/jt
1349    "JT (Juuki Touitsu Moji) abstract glyphs"
1350    '(long-name "Han'you-Denshi/JT glyphs"
1351                chars 256
1352                dimension 2
1353                columns 2
1354                graphic 2
1355                direction l2r
1356                registry "HanyoDenshi\\.JT-0$"
1357                mother =>>>hanyo-denshi/jt))
1358   (make-charset
1359    '=>>hanyo-denshi/ks
1360    "Han'you-Denshi/KS abstract glyphs"
1361    '(long-name "Han'you-Denshi/KS glyphs"
1362                chars 256
1363                dimension 3
1364                columns 2
1365                graphic 2
1366                direction l2r
1367                mother =>>>hanyo-denshi/ks))
1368
1369   (make-charset '=gt
1370                 "GT 2000"
1371                 `(long-name     "GT"
1372                   chars         256
1373                   dimension     3
1374                   columns       2
1375                   graphic       2
1376                   direction     l2r
1377                   registry      ""
1378                   min-code      ,(lsh #x6100 16)
1379                   max-code      ,(+ (lsh #x6100 16) 67547)
1380                   code-offset   ,(lsh #x6100 16)))
1381   (define-charset-alias 'ideograph-gt '=gt)
1382   (make-charset '=>>>gt
1383                 "GT 2000 abstract glyph-forms"
1384                 '(long-name     "GT abstract glyph-forms"
1385                   chars         256
1386                   dimension     3
1387                   columns       2
1388                   graphic       2
1389                   direction     l2r
1390                   mother        =gt))
1391   (make-charset '=>>gt
1392                 "GT 2000 abstract glyphs"
1393                 '(long-name     "GT abstract glyphs"
1394                   chars         256
1395                   dimension     3
1396                   columns       2
1397                   graphic       2
1398                   direction     l2r
1399                   mother        =>>>gt))
1400   (define-charset-alias '<=>gt '=>>gt)
1401   (define-charset-alias '<==>gt '=>>gt)
1402   (make-charset '=+>gt
1403                 "GT 2000 unified abstract glyphs"
1404                 '(long-name     "Unified abstract GT glyphs"
1405                   chars         256
1406                   dimension     3
1407                   columns       2
1408                   graphic       2
1409                   direction     l2r
1410                   mother        =>>gt))
1411   (make-charset '=>gt
1412                 "GT 2000 abstract characters"
1413                 '(long-name     "abstract GT characters"
1414                   chars         256
1415                   dimension     3
1416                   columns       2
1417                   graphic       2
1418                   direction     l2r
1419                   mother        =+>gt))
1420   (make-charset '=gt-k
1421                 "Ideographic components of GT"
1422                 `(long-name     "GT components"
1423                   chars         256
1424                   dimension     2
1425                   columns       2
1426                   graphic       2
1427                   direction     l2r
1428                   registry      ""
1429                   min-code      ,(lsh #x6110 16)
1430                   max-code      ,(+ (lsh #x6110 16) 17090)
1431                   code-offset   ,(lsh #x6110 16)))
1432   (define-charset-alias 'ideograph-gt-k '=gt-k)
1433   (make-charset '=>>gt-k
1434                 "abstract glyphs of GT-K"
1435                 '(long-name     "GT-K abstract glyphs"
1436                   chars         256
1437                   dimension     2
1438                   columns       2
1439                   graphic       2
1440                   direction     l2r
1441                   mother        =gt-k))
1442   (make-charset '=>gt-k
1443                 "GT-K abstract characters"
1444                 '(long-name     "GT-K abstract characters"
1445                   chars         256
1446                   dimension     2
1447                   columns       2
1448                   graphic       2
1449                   direction     l2r
1450                   mother        =>>gt-k))
1451   (let ((i 1))
1452     (while (<= i 11)
1453       (make-charset
1454        (intern (format "=gt-pj-%d" i))
1455        (format "GT 2000 (pseudo JIS encoding) part %d" i)
1456        `(long-name ,(format "GT PJ %d" i)
1457                    chars 94
1458                    dimension 2
1459                    columns 2
1460                    graphic 0
1461                    direction l2r
1462                    registry ,(format "\\(GTpj-%d\\|jisx0208\\.GT-%d\\)$" i i)))
1463       (define-charset-alias
1464         (intern (format "ideograph-gt-pj-%d" i))
1465         (intern (format "=gt-pj-%d" i)))
1466       (setq i (1+ i))))
1467   (make-charset
1468    '=gt-pj-k1
1469    "Ideographic parts of GT (pseudo JIS encoding) part 1"
1470    '(long-name "GT K1"
1471                chars 94
1472                dimension 2
1473                columns 2
1474                graphic 0
1475                direction l2r
1476                registry "\\(GTKpj-1\\|jisx0208\\.GTK-1\\)$"))
1477   (define-charset-alias 'ideograph-gt-pj-k1 '=gt-pj-k1)
1478   (make-charset
1479    '=gt-pj-k2
1480    "Ideographic parts of GT (pseudo JIS encoding) part 2"
1481    '(long-name "GT K2"
1482                chars 94
1483                dimension 2
1484                columns 2
1485                graphic 0
1486                direction l2r
1487                registry "\\(GTKpj-2\\|jisx0208\\.GTK-2\\)$"))
1488   (define-charset-alias 'ideograph-gt-pj-k2 '=gt-pj-k2)
1489
1490   (make-charset '=daikanwa
1491                 "Daikanwa dictionary (unchanged part)"
1492                 `(long-name     "Daikanwa"
1493                   chars         256
1494                   dimension     2
1495                   columns       2
1496                   graphic       2
1497                   direction     l2r
1498                   registry      "Daikanwa\\(\\.[0-9]+\\)?-3"
1499                   min-code      #xE00000
1500                   max-code      ,(+ #xE00000 50100)
1501                   code-offset   #xE00000))
1502   (define-charset-alias 'ideograph-daikanwa '=daikanwa)
1503
1504   (make-charset '=daikanwa@rev1
1505                 "Daikanwa dictionary (revised version)"
1506                 '(long-name     "Daikanwa Rev."
1507                   chars         256
1508                   dimension     2
1509                   columns       2
1510                   graphic       2
1511                   direction     l2r
1512                   registry      "Daikanwa\\(\\.[0-9]+\\)?-2"
1513                   mother        =daikanwa))
1514   (define-charset-alias 'ideograph-daikanwa-2 '=daikanwa@rev1)
1515   (define-charset-alias '=daikanwa-rev1 '=daikanwa@rev1)
1516
1517   (make-charset '=daikanwa@rev2
1518                 "Daikanwa dictionary (revised version 2)"
1519                 '(long-name     "Daikanwa"
1520                   chars         256
1521                   dimension     2
1522                   columns       2
1523                   graphic       2
1524                   direction     l2r
1525                   registry      "Daikanwa\\(\\.[0-9]+\\)?-3"
1526                   mother        =daikanwa
1527                   min-code      1
1528                   max-code      49964))
1529   (define-charset-alias '=daikanwa-rev2 '=daikanwa@rev2)
1530
1531   (make-charset '=daikanwa/+p
1532                 "Daikanwa dictionary (ddddd')"
1533                 '(long-name     "Daikanwa ddddd'"
1534                   chars         256
1535                   dimension     2
1536                   columns       2
1537                   graphic       2
1538                   direction     l2r))
1539   (make-charset '=daikanwa/+2p
1540                 "Daikanwa dictionary (ddddd'')"
1541                 '(long-name     "Daikanwa ddddd''"
1542                   chars         256
1543                   dimension     2
1544                   columns       2
1545                   graphic       2
1546                   direction     l2r))
1547   (make-charset '=daikanwa/ho
1548                 "Daikanwa dictionary (Hokan)"
1549                 '(long-name     "Daikanwa-ho"
1550                   chars         256
1551                   dimension     2
1552                   columns       2
1553                   graphic       2
1554                   direction     l2r))
1555
1556   (make-charset '=>>daikanwa
1557                 "Daikanwa abstract glyphs"
1558                 '(long-name     "Daikanwa glyphs"
1559                   chars         256
1560                   dimension     2
1561                   columns       2
1562                   graphic       2
1563                   direction     l2r
1564                   registry      "Daikanwa\\(\\.[0-9]+\\)?-3"
1565                   mother        =daikanwa))
1566   (make-charset '=>>daikanwa/+p
1567                 "Daikanwa abstract glyphs (ddddd')"
1568                 '(long-name     "Daikanwa glyphs (ddddd')"
1569                   chars         256
1570                   dimension     2
1571                   columns       2
1572                   graphic       2
1573                   direction     l2r
1574                   mother        =daikanwa/+p))
1575   (make-charset '=>>daikanwa/+2p
1576                 "Daikanwa abstract glyphs (ddddd'')"
1577                 '(long-name     "Daikanwa glyphs (ddddd'')"
1578                   chars         256
1579                   dimension     2
1580                   columns       2
1581                   graphic       2
1582                   direction     l2r
1583                   mother        =daikanwa/+2p))
1584   (make-charset '=>>daikanwa/ho
1585                 "Daikanwa abstract glyphs (Hokan)"
1586                 '(long-name     "Daikanwa-ho glyph"
1587                   chars         256
1588                   dimension     2
1589                   columns       2
1590                   graphic       2
1591                   direction     l2r
1592                   mother        =daikanwa/ho))
1593
1594   (make-charset '=>daikanwa
1595                 "Daikanwa abstract characters"
1596                 '(long-name     "abstract Daikanwa"
1597                   chars         256
1598                   dimension     2
1599                   columns       2
1600                   graphic       2
1601                   direction     l2r
1602                   registry      "Daikanwa\\(\\.[0-9]+\\)?-3"
1603                   mother        =>>daikanwa))
1604   (make-charset '=>daikanwa/ho
1605                 "Daikanwa abstract characters (Hokan)"
1606                 '(long-name     "abstract Daikanwa-ho"
1607                   chars         256
1608                   dimension     2
1609                   columns       2
1610                   graphic       2
1611                   direction     l2r
1612                   mother        =>>daikanwa/ho))
1613
1614   (make-charset '=shinjigen
1615                 "Kadokawa ShinJigen dictionary (common parts)"
1616                 `(long-name     "Shinjigen common parts"
1617                   chars         256
1618                   dimension     2
1619                   columns       2
1620                   graphic       2
1621                   direction     l2r
1622                   registry      "Shinjigen\\(\\.[0-9]+\\)?-*"))
1623
1624   (make-charset '=shinjigen@1ed
1625                 "Kadokawa ShinJigen dictionary (the first edition)"
1626                 `(long-name     "Shinjigen-1"
1627                   chars         256
1628                   dimension     2
1629                   columns       2
1630                   graphic       2
1631                   direction     l2r
1632                   mother        =shinjigen
1633                   registry      "Shinjigen\\(\\.[0-9]+\\)?-1"))
1634   (define-charset-alias 'shinjigen-1 '=shinjigen@1ed)
1635
1636   (make-charset '=shinjigen@1ed/24pr
1637                 "Kadokawa ShinJigen dictionary (the 24th impression)"
1638                 `(long-name     "Shinjigen-1 24pr"
1639                   chars         256
1640                   dimension     2
1641                   columns       2
1642                   graphic       2
1643                   direction     l2r
1644                   mother        =shinjigen@1ed))
1645
1646   (make-charset '=shinjigen@rev
1647                 "Kadokawa ShinJigen dictionary (the revised edition)"
1648                 `(long-name     "Shinjigen-2"
1649                   chars         256
1650                   dimension     2
1651                   columns       2
1652                   graphic       2
1653                   direction     l2r
1654                   mother        =shinjigen
1655                   registry      "Shinjigen\\(\\.[0-9]+\\)?-2"))
1656   (define-charset-alias 'shinjigen-2 '=shinjigen@rev)
1657   (make-charset '=shinjigen/+p@rev
1658                 "ShinJigen (the second edition) number with '"
1659                 `(long-name     "Shinjigen-2 with '"
1660                   chars         256
1661                   dimension     2
1662                   columns       2
1663                   graphic       2
1664                   direction     l2r))
1665   (define-charset-alias 'shinjigen-2-p '=shinjigen/+p@rev)
1666
1667   (make-charset '=big5-pua
1668                 "Big5 with private used area"
1669                 '(long-name     "Big5-PUA"
1670                   chars         256
1671                   dimension     2
1672                   columns       2
1673                   graphic       2
1674                   direction     l2r
1675                   mother        chinese-big5
1676                   registry      "Big5\\.ETEN"))
1677   (define-charset-alias 'chinese-big5-pua '=big5-pua)
1678
1679   (let* ((i 1)
1680          (hzk-min (+ (lsh #x6200 16) 65536))
1681          (hzk-max (+ hzk-min 65535)))
1682     (while (<= i 12)
1683       (make-charset
1684        (intern (format "=hanziku-%d" i))
1685        (format "HANZIKU (pseudo BIG5 encoding) part %d" i)
1686        `(long-name ,(format "HANZIKU-%d" i)
1687                    chars 256
1688                    dimension 2
1689                    columns 2
1690                    graphic 2
1691                    direction l2r
1692                    registry ,(format "hanziku-%d$" i i)
1693                    min-code ,hzk-min
1694                    max-code ,hzk-max
1695                    code-offset ,hzk-min))
1696       (define-charset-alias
1697         (intern (format "ideograph-hanziku-%d" i))
1698         (intern (format "=hanziku-%d" i)))
1699       (setq hzk-min (1+ hzk-max)
1700             hzk-max (+ hzk-min 65535))
1701       (setq i (1+ i))))
1702
1703   (make-charset '=cbeta "CBETA private characters"
1704                 '(long-name     "CBETA PUA"
1705                   chars         256
1706                   dimension     2
1707                   registry      "cbeta-0"
1708                   graphic       2
1709                   min-code      #xE20000
1710                   max-code      #xE2FFFF
1711                   code-offset   #xE20000
1712                   columns       2
1713                   direction     l2r))
1714   (define-charset-alias 'ideograph-cbeta '=cbeta)
1715
1716   (make-charset '=>>cbeta "CBETA abstract glyphs"
1717                 '(long-name     "CBETA glyphs"
1718                   chars         256
1719                   dimension     2
1720                   registry      "cbeta-0"
1721                   graphic       2
1722                   columns       2
1723                   direction     l2r
1724                   mother        =cbeta))
1725
1726   (make-charset '=zinbun-oracle
1727                 "Oracle Bones Script"
1728                 `(long-name     "Oracle Bones Script in Zinbun, Kyoto Univ."
1729                   chars         256
1730                   dimension     2
1731                   registry      "zob1968-0"
1732                   graphic       2
1733                   min-code      #xE70000
1734                   max-code      ,(+ #xE70000 8192)
1735                   code-offset   #xE70000
1736                   columns       2
1737                   direction     l2r))
1738
1739   (make-charset '=>zinbun-oracle
1740                 "Abstract Oracle Bones"
1741                 '(long-name     "Abstract characters of Zinbun Oracle Bones."
1742                   chars         256
1743                   dimension     2
1744                   mother        =zinbun-oracle
1745                   registry      "zob1968-0"
1746                   graphic       2
1747                   columns       2
1748                   direction     l2r))
1749
1750   (make-charset '=jef-china3
1751                 "JEF + CHINA3 private characters"
1752                 '(long-name     "JEF + CHINA3"
1753                   chars         256
1754                   dimension     2
1755                   columns       2
1756                   graphic       2
1757                   direction     l2r
1758                   registry      "china3jef-0"
1759                   min-code      #xE80000
1760                   max-code      #xE8FFFF
1761                   code-offset   #xE80000))
1762   (define-charset-alias 'china3-jef '=jef-china3)
1763
1764   (make-charset '=ruimoku-v6
1765                 "private characters used in RUIMOKU Version.6"
1766                 `(long-name     "RUI6"
1767                   chars         256
1768                   dimension     2
1769                   columns       2
1770                   graphic       2
1771                   direction     l2r
1772                   registry      "rui6-0"
1773                   ;; mother     ucs
1774                   min-code      #xE90000 ; #xE000
1775                   max-code      #xE908FF ; #xE8FF
1776                   code-offset   ,(- #xE90000 #xE000)))
1777   (make-charset '=>>ruimoku-v6
1778                 "RUIMOKU Version.6 glyphs"
1779                 '(long-name     "RUI6 glyphs"
1780                   chars         256
1781                   dimension     2
1782                   columns       2
1783                   graphic       2
1784                   direction     l2r
1785                   registry      "rui6-0"
1786                   mother        =ruimoku-v6))
1787
1788   (make-charset '==>ucs@bucs
1789                 "Basic Subset of Coded Character Sets (BUCS)"
1790                 '(long-name     "BUCS abstract characters"
1791                   chars         256
1792                   dimension     3
1793                   columns       2
1794                   graphic       2
1795                   direction     l2r
1796                   =>iso-ir      177
1797                   mother        =ucs))
1798
1799   (make-charset '=>ucs@iso
1800                 "Abstract characters of ISO/IEC 10646 representatives"
1801                 '(long-name     "UCS characters for ISO"
1802                   chars         256
1803                   dimension     3
1804                   columns       2
1805                   graphic       2
1806                   direction     l2r
1807                   =>iso-ir      177
1808                   mother        =ucs))
1809   (make-charset '=>ucs@unicode
1810                 "Abstract characters of Unicode representatives"
1811                 '(long-name     "UCS characters for Unicode"
1812                   chars         256
1813                   dimension     3
1814                   columns       2
1815                   graphic       2
1816                   direction     l2r
1817                   =>iso-ir      177
1818                   mother        =>ucs@iso))
1819   (make-charset '=>ucs@jis
1820                 "UCS representative characters for JIS X0208/0212/0213"
1821                 '(long-name     "UCS characters for JIS"
1822                   chars         256
1823                   dimension     3
1824                   columns       2
1825                   graphic       2
1826                   direction     l2r
1827                   =>iso-ir      177
1828                   mother        =>ucs@unicode))
1829   (make-charset '=>ucs@ks
1830                 "UCS representative characters for Korean Standards"
1831                 '(long-name     "UCS characters for KS"
1832                   chars         256
1833                   dimension     3
1834                   columns       2
1835                   graphic       2
1836                   direction     l2r
1837                   =>iso-ir      177
1838                   mother        =>ucs@unicode))
1839   (make-charset '=>ucs@cns
1840                 "UCS representatives characters for CNS 11643 sources"
1841                 '(long-name     "UCS characters for CNS 11643"
1842                   chars         256
1843                   dimension     3
1844                   columns       2
1845                   graphic       2
1846                   direction     l2r
1847                   =>iso-ir      177
1848                   mother        =>ucs@unicode))
1849
1850   (make-charset '=+>ucs@iso
1851                 "UCS based on ISO/IEC 10646 representative glyphs"
1852                 '(long-name     "Unified abstract glyphs of UCS"
1853                   chars         256
1854                   dimension     3
1855                   columns       2
1856                   graphic       2
1857                   direction     l2r
1858                   =>iso-ir      177
1859                   mother        =>ucs@iso))
1860   (make-charset '=+>ucs@unicode
1861                 "Unicode representative unified abstract glyphs"
1862                 '(long-name     "UCS unified abstract glyphs for Unicode"
1863                   chars         256
1864                   dimension     3
1865                   columns       2
1866                   graphic       2
1867                   direction     l2r
1868                   =>iso-ir      177
1869                   mother        =+>ucs@iso))
1870   (make-charset '=+>ucs@jis
1871                 "UCS based on Japanese usual unification"
1872                 '(long-name     "UCS unified abstract glyphs for JP"
1873                   chars         256
1874                   dimension     3
1875                   columns       2
1876                   graphic       2
1877                   direction     l2r
1878                   =>iso-ir      177
1879                   mother        =+>ucs@unicode))
1880   (define-charset-alias '=>ucs@JP '=+>ucs@jis)
1881   (make-charset '=+>ucs@jis/1990
1882                 "UCS representative characters for JIS X0208/0212:1990"
1883                 '(long-name     "UCS characters for JIS:1990"
1884                   chars         256
1885                   dimension     3
1886                   columns       2
1887                   graphic       2
1888                   direction     l2r
1889                   =>iso-ir      177
1890                   mother        =+>ucs@jis))
1891   (define-charset-alias '=>ucs@jis/1990 '=+>ucs@jis/1990)
1892   (make-charset '=+>ucs@jis/2004
1893                 "UCS representative characters for JIS X 0213:2004"
1894                 '(long-name     "UCS characters for JIS:2004"
1895                   chars         256
1896                   dimension     3
1897                   columns       2
1898                   graphic       2
1899                   direction     l2r
1900                   =>iso-ir      177
1901                   mother        =+>ucs@jis))
1902   (make-charset '=+>ucs@ks
1903                 "UCS representative unified abstract glyphs for Korean Standards"
1904                 '(long-name     "UCS unified abstract glyphs for KS"
1905                   chars         256
1906                   dimension     3
1907                   columns       2
1908                   graphic       2
1909                   direction     l2r
1910                   =>iso-ir      177
1911                   mother        =+>ucs@unicode))
1912   (make-charset '=+>ucs@cns
1913                 "UCS representatives unified abstract glyphs for CNS 11643 sources"
1914                 '(long-name     "UCS unified abstract glyphs for CNS"
1915                   chars         256
1916                   dimension     3
1917                   columns       2
1918                   graphic       2
1919                   direction     l2r
1920                   =>iso-ir      177
1921                   mother        =+>ucs@unicode))
1922
1923   (make-charset '=>>ucs@iso
1924                 "Representative abstract-glyphs of ISO/IEC 10646"
1925                 '(long-name     "UCS abstract glyphs for UCS"
1926                   chars         256
1927                   dimension     3
1928                   columns       2
1929                   graphic       2
1930                   direction     l2r
1931                   =>iso-ir      177
1932                   mother        =+>ucs@iso))
1933   (make-charset '=>>ucs@unicode
1934                 "Representative abstract-glyphs of Unicode"
1935                 '(long-name     "Unicode abstract glyphs"
1936                   chars         256
1937                   dimension     3
1938                   columns       2
1939                   graphic       2
1940                   direction     l2r
1941                   =>iso-ir      177
1942                   mother        =>>ucs@iso))
1943   (make-charset '=>>ucs@jis
1944                 "UCS Representative abstract-glyphs for JIS X0208/0212/0213"
1945                 '(long-name     "UCS abstract glyphs for JIS"
1946                   chars         256
1947                   dimension     3
1948                   columns       2
1949                   graphic       2
1950                   direction     l2r
1951                   =>iso-ir      177
1952                   mother        =>>ucs@unicode))
1953   (make-charset '=>>ucs@jis/1990
1954                 "UCS Representative glyphs for JIS X 0208/0212:1990"
1955                 '(long-name     "UCS glyphs for JIS:1990"
1956                   chars         256
1957                   dimension     3
1958                   columns       2
1959                   graphic       2
1960                   direction     l2r
1961                   =>iso-ir      177
1962                   mother        =>>ucs@jis))
1963   (make-charset '=>>ucs@jis/2000
1964                 "UCS Representative glyphs for JIS X 0213:2000"
1965                 '(long-name     "UCS glyphs for JIS:2000"
1966                   chars         256
1967                   dimension     3
1968                   columns       2
1969                   graphic       2
1970                   direction     l2r
1971                   =>iso-ir      177
1972                   mother        =>>ucs@jis))
1973   (make-charset '=>>ucs@jis/2004
1974                 "UCS Representative glyphs for JIS X 0213:2004"
1975                 '(long-name     "UCS glyphs for JIS:2004"
1976                   chars         256
1977                   dimension     3
1978                   columns       2
1979                   graphic       2
1980                   direction     l2r
1981                   =>iso-ir      177
1982                   mother        =>>ucs@jis))
1983   (make-charset '=>>ucs@JP
1984                 "UCS abstract-glyphs based on Japanese style glyphs"
1985                 '(long-name     "UCS glyphs for JP"
1986                   chars         256
1987                   dimension     3
1988                   columns       2
1989                   graphic       2
1990                   direction     l2r
1991                   =>iso-ir      177
1992                   mother        =>>ucs@jis/2004))
1993   (make-charset '=>>ucs@ks
1994                 "UCS Representative glyphs for Korean Standards"
1995                 '(long-name     "UCS glyphs for KS"
1996                   chars         256
1997                   dimension     3
1998                   columns       2
1999                   graphic       2
2000                   direction     l2r
2001                   =>iso-ir      177
2002                   mother        =>>ucs@unicode))
2003   (make-charset '=>>ucs@cns
2004                 "UCS Representative glyphs for CNS 11643 sources"
2005                 '(long-name     "UCS glyphs for CNS"
2006                   chars         256
2007                   dimension     3
2008                   columns       2
2009                   graphic       2
2010                   direction     l2r
2011                   =>iso-ir      177
2012                   mother        =>>ucs@unicode))
2013
2014   (make-charset '=>>>ucs@iso
2015                 "Representative glyph-forms of ISO/IEC 10646"
2016                 '(long-name     "UCS glyph-forms for UCS"
2017                   chars         256
2018                   dimension     3
2019                   columns       2
2020                   graphic       2
2021                   direction     l2r
2022                   =>iso-ir      177
2023                   mother        =>>ucs@iso))
2024   (make-charset '=>>>ucs@unicode
2025                 "Representative glyph-forms of Unicode"
2026                 '(long-name     "UCS glyph-forms for Unicode"
2027                   chars         256
2028                   dimension     3
2029                   columns       2
2030                   graphic       2
2031                   direction     l2r
2032                   =>iso-ir      177
2033                   mother        =>>>ucs@iso))
2034   (make-charset '=>>>ucs@jis
2035                 "UCS Representative glyph-forms for JIS X0208/0212/0213"
2036                 '(long-name     "UCS glyph-forms for JIS"
2037                   chars         256
2038                   dimension     3
2039                   columns       2
2040                   graphic       2
2041                   direction     l2r
2042                   =>iso-ir      177
2043                   mother        =>>>ucs@unicode))
2044   (make-charset '=>>>ucs@jis/1990
2045                 "UCS Representative glyph-forms for JIS X 0208/0212:1990"
2046                 '(long-name     "UCS glyph-forms for JIS:1990"
2047                   chars         256
2048                   dimension     3
2049                   columns       2
2050                   graphic       2
2051                   direction     l2r
2052                   =>iso-ir      177
2053                   mother        =>>>ucs@jis))
2054   (make-charset '=>>>ucs@jis/2000
2055                 "UCS Representative glyph-forms for JIS X 0213:2000"
2056                 '(long-name     "UCS glyph-forms for JIS:2000"
2057                   chars         256
2058                   dimension     3
2059                   columns       2
2060                   graphic       2
2061                   direction     l2r
2062                   =>iso-ir      177
2063                   mother        =>>>ucs@jis))
2064   (make-charset '=>>>ucs@jis/2004
2065                 "UCS Representative glyph-forms for JIS X 0213:2004"
2066                 '(long-name     "UCS glyph-forms for JIS:2004"
2067                   chars         256
2068                   dimension     3
2069                   columns       2
2070                   graphic       2
2071                   direction     l2r
2072                   =>iso-ir      177
2073                   mother        =>>>ucs@jis))
2074   (make-charset '=>>>ucs@ks
2075                 "UCS Representative glyph-forms for Korean Standards"
2076                 '(long-name     "UCS glyph-forms for KS"
2077                   chars         256
2078                   dimension     3
2079                   columns       2
2080                   graphic       2
2081                   direction     l2r
2082                   =>iso-ir      177
2083                   mother        =>>>ucs@unicode))
2084   (make-charset '=>>>ucs@cns
2085                 "UCS Representative glyph-forms for CNS 11643 sources"
2086                 '(long-name     "UCS glyph-forms for CNS"
2087                   chars         256
2088                   dimension     3
2089                   columns       2
2090                   graphic       2
2091                   direction     l2r
2092                   =>iso-ir      177
2093                   mother        =>>>ucs@unicode))
2094
2095   (make-charset '=ucs@iso
2096                 "ISO/IEC 10646 for its representative glyphs"
2097                 '(long-name     "UCS for ISO"
2098                   chars         256
2099                   dimension     3
2100                   columns       2
2101                   graphic       2
2102                   direction     l2r
2103                   =>iso-ir      177
2104                   mother        =>>>ucs@iso))
2105   (make-charset '=ucs@unicode
2106                 "Unicode for its representative glyphs"
2107                 '(long-name     "UCS for Unicode"
2108                   chars         256
2109                   dimension     3
2110                   columns       2
2111                   graphic       2
2112                   direction     l2r
2113                   =>iso-ir      177
2114                   mother        =ucs@iso))
2115   (make-charset '=ucs@gb
2116                 "ISO/IEC 10646 for GB"
2117                 '(long-name     "UCS for GB"
2118                   chars         256
2119                   dimension     3
2120                   columns       2
2121                   graphic       2
2122                   direction     l2r
2123                   =>iso-ir      177
2124                   mother        =ucs@unicode))
2125   (define-charset-alias 'ucs-gb '=ucs@gb)
2126   (make-charset '=ucs@gb/fw
2127                 "ISO/IEC 10646 for GB with fullwidth"
2128                 '(long-name     "UCS for GB-fullwidth"
2129                   chars         256
2130                   dimension     3
2131                   columns       2
2132                   graphic       2
2133                   direction     l2r
2134                   =>iso-ir      177
2135                   mother        =ucs@gb))
2136   (make-charset '=ucs-bmp@gb
2137                 "ISO/IEC 10646 BMP for GB"
2138                 '(long-name     "BMP for GB"
2139                   chars         256
2140                   dimension     3
2141                   columns       2
2142                   graphic       2
2143                   direction     l2r
2144                   mother        =ucs@gb
2145                   min-code      #x0000
2146                   max-code      #xFFFF))
2147   (make-charset '=ucs@cns
2148                 "ISO/IEC 10646 for CNS 11643"
2149                 '(long-name     "UCS for CNS"
2150                   chars         256
2151                   dimension     3
2152                   columns       2
2153                   graphic       2
2154                   direction     l2r
2155                   =>iso-ir      177
2156                   mother        =ucs@unicode))
2157   (define-charset-alias 'ucs-cns '=ucs@cns)
2158   (make-charset '=ucs@cns/fw
2159                 "ISO/IEC 10646 for CNS 11643 with fullwidth"
2160                 '(long-name     "UCS for CNS-fullwidth"
2161                   chars         256
2162                   dimension     3
2163                   columns       2
2164                   graphic       2
2165                   direction     l2r
2166                   =>iso-ir      177
2167                   mother        =ucs@cns))
2168   (make-charset '=ucs-bmp@cns
2169                 "ISO/IEC 10646 BMP for CNS"
2170                 '(long-name     "BMP for CNS"
2171                   chars         256
2172                   dimension     3
2173                   columns       2
2174                   graphic       2
2175                   direction     l2r
2176                   mother        =ucs@cns
2177                   min-code      #x0000
2178                   max-code      #xFFFF))
2179   (make-charset '=ucs@jis
2180                 "ISO/IEC 10646 for JIS X0208/0212/0213"
2181                 '(long-name     "UCS for JIS"
2182                   chars         256
2183                   dimension     3
2184                   columns       2
2185                   graphic       2
2186                   direction     l2r
2187                   =>iso-ir      177
2188                   mother        =ucs@unicode))
2189   (define-charset-alias 'ucs-jis '=ucs@jis)
2190   (make-charset '=ucs@jis/fw
2191                 "ISO/IEC 10646 for JIS X0208/0212/0213 with fullwidth"
2192                 '(long-name     "UCS for JIS-fullwidth"
2193                   chars         256
2194                   dimension     3
2195                   columns       2
2196                   graphic       2
2197                   direction     l2r
2198                   =>iso-ir      177
2199                   mother        =ucs@jis))
2200   (make-charset '=ucs-bmp@jis
2201                 "ISO/IEC 10646 BMP for JIS"
2202                 '(long-name     "BMP for JIS"
2203                   chars         256
2204                   dimension     3
2205                   columns       2
2206                   graphic       2
2207                   direction     l2r
2208                   mother        =ucs@jis
2209                   min-code      #x0000
2210                   max-code      #xFFFF))
2211   ;; (make-charset '=ucs@jis/1983
2212   ;;               "ISO/IEC 10646 for JIS X 0208:1983"
2213   ;;               '(long-name     "UCS for JIS:1983"
2214   ;;                 chars         256
2215   ;;                 dimension     3
2216   ;;                 columns       2
2217   ;;                 graphic       2
2218   ;;                 direction     l2r
2219   ;;                 =>iso-ir      177
2220   ;;                 mother        =ucs@jis))
2221   (make-charset '=ucs@jis/1990
2222                 "ISO/IEC 10646 for JIS X 0208/0212:1990"
2223                 '(long-name     "UCS for JIS:1990"
2224                   chars         256
2225                   dimension     3
2226                   columns       2
2227                   graphic       2
2228                   direction     l2r
2229                   =>iso-ir      177
2230                   mother        =ucs@jis))
2231   (define-charset-alias '=ucs@jis-1990 '=ucs@jis/1990)
2232   (define-charset-alias '=ucs-jis-1990 '=ucs@jis/1990)
2233   (make-charset '=ucs@jis/2000
2234                 "ISO/IEC 10646 for JIS X 0213:2000"
2235                 '(long-name     "UCS for JIS:2000"
2236                   chars         256
2237                   dimension     3
2238                   columns       2
2239                   graphic       2
2240                   direction     l2r
2241                   =>iso-ir      177
2242                   mother        =ucs@jis))
2243   (define-charset-alias '=ucs@jis-2000 '=ucs@jis/2000)
2244   (define-charset-alias '=ucs-jis-2000 '=ucs@jis/2000)
2245   (make-charset '=ucs@jis/2004
2246                 "ISO/IEC 10646 for JIS X 0213:2004"
2247                 '(long-name     "UCS for JIS:2004"
2248                   chars         256
2249                   dimension     3
2250                   columns       2
2251                   graphic       2
2252                   direction     l2r
2253                   =>iso-ir      177
2254                   mother        =ucs@jis))
2255   (make-charset '=ucs@JP
2256                 "UCS for common glyphs used in Japan"
2257                 '(long-name     "UCS for Japan"
2258                   chars         256
2259                   dimension     3
2260                   columns       2
2261                   graphic       2
2262                   direction     l2r
2263                   =>iso-ir      177
2264                   mother        =ucs@jis/2004))
2265   (define-charset-alias '=ucs@jp '=ucs@JP)
2266   (make-charset '=ucs@JP/hanazono
2267                 "Japanese glyph-images of Hanazono Mincho"
2268                 '(long-name     "UCS for Hana-Min"
2269                   chars         256
2270                   dimension     3
2271                   columns       2
2272                   graphic       2
2273                   direction     l2r
2274                   =>iso-ir      177
2275                   mother        =ucs@JP))
2276   (make-charset '=ucs@ks
2277                 "ISO/IEC 10646 for Korean Standards"
2278                 '(long-name     "UCS for KS"
2279                   chars         256
2280                   dimension     3
2281                   columns       2
2282                   graphic       2
2283                   direction     l2r
2284                   =>iso-ir      177
2285                   mother        =ucs@unicode))
2286   (define-charset-alias 'ucs-ks '=ucs@ks)
2287   (make-charset '=ucs-bmp@ks
2288                 "ISO/IEC 10646 BMP for KS"
2289                 '(long-name     "BMP for KS"
2290                   chars         256
2291                   dimension     3
2292                   columns       2
2293                   graphic       2
2294                   direction     l2r
2295                   mother        =ucs@ks
2296                   min-code      #x0000
2297                   max-code      #xFFFF))
2298   (make-charset '=ucs@cns11643
2299                 "ISO/IEC 10646 for CNS based on www.cns11643.gov.tw"
2300                 '(long-name     "UCS for CNS11643"
2301                   chars         256
2302                   dimension     3
2303                   columns       2
2304                   graphic       2
2305                   direction     l2r
2306                   =>iso-ir      177
2307                   mother        =ucs@cns))
2308   (make-charset '=ucs@big5
2309                 "ISO/IEC 10646 for Big5"
2310                 '(long-name     "UCS for Big5"
2311                   chars         256
2312                   dimension     3
2313                   columns       2
2314                   graphic       2
2315                   direction     l2r
2316                   =>iso-ir      177
2317                   mother        =>>ucs@cns))
2318   (define-charset-alias 'ucs-big5 '=ucs@big5)
2319   (make-charset '=ucs@big5/cns11643
2320                 "ISO/IEC 10646 for Big5 based on www.cns11643.gov.tw"
2321                 '(long-name     "UCS for Big5@CNS11643"
2322                   chars         256
2323                   dimension     3
2324                   columns       2
2325                   graphic       2
2326                   direction     l2r
2327                   =>iso-ir      177
2328                   mother        =ucs@big5))
2329
2330   (make-charset
2331    '=ucs-radicals
2332    "CJK Radicals of UCS"
2333    '(long-name "UCS-Radicals"
2334                chars 256
2335                dimension 2
2336                columns 2
2337                graphic 2
2338                direction l2r
2339                registry "-zhRadicals-.*-ucs-0"
2340                mother ucs-bmp
2341                min-code #x2E00 max-code #x2FFF))
2342   (make-charset
2343    '=ucs-radicals@unicode
2344    "CJK Radicals of UCS"
2345    '(long-name "UCS-Radicals"
2346                chars 256
2347                dimension 2
2348                columns 2
2349                graphic 2
2350                direction l2r
2351                registry "-zhRadicals-.*-ucs-0"
2352                mother =ucs@unicode
2353                min-code #x2E00 max-code #x2FFF))
2354   (make-charset
2355    '=ucs-hangul
2356    "Hangul Syllables of UCS"
2357    '(long-name "UCS-Hangul-Syllables"
2358                chars 256
2359                dimension 2
2360                columns 2
2361                graphic 2
2362                direction l2r
2363                registry "-Hangul-.*-ucs-0"
2364                mother =ucs
2365                min-code #xAC00 max-code #xD7AF))
2366   (make-charset
2367    '=ucs-bmp-cjk
2368    "CJK Characters in BMP of UCS"
2369    '(long-name "UCS-BMP-CJK"
2370                chars 256
2371                dimension 2
2372                columns 2
2373                graphic 2
2374                direction l2r
2375                registry "-zh-.*-ucs-0"
2376                mother ucs-bmp
2377                min-code #x2E00
2378                max-code #x9FA5
2379                ;; max-code #xA4CF
2380                ))
2381   (make-charset
2382    '=ucs-bmp-cjk@unicode
2383    "CJK Characters in BMP of Unicode"
2384    '(long-name "Unicode-BMP-CJK"
2385                chars 256
2386                dimension 2
2387                columns 2
2388                graphic 2
2389                direction l2r
2390                registry "-zh-.*-ucs-0"
2391                mother =ucs@unicode
2392                min-code #x2E00
2393                max-code #x9FA5
2394                ;; max-code #xA4CF
2395                ))
2396   (make-charset
2397    '=ucs-bmp-cjk@JP
2398    "CJK Characters in BMP with JIS representative glyphs"
2399    '(long-name "CJK in BMP@JP"
2400                chars 256
2401                dimension 2
2402                columns 2
2403                graphic 2
2404                direction l2r
2405                registry "-ja-.*-ucs-0"
2406                mother =ucs@JP
2407                min-code #x2E00
2408                max-code #x9FA5
2409                ;; max-code #xA4CF
2410                ))
2411   (make-charset
2412    '=ucs-bmp-cjk@JP/hanazono
2413    "CJK Characters in BMP with Hanazono font"
2414    '(long-name "CJK in BMP@JP/Hanazono"
2415                chars 256
2416                dimension 2
2417                columns 2
2418                graphic 2
2419                direction l2r
2420                registry "-ja-.*-ucs-0"
2421                mother =ucs@JP/hanazono
2422                min-code #x2E00
2423                max-code #x9FA5
2424                ;; max-code #xA4CF
2425                ))
2426   (make-charset
2427    '=+>ucs-bmp-cjk@unicode
2428    "Unicode representative characters of CJK Unified Ideographs in BMP"
2429    '(long-name "Unicode-BMP-CJK unified abstract glyphs"
2430                chars 256
2431                dimension 2
2432                columns 2
2433                graphic 2
2434                direction l2r
2435                registry "-zh-.*-ucs-0"
2436                mother =+>ucs@unicode
2437                min-code #x2E00
2438                max-code #x9FA5
2439                ;; max-code #xA4CF
2440                ))
2441   (make-charset
2442    '=>ucs-bmp-cjk@unicode
2443    "Unicode representative characters of CJK Unified Ideographs in BMP"
2444    '(long-name "Unicode-BMP-CJK"
2445                chars 256
2446                dimension 2
2447                columns 2
2448                graphic 2
2449                direction l2r
2450                registry "-zh-.*-ucs-0"
2451                mother =>ucs@unicode
2452                min-code #x2E00
2453                max-code #x9FA5
2454                ;; max-code #xA4CF
2455                ))
2456   (make-charset
2457    '==>ucs-bmp-cjk@bucs
2458    "CJK Characters in BMP of BUCS"
2459    '(long-name "BUCS-BMP-CJK"
2460                chars 256
2461                dimension 2
2462                columns 2
2463                graphic 2
2464                direction l2r
2465                registry "-zh-.*-ucs-0"
2466                mother ==>ucs@bucs
2467                min-code #x2E00
2468                max-code #x9FA5
2469                ;; max-code #xA4CF
2470                ))
2471   (make-charset
2472    '=ucs-bmp-cjk-compat
2473    "CJK Compatibility Ideographs in BMP of UCS"
2474    '(long-name "CJK Compatibility Ideographs"
2475                chars 256
2476                dimension 2
2477                columns 2
2478                graphic 2
2479                direction l2r
2480                registry "-ja-.*-ucs-0"
2481                mother ucs-bmp
2482                min-code #xF900
2483                max-code #xFAFF
2484                ))
2485   (make-charset
2486    '=ucs-bmp-cjk-compat@unicode
2487    "CJK Compatibility Ideographs of Unicode representatives"
2488    '(long-name "CJK Compatibility Ideographs of Unicode"
2489                chars 256
2490                dimension 2
2491                columns 2
2492                graphic 2
2493                direction l2r
2494                registry "-ja-.*-ucs-0"
2495                mother =ucs@unicode
2496                min-code #xF900
2497                max-code #xFAFF
2498                ))
2499   (make-charset
2500    '=ucs-sip-ext-b
2501    "CJK Ideographs Extension B"
2502    '(long-name "UCS CJK Ext-B"
2503                chars 256
2504                dimension 2
2505                columns 2
2506                graphic 2
2507                direction l2r
2508                registry "\\(iso10646\\|ucs02\\)-2$"
2509                mother ucs
2510                min-code #x20000 max-code #x2A6D6
2511                code-offset #x20000))
2512   (make-charset
2513    '=ucs-sip-ext-b@iso
2514    "CJK Ideographs Extension B (ISO/IEC 10646-2)"
2515    '(long-name "UCS CJK Ext-B"
2516                chars 256
2517                dimension 2
2518                columns 2
2519                graphic 2
2520                direction l2r
2521                registry "\\(iso10646\\|ucs02\\)-2$"
2522                mother =ucs@iso
2523                min-code #x20000 max-code #x2A6D6
2524                code-offset #x20000))
2525   )
2526
2527 ;;; mule-conf.el ends here