e47d79a1eee413232ac8a86283179d6cc7a529ec
[chise/xemacs-chise.git-] / 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/jc
1184    "Han'you-Denshi/JC abstract glyph-forms"
1185    '(long-name "Han'you-Denshi/JC glyph-forms"
1186                chars 94
1187                dimension 2
1188                columns 2
1189                graphic 2
1190                direction l2r
1191                registry "HanyoDenshi\\.JC-0$"
1192                mother =hanyo-denshi/jc))
1193   (make-charset
1194    '=>>>hanyo-denshi/ft
1195    "Han'you-Denshi/FT abstract glyph-forms"
1196    '(long-name "Han'you-Denshi/FT glyph-forms"
1197                chars 94
1198                dimension 2
1199                columns 2
1200                graphic 2
1201                direction l2r
1202                registry "HanyoDenshi\\.FT-0$"
1203                mother =hanyo-denshi/ft))
1204   (make-charset
1205    '=>>>hanyo-denshi/ib
1206    "Han'you-Denshi/IB abstract glyph-forms"
1207    '(long-name "Han'you-Denshi/IB glyph-forms"
1208                chars 94
1209                dimension 2
1210                columns 2
1211                graphic 2
1212                direction l2r
1213                registry "HanyoDenshi\\.IB-0$"
1214                mother =hanyo-denshi/ib))
1215   (make-charset
1216    '=>>>hanyo-denshi/jt
1217    "JT (Juuki Touitsu Moji) abstract glyph-forms"
1218    '(long-name "Han'you-Denshi/JT glyph-forms"
1219                chars 256
1220                dimension 2
1221                columns 2
1222                graphic 2
1223                direction l2r
1224                registry "HanyoDenshi\\.JT-0$"
1225                mother =hanyo-denshi/jt))
1226   (make-charset
1227    '=>>>hanyo-denshi/ks
1228    "KoSeki-touitsu-moji abstract glyph-forms"
1229    '(long-name "Han'you-Denshi/KS glyph-forms"
1230                chars 256
1231                dimension 3
1232                columns 2
1233                graphic 2
1234                direction l2r
1235                mother =hanyo-denshi/ks))
1236
1237   (make-charset
1238    '=>>hanyo-denshi/ja
1239    "Han'you-Denshi/JA abstract glyphs"
1240    '(long-name "Han'you-Denshi/JA glyphs"
1241                chars 94
1242                dimension 2
1243                columns 2
1244                graphic 2
1245                direction l2r
1246                registry "HanyoDenshi\\.JA-0$"
1247                mother =>>>hanyo-denshi/ja))
1248   (make-charset
1249    '=>>hanyo-denshi/jb
1250    "Han'you-Denshi/JB abstract glyphs"
1251    '(long-name "Han'you-Denshi/JB glyphs"
1252                chars 94
1253                dimension 2
1254                columns 2
1255                graphic 2
1256                direction l2r
1257                registry "HanyoDenshi\\.JB-0$"
1258                mother =hanyo-denshi/jb))
1259   (make-charset
1260    '=>>hanyo-denshi/jc
1261    "Han'you-Denshi/JC abstract glyphs"
1262    '(long-name "Han'you-Denshi/JC glyphs"
1263                chars 94
1264                dimension 2
1265                columns 2
1266                graphic 2
1267                direction l2r
1268                registry "HanyoDenshi\\.JC-0$"
1269                mother =>>>hanyo-denshi/jc))
1270   (make-charset
1271    '=>>hanyo-denshi/jd
1272    "Han'you-Denshi/JD abstract glyphs"
1273    '(long-name "Han'you-Denshi/JD glyphs"
1274                chars 94
1275                dimension 2
1276                columns 2
1277                graphic 2
1278                direction l2r
1279                registry "HanyoDenshi\\.JD-0$"
1280                mother =hanyo-denshi/jd))
1281   (make-charset
1282    '=>>hanyo-denshi/ft
1283    "Han'you-Denshi/FT abstract glyphs"
1284    '(long-name "Han'you-Denshi/FT glyphs"
1285                chars 94
1286                dimension 2
1287                columns 2
1288                graphic 2
1289                direction l2r
1290                registry "HanyoDenshi\\.FT-0$"
1291                mother =>>>hanyo-denshi/ft))
1292   (make-charset
1293    '=>>hanyo-denshi/ia
1294    "Han'you-Denshi/IA abstract glyphs"
1295    '(long-name "Han'you-Denshi/IA glyphs"
1296                chars 94
1297                dimension 2
1298                columns 2
1299                graphic 2
1300                direction l2r
1301                registry "HanyoDenshi\\.IA-0$"
1302                mother =hanyo-denshi/ia))
1303   (make-charset
1304    '=>>hanyo-denshi/ib
1305    "Han'you-Denshi/IB abstract glyphs"
1306    '(long-name "Han'you-Denshi/IB abstract glyphs"
1307                chars 94
1308                dimension 2
1309                columns 2
1310                graphic 2
1311                direction l2r
1312                registry "HanyoDenshi\\.IB-0$"
1313                mother =>>>hanyo-denshi/ib))
1314   (make-charset
1315    '=>>hanyo-denshi/hg
1316    "Han'you-Denshi/HG abstract glyphs"
1317    '(long-name "Han'you-Denshi/HG abstract glyphs"
1318                chars 94
1319                dimension 2
1320                columns 2
1321                graphic 2
1322                direction l2r
1323                registry "HanyoDenshi\\.HG-0$"
1324                mother =hanyo-denshi/hg))
1325   (make-charset
1326    '=>>hanyo-denshi/jt
1327    "JT (Juuki Touitsu Moji) abstract glyphs"
1328    '(long-name "Han'you-Denshi/JT glyphs"
1329                chars 256
1330                dimension 2
1331                columns 2
1332                graphic 2
1333                direction l2r
1334                registry "HanyoDenshi\\.JT-0$"
1335                mother =>>>hanyo-denshi/jt))
1336   (make-charset
1337    '=>>hanyo-denshi/ks
1338    "Han'you-Denshi/KS abstract glyphs"
1339    '(long-name "Han'you-Denshi/KS glyphs"
1340                chars 256
1341                dimension 3
1342                columns 2
1343                graphic 2
1344                direction l2r
1345                mother =>>>hanyo-denshi/ks))
1346
1347   (make-charset '=gt
1348                 "GT 2000"
1349                 `(long-name     "GT"
1350                   chars         256
1351                   dimension     3
1352                   columns       2
1353                   graphic       2
1354                   direction     l2r
1355                   registry      ""
1356                   min-code      ,(lsh #x6100 16)
1357                   max-code      ,(+ (lsh #x6100 16) 67547)
1358                   code-offset   ,(lsh #x6100 16)))
1359   (define-charset-alias 'ideograph-gt '=gt)
1360   (make-charset '=>>>gt
1361                 "GT 2000 abstract glyph-forms"
1362                 '(long-name     "GT abstract glyph-forms"
1363                   chars         256
1364                   dimension     3
1365                   columns       2
1366                   graphic       2
1367                   direction     l2r
1368                   mother        =gt))
1369   (make-charset '=>>gt
1370                 "GT 2000 abstract glyphs"
1371                 '(long-name     "GT abstract glyphs"
1372                   chars         256
1373                   dimension     3
1374                   columns       2
1375                   graphic       2
1376                   direction     l2r
1377                   mother        =>>>gt))
1378   (define-charset-alias '<=>gt '=>>gt)
1379   (define-charset-alias '<==>gt '=>>gt)
1380   (make-charset '=+>gt
1381                 "GT 2000 unified abstract glyphs"
1382                 '(long-name     "Unified abstract GT glyphs"
1383                   chars         256
1384                   dimension     3
1385                   columns       2
1386                   graphic       2
1387                   direction     l2r
1388                   mother        =>>gt))
1389   (make-charset '=>gt
1390                 "GT 2000 abstract characters"
1391                 '(long-name     "abstract GT characters"
1392                   chars         256
1393                   dimension     3
1394                   columns       2
1395                   graphic       2
1396                   direction     l2r
1397                   mother        =+>gt))
1398   (make-charset '=gt-k
1399                 "Ideographic components of GT"
1400                 `(long-name     "GT components"
1401                   chars         256
1402                   dimension     2
1403                   columns       2
1404                   graphic       2
1405                   direction     l2r
1406                   registry      ""
1407                   min-code      ,(lsh #x6110 16)
1408                   max-code      ,(+ (lsh #x6110 16) 17090)
1409                   code-offset   ,(lsh #x6110 16)))
1410   (define-charset-alias 'ideograph-gt-k '=gt-k)
1411   (make-charset '=>>gt-k
1412                 "abstract glyphs of GT-K"
1413                 '(long-name     "GT-K abstract glyphs"
1414                   chars         256
1415                   dimension     2
1416                   columns       2
1417                   graphic       2
1418                   direction     l2r
1419                   mother        =gt-k))
1420   (make-charset '=>gt-k
1421                 "GT-K abstract characters"
1422                 '(long-name     "GT-K abstract characters"
1423                   chars         256
1424                   dimension     2
1425                   columns       2
1426                   graphic       2
1427                   direction     l2r
1428                   mother        =>>gt-k))
1429   (let ((i 1))
1430     (while (<= i 11)
1431       (make-charset
1432        (intern (format "=gt-pj-%d" i))
1433        (format "GT 2000 (pseudo JIS encoding) part %d" i)
1434        `(long-name ,(format "GT PJ %d" i)
1435                    chars 94
1436                    dimension 2
1437                    columns 2
1438                    graphic 0
1439                    direction l2r
1440                    registry ,(format "\\(GTpj-%d\\|jisx0208\\.GT-%d\\)$" i i)))
1441       (define-charset-alias
1442         (intern (format "ideograph-gt-pj-%d" i))
1443         (intern (format "=gt-pj-%d" i)))
1444       (setq i (1+ i))))
1445   (make-charset
1446    '=gt-pj-k1
1447    "Ideographic parts of GT (pseudo JIS encoding) part 1"
1448    '(long-name "GT K1"
1449                chars 94
1450                dimension 2
1451                columns 2
1452                graphic 0
1453                direction l2r
1454                registry "\\(GTKpj-1\\|jisx0208\\.GTK-1\\)$"))
1455   (define-charset-alias 'ideograph-gt-pj-k1 '=gt-pj-k1)
1456   (make-charset
1457    '=gt-pj-k2
1458    "Ideographic parts of GT (pseudo JIS encoding) part 2"
1459    '(long-name "GT K2"
1460                chars 94
1461                dimension 2
1462                columns 2
1463                graphic 0
1464                direction l2r
1465                registry "\\(GTKpj-2\\|jisx0208\\.GTK-2\\)$"))
1466   (define-charset-alias 'ideograph-gt-pj-k2 '=gt-pj-k2)
1467
1468   (make-charset '=daikanwa
1469                 "Daikanwa dictionary (unchanged part)"
1470                 `(long-name     "Daikanwa"
1471                   chars         256
1472                   dimension     2
1473                   columns       2
1474                   graphic       2
1475                   direction     l2r
1476                   registry      "Daikanwa\\(\\.[0-9]+\\)?-3"
1477                   min-code      #xE00000
1478                   max-code      ,(+ #xE00000 50100)
1479                   code-offset   #xE00000))
1480   (define-charset-alias 'ideograph-daikanwa '=daikanwa)
1481
1482   (make-charset '=daikanwa@rev1
1483                 "Daikanwa dictionary (revised version)"
1484                 '(long-name     "Daikanwa Rev."
1485                   chars         256
1486                   dimension     2
1487                   columns       2
1488                   graphic       2
1489                   direction     l2r
1490                   registry      "Daikanwa\\(\\.[0-9]+\\)?-2"
1491                   mother        =daikanwa))
1492   (define-charset-alias 'ideograph-daikanwa-2 '=daikanwa@rev1)
1493   (define-charset-alias '=daikanwa-rev1 '=daikanwa@rev1)
1494
1495   (make-charset '=daikanwa@rev2
1496                 "Daikanwa dictionary (revised version 2)"
1497                 '(long-name     "Daikanwa"
1498                   chars         256
1499                   dimension     2
1500                   columns       2
1501                   graphic       2
1502                   direction     l2r
1503                   registry      "Daikanwa\\(\\.[0-9]+\\)?-3"
1504                   mother        =daikanwa
1505                   min-code      1
1506                   max-code      49964))
1507   (define-charset-alias '=daikanwa-rev2 '=daikanwa@rev2)
1508
1509   (make-charset '=daikanwa/+p
1510                 "Daikanwa dictionary (ddddd')"
1511                 '(long-name     "Daikanwa ddddd'"
1512                   chars         256
1513                   dimension     2
1514                   columns       2
1515                   graphic       2
1516                   direction     l2r))
1517   (make-charset '=daikanwa/+2p
1518                 "Daikanwa dictionary (ddddd'')"
1519                 '(long-name     "Daikanwa ddddd''"
1520                   chars         256
1521                   dimension     2
1522                   columns       2
1523                   graphic       2
1524                   direction     l2r))
1525   (make-charset '=daikanwa/ho
1526                 "Daikanwa dictionary (Hokan)"
1527                 '(long-name     "Daikanwa-ho"
1528                   chars         256
1529                   dimension     2
1530                   columns       2
1531                   graphic       2
1532                   direction     l2r))
1533
1534   (make-charset '=>>daikanwa
1535                 "Daikanwa abstract glyphs"
1536                 '(long-name     "Daikanwa glyphs"
1537                   chars         256
1538                   dimension     2
1539                   columns       2
1540                   graphic       2
1541                   direction     l2r
1542                   registry      "Daikanwa\\(\\.[0-9]+\\)?-3"
1543                   mother        =daikanwa))
1544   (make-charset '=>>daikanwa/+p
1545                 "Daikanwa abstract glyphs (ddddd')"
1546                 '(long-name     "Daikanwa glyphs (ddddd')"
1547                   chars         256
1548                   dimension     2
1549                   columns       2
1550                   graphic       2
1551                   direction     l2r
1552                   mother        =daikanwa/+p))
1553   (make-charset '=>>daikanwa/+2p
1554                 "Daikanwa abstract glyphs (ddddd'')"
1555                 '(long-name     "Daikanwa glyphs (ddddd'')"
1556                   chars         256
1557                   dimension     2
1558                   columns       2
1559                   graphic       2
1560                   direction     l2r
1561                   mother        =daikanwa/+2p))
1562   (make-charset '=>>daikanwa/ho
1563                 "Daikanwa abstract glyphs (Hokan)"
1564                 '(long-name     "Daikanwa-ho glyph"
1565                   chars         256
1566                   dimension     2
1567                   columns       2
1568                   graphic       2
1569                   direction     l2r
1570                   mother        =daikanwa/ho))
1571
1572   (make-charset '=>daikanwa
1573                 "Daikanwa abstract characters"
1574                 '(long-name     "abstract Daikanwa"
1575                   chars         256
1576                   dimension     2
1577                   columns       2
1578                   graphic       2
1579                   direction     l2r
1580                   registry      "Daikanwa\\(\\.[0-9]+\\)?-3"
1581                   mother        =>>daikanwa))
1582   (make-charset '=>daikanwa/ho
1583                 "Daikanwa abstract characters (Hokan)"
1584                 '(long-name     "abstract Daikanwa-ho"
1585                   chars         256
1586                   dimension     2
1587                   columns       2
1588                   graphic       2
1589                   direction     l2r
1590                   mother        =>>daikanwa/ho))
1591
1592   (make-charset '=shinjigen
1593                 "Kadokawa ShinJigen dictionary (common parts)"
1594                 `(long-name     "Shinjigen common parts"
1595                   chars         256
1596                   dimension     2
1597                   columns       2
1598                   graphic       2
1599                   direction     l2r
1600                   registry      "Shinjigen\\(\\.[0-9]+\\)?-*"))
1601
1602   (make-charset '=shinjigen@1ed
1603                 "Kadokawa ShinJigen dictionary (the first edition)"
1604                 `(long-name     "Shinjigen-1"
1605                   chars         256
1606                   dimension     2
1607                   columns       2
1608                   graphic       2
1609                   direction     l2r
1610                   mother        =shinjigen
1611                   registry      "Shinjigen\\(\\.[0-9]+\\)?-1"))
1612   (define-charset-alias 'shinjigen-1 '=shinjigen@1ed)
1613
1614   (make-charset '=shinjigen@1ed/24pr
1615                 "Kadokawa ShinJigen dictionary (the 24th impression)"
1616                 `(long-name     "Shinjigen-1 24pr"
1617                   chars         256
1618                   dimension     2
1619                   columns       2
1620                   graphic       2
1621                   direction     l2r
1622                   mother        =shinjigen@1ed))
1623
1624   (make-charset '=shinjigen@rev
1625                 "Kadokawa ShinJigen dictionary (the revised edition)"
1626                 `(long-name     "Shinjigen-2"
1627                   chars         256
1628                   dimension     2
1629                   columns       2
1630                   graphic       2
1631                   direction     l2r
1632                   mother        =shinjigen
1633                   registry      "Shinjigen\\(\\.[0-9]+\\)?-2"))
1634   (define-charset-alias 'shinjigen-2 '=shinjigen@rev)
1635   (make-charset '=shinjigen/+p@rev
1636                 "ShinJigen (the second edition) number with '"
1637                 `(long-name     "Shinjigen-2 with '"
1638                   chars         256
1639                   dimension     2
1640                   columns       2
1641                   graphic       2
1642                   direction     l2r))
1643   (define-charset-alias 'shinjigen-2-p '=shinjigen/+p@rev)
1644
1645   (make-charset '=big5-pua
1646                 "Big5 with private used area"
1647                 '(long-name     "Big5-PUA"
1648                   chars         256
1649                   dimension     2
1650                   columns       2
1651                   graphic       2
1652                   direction     l2r
1653                   mother        chinese-big5
1654                   registry      "Big5\\.ETEN"))
1655   (define-charset-alias 'chinese-big5-pua '=big5-pua)
1656
1657   (let* ((i 1)
1658          (hzk-min (+ (lsh #x6200 16) 65536))
1659          (hzk-max (+ hzk-min 65535)))
1660     (while (<= i 12)
1661       (make-charset
1662        (intern (format "=hanziku-%d" i))
1663        (format "HANZIKU (pseudo BIG5 encoding) part %d" i)
1664        `(long-name ,(format "HANZIKU-%d" i)
1665                    chars 256
1666                    dimension 2
1667                    columns 2
1668                    graphic 2
1669                    direction l2r
1670                    registry ,(format "hanziku-%d$" i i)
1671                    min-code ,hzk-min
1672                    max-code ,hzk-max
1673                    code-offset ,hzk-min))
1674       (define-charset-alias
1675         (intern (format "ideograph-hanziku-%d" i))
1676         (intern (format "=hanziku-%d" i)))
1677       (setq hzk-min (1+ hzk-max)
1678             hzk-max (+ hzk-min 65535))
1679       (setq i (1+ i))))
1680
1681   (make-charset '=cbeta "CBETA private characters"
1682                 '(long-name     "CBETA PUA"
1683                   chars         256
1684                   dimension     2
1685                   registry      "cbeta-0"
1686                   graphic       2
1687                   min-code      #xE20000
1688                   max-code      #xE2FFFF
1689                   code-offset   #xE20000
1690                   columns       2
1691                   direction     l2r))
1692   (define-charset-alias 'ideograph-cbeta '=cbeta)
1693
1694   (make-charset '=>>cbeta "CBETA abstract glyphs"
1695                 '(long-name     "CBETA glyphs"
1696                   chars         256
1697                   dimension     2
1698                   registry      "cbeta-0"
1699                   graphic       2
1700                   columns       2
1701                   direction     l2r
1702                   mother        =cbeta))
1703
1704   (make-charset '=zinbun-oracle
1705                 "Oracle Bones Script"
1706                 `(long-name     "Oracle Bones Script in Zinbun, Kyoto Univ."
1707                   chars         256
1708                   dimension     2
1709                   registry      "zob1968-0"
1710                   graphic       2
1711                   min-code      #xE70000
1712                   max-code      ,(+ #xE70000 8192)
1713                   code-offset   #xE70000
1714                   columns       2
1715                   direction     l2r))
1716
1717   (make-charset '=>zinbun-oracle
1718                 "Abstract Oracle Bones"
1719                 '(long-name     "Abstract characters of Zinbun Oracle Bones."
1720                   chars         256
1721                   dimension     2
1722                   mother        =zinbun-oracle
1723                   registry      "zob1968-0"
1724                   graphic       2
1725                   columns       2
1726                   direction     l2r))
1727
1728   (make-charset '=jef-china3
1729                 "JEF + CHINA3 private characters"
1730                 '(long-name     "JEF + CHINA3"
1731                   chars         256
1732                   dimension     2
1733                   columns       2
1734                   graphic       2
1735                   direction     l2r
1736                   registry      "china3jef-0"
1737                   min-code      #xE80000
1738                   max-code      #xE8FFFF
1739                   code-offset   #xE80000))
1740   (define-charset-alias 'china3-jef '=jef-china3)
1741
1742   (make-charset '=ruimoku-v6
1743                 "private characters used in RUIMOKU Version.6"
1744                 `(long-name     "RUI6"
1745                   chars         256
1746                   dimension     2
1747                   columns       2
1748                   graphic       2
1749                   direction     l2r
1750                   registry      "rui6-0"
1751                   ;; mother     ucs
1752                   min-code      #xE90000 ; #xE000
1753                   max-code      #xE908FF ; #xE8FF
1754                   code-offset   ,(- #xE90000 #xE000)))
1755   (make-charset '=>>ruimoku-v6
1756                 "RUIMOKU Version.6 glyphs"
1757                 '(long-name     "RUI6 glyphs"
1758                   chars         256
1759                   dimension     2
1760                   columns       2
1761                   graphic       2
1762                   direction     l2r
1763                   registry      "rui6-0"
1764                   mother        =ruimoku-v6))
1765
1766   (make-charset '==>ucs@bucs
1767                 "Basic Subset of Coded Character Sets (BUCS)"
1768                 '(long-name     "BUCS abstract characters"
1769                   chars         256
1770                   dimension     3
1771                   columns       2
1772                   graphic       2
1773                   direction     l2r
1774                   =>iso-ir      177
1775                   mother        =ucs))
1776
1777   (make-charset '=>ucs@iso
1778                 "Abstract characters of ISO/IEC 10646 representatives"
1779                 '(long-name     "UCS characters for ISO"
1780                   chars         256
1781                   dimension     3
1782                   columns       2
1783                   graphic       2
1784                   direction     l2r
1785                   =>iso-ir      177
1786                   mother        =ucs))
1787   (make-charset '=>ucs@unicode
1788                 "Abstract characters of Unicode representatives"
1789                 '(long-name     "UCS characters for Unicode"
1790                   chars         256
1791                   dimension     3
1792                   columns       2
1793                   graphic       2
1794                   direction     l2r
1795                   =>iso-ir      177
1796                   mother        =>ucs@iso))
1797   (make-charset '=>ucs@jis
1798                 "UCS representative characters for JIS X0208/0212/0213"
1799                 '(long-name     "UCS characters for JIS"
1800                   chars         256
1801                   dimension     3
1802                   columns       2
1803                   graphic       2
1804                   direction     l2r
1805                   =>iso-ir      177
1806                   mother        =>ucs@unicode))
1807   (make-charset '=>ucs@ks
1808                 "UCS representative characters for Korean Standards"
1809                 '(long-name     "UCS characters for KS"
1810                   chars         256
1811                   dimension     3
1812                   columns       2
1813                   graphic       2
1814                   direction     l2r
1815                   =>iso-ir      177
1816                   mother        =>ucs@unicode))
1817   (make-charset '=>ucs@cns
1818                 "UCS representatives characters for CNS 11643 sources"
1819                 '(long-name     "UCS characters for CNS 11643"
1820                   chars         256
1821                   dimension     3
1822                   columns       2
1823                   graphic       2
1824                   direction     l2r
1825                   =>iso-ir      177
1826                   mother        =>ucs@unicode))
1827
1828   (make-charset '=+>ucs@iso
1829                 "UCS based on ISO/IEC 10646 representative glyphs"
1830                 '(long-name     "Unified abstract glyphs of UCS"
1831                   chars         256
1832                   dimension     3
1833                   columns       2
1834                   graphic       2
1835                   direction     l2r
1836                   =>iso-ir      177
1837                   mother        =>ucs@iso))
1838   (make-charset '=+>ucs@unicode
1839                 "Unicode representative unified abstract glyphs"
1840                 '(long-name     "UCS unified abstract glyphs for Unicode"
1841                   chars         256
1842                   dimension     3
1843                   columns       2
1844                   graphic       2
1845                   direction     l2r
1846                   =>iso-ir      177
1847                   mother        =+>ucs@iso))
1848   (make-charset '=+>ucs@jis
1849                 "UCS based on Japanese usual unification"
1850                 '(long-name     "UCS unified abstract glyphs for JP"
1851                   chars         256
1852                   dimension     3
1853                   columns       2
1854                   graphic       2
1855                   direction     l2r
1856                   =>iso-ir      177
1857                   mother        =+>ucs@unicode))
1858   (define-charset-alias '=>ucs@JP '=+>ucs@jis)
1859   (make-charset '=+>ucs@jis/1990
1860                 "UCS representative characters for JIS X0208/0212:1990"
1861                 '(long-name     "UCS characters for JIS:1990"
1862                   chars         256
1863                   dimension     3
1864                   columns       2
1865                   graphic       2
1866                   direction     l2r
1867                   =>iso-ir      177
1868                   mother        =+>ucs@jis))
1869   (define-charset-alias '=>ucs@jis/1990 '=+>ucs@jis/1990)
1870   (make-charset '=+>ucs@jis/2004
1871                 "UCS representative characters for JIS X 0213:2004"
1872                 '(long-name     "UCS characters for JIS:2004"
1873                   chars         256
1874                   dimension     3
1875                   columns       2
1876                   graphic       2
1877                   direction     l2r
1878                   =>iso-ir      177
1879                   mother        =+>ucs@jis))
1880   (make-charset '=+>ucs@ks
1881                 "UCS representative unified abstract glyphs for Korean Standards"
1882                 '(long-name     "UCS unified abstract glyphs for KS"
1883                   chars         256
1884                   dimension     3
1885                   columns       2
1886                   graphic       2
1887                   direction     l2r
1888                   =>iso-ir      177
1889                   mother        =+>ucs@unicode))
1890   (make-charset '=+>ucs@cns
1891                 "UCS representatives unified abstract glyphs for CNS 11643 sources"
1892                 '(long-name     "UCS unified abstract glyphs for CNS"
1893                   chars         256
1894                   dimension     3
1895                   columns       2
1896                   graphic       2
1897                   direction     l2r
1898                   =>iso-ir      177
1899                   mother        =+>ucs@unicode))
1900
1901   (make-charset '=>>ucs@iso
1902                 "Representative abstract-glyphs of ISO/IEC 10646"
1903                 '(long-name     "UCS abstract glyphs for UCS"
1904                   chars         256
1905                   dimension     3
1906                   columns       2
1907                   graphic       2
1908                   direction     l2r
1909                   =>iso-ir      177
1910                   mother        =+>ucs@iso))
1911   (make-charset '=>>ucs@unicode
1912                 "Representative abstract-glyphs of Unicode"
1913                 '(long-name     "Unicode abstract glyphs"
1914                   chars         256
1915                   dimension     3
1916                   columns       2
1917                   graphic       2
1918                   direction     l2r
1919                   =>iso-ir      177
1920                   mother        =>>ucs@iso))
1921   (make-charset '=>>ucs@jis
1922                 "UCS Representative abstract-glyphs for JIS X0208/0212/0213"
1923                 '(long-name     "UCS abstract glyphs for JIS"
1924                   chars         256
1925                   dimension     3
1926                   columns       2
1927                   graphic       2
1928                   direction     l2r
1929                   =>iso-ir      177
1930                   mother        =>>ucs@unicode))
1931   (make-charset '=>>ucs@jis/1990
1932                 "UCS Representative glyphs for JIS X 0208/0212:1990"
1933                 '(long-name     "UCS glyphs for JIS:1990"
1934                   chars         256
1935                   dimension     3
1936                   columns       2
1937                   graphic       2
1938                   direction     l2r
1939                   =>iso-ir      177
1940                   mother        =>>ucs@jis))
1941   (make-charset '=>>ucs@jis/2000
1942                 "UCS Representative glyphs for JIS X 0213:2000"
1943                 '(long-name     "UCS glyphs for JIS:2000"
1944                   chars         256
1945                   dimension     3
1946                   columns       2
1947                   graphic       2
1948                   direction     l2r
1949                   =>iso-ir      177
1950                   mother        =>>ucs@jis))
1951   (make-charset '=>>ucs@jis/2004
1952                 "UCS Representative glyphs for JIS X 0213:2004"
1953                 '(long-name     "UCS glyphs for JIS:2004"
1954                   chars         256
1955                   dimension     3
1956                   columns       2
1957                   graphic       2
1958                   direction     l2r
1959                   =>iso-ir      177
1960                   mother        =>>ucs@jis))
1961   (make-charset '=>>ucs@JP
1962                 "UCS abstract-glyphs based on Japanese style glyphs"
1963                 '(long-name     "UCS glyphs for JP"
1964                   chars         256
1965                   dimension     3
1966                   columns       2
1967                   graphic       2
1968                   direction     l2r
1969                   =>iso-ir      177
1970                   mother        =>>ucs@jis/2004))
1971   (make-charset '=>>ucs@ks
1972                 "UCS Representative glyphs for Korean Standards"
1973                 '(long-name     "UCS glyphs for KS"
1974                   chars         256
1975                   dimension     3
1976                   columns       2
1977                   graphic       2
1978                   direction     l2r
1979                   =>iso-ir      177
1980                   mother        =>>ucs@unicode))
1981   (make-charset '=>>ucs@cns
1982                 "UCS Representative glyphs for CNS 11643 sources"
1983                 '(long-name     "UCS glyphs for CNS"
1984                   chars         256
1985                   dimension     3
1986                   columns       2
1987                   graphic       2
1988                   direction     l2r
1989                   =>iso-ir      177
1990                   mother        =>>ucs@unicode))
1991
1992   (make-charset '=>>>ucs@iso
1993                 "Representative glyph-forms of ISO/IEC 10646"
1994                 '(long-name     "UCS glyph-forms for UCS"
1995                   chars         256
1996                   dimension     3
1997                   columns       2
1998                   graphic       2
1999                   direction     l2r
2000                   =>iso-ir      177
2001                   mother        =>>ucs@iso))
2002   (make-charset '=>>>ucs@unicode
2003                 "Representative glyph-forms of Unicode"
2004                 '(long-name     "UCS glyph-forms for Unicode"
2005                   chars         256
2006                   dimension     3
2007                   columns       2
2008                   graphic       2
2009                   direction     l2r
2010                   =>iso-ir      177
2011                   mother        =>>>ucs@iso))
2012   (make-charset '=>>>ucs@jis
2013                 "UCS Representative glyph-forms for JIS X0208/0212/0213"
2014                 '(long-name     "UCS glyph-forms for JIS"
2015                   chars         256
2016                   dimension     3
2017                   columns       2
2018                   graphic       2
2019                   direction     l2r
2020                   =>iso-ir      177
2021                   mother        =>>>ucs@unicode))
2022   (make-charset '=>>>ucs@jis/1990
2023                 "UCS Representative glyph-forms for JIS X 0208/0212:1990"
2024                 '(long-name     "UCS glyph-forms for JIS:1990"
2025                   chars         256
2026                   dimension     3
2027                   columns       2
2028                   graphic       2
2029                   direction     l2r
2030                   =>iso-ir      177
2031                   mother        =>>>ucs@jis))
2032   (make-charset '=>>>ucs@jis/2000
2033                 "UCS Representative glyph-forms for JIS X 0213:2000"
2034                 '(long-name     "UCS glyph-forms for JIS:2000"
2035                   chars         256
2036                   dimension     3
2037                   columns       2
2038                   graphic       2
2039                   direction     l2r
2040                   =>iso-ir      177
2041                   mother        =>>>ucs@jis))
2042   (make-charset '=>>>ucs@jis/2004
2043                 "UCS Representative glyph-forms for JIS X 0213:2004"
2044                 '(long-name     "UCS glyph-forms for JIS:2004"
2045                   chars         256
2046                   dimension     3
2047                   columns       2
2048                   graphic       2
2049                   direction     l2r
2050                   =>iso-ir      177
2051                   mother        =>>>ucs@jis))
2052   (make-charset '=>>>ucs@ks
2053                 "UCS Representative glyph-forms for Korean Standards"
2054                 '(long-name     "UCS glyph-forms for KS"
2055                   chars         256
2056                   dimension     3
2057                   columns       2
2058                   graphic       2
2059                   direction     l2r
2060                   =>iso-ir      177
2061                   mother        =>>>ucs@unicode))
2062   (make-charset '=>>>ucs@cns
2063                 "UCS Representative glyph-forms for CNS 11643 sources"
2064                 '(long-name     "UCS glyph-forms for CNS"
2065                   chars         256
2066                   dimension     3
2067                   columns       2
2068                   graphic       2
2069                   direction     l2r
2070                   =>iso-ir      177
2071                   mother        =>>>ucs@unicode))
2072
2073   (make-charset '=ucs@iso
2074                 "ISO/IEC 10646 for its representative glyphs"
2075                 '(long-name     "UCS for ISO"
2076                   chars         256
2077                   dimension     3
2078                   columns       2
2079                   graphic       2
2080                   direction     l2r
2081                   =>iso-ir      177
2082                   mother        =>>>ucs@iso))
2083   (make-charset '=ucs@unicode
2084                 "Unicode for its representative glyphs"
2085                 '(long-name     "UCS for Unicode"
2086                   chars         256
2087                   dimension     3
2088                   columns       2
2089                   graphic       2
2090                   direction     l2r
2091                   =>iso-ir      177
2092                   mother        =ucs@iso))
2093   (make-charset '=ucs@gb
2094                 "ISO/IEC 10646 for GB"
2095                 '(long-name     "UCS for GB"
2096                   chars         256
2097                   dimension     3
2098                   columns       2
2099                   graphic       2
2100                   direction     l2r
2101                   =>iso-ir      177
2102                   mother        =ucs@unicode))
2103   (define-charset-alias 'ucs-gb '=ucs@gb)
2104   (make-charset '=ucs@gb/fw
2105                 "ISO/IEC 10646 for GB with fullwidth"
2106                 '(long-name     "UCS for GB-fullwidth"
2107                   chars         256
2108                   dimension     3
2109                   columns       2
2110                   graphic       2
2111                   direction     l2r
2112                   =>iso-ir      177
2113                   mother        =ucs@gb))
2114   (make-charset '=ucs-bmp@gb
2115                 "ISO/IEC 10646 BMP for GB"
2116                 '(long-name     "BMP for GB"
2117                   chars         256
2118                   dimension     3
2119                   columns       2
2120                   graphic       2
2121                   direction     l2r
2122                   mother        =ucs@gb
2123                   min-code      #x0000
2124                   max-code      #xFFFF))
2125   (make-charset '=ucs@cns
2126                 "ISO/IEC 10646 for CNS 11643"
2127                 '(long-name     "UCS for CNS"
2128                   chars         256
2129                   dimension     3
2130                   columns       2
2131                   graphic       2
2132                   direction     l2r
2133                   =>iso-ir      177
2134                   mother        =ucs@unicode))
2135   (define-charset-alias 'ucs-cns '=ucs@cns)
2136   (make-charset '=ucs@cns/fw
2137                 "ISO/IEC 10646 for CNS 11643 with fullwidth"
2138                 '(long-name     "UCS for CNS-fullwidth"
2139                   chars         256
2140                   dimension     3
2141                   columns       2
2142                   graphic       2
2143                   direction     l2r
2144                   =>iso-ir      177
2145                   mother        =ucs@cns))
2146   (make-charset '=ucs-bmp@cns
2147                 "ISO/IEC 10646 BMP for CNS"
2148                 '(long-name     "BMP for CNS"
2149                   chars         256
2150                   dimension     3
2151                   columns       2
2152                   graphic       2
2153                   direction     l2r
2154                   mother        =ucs@cns
2155                   min-code      #x0000
2156                   max-code      #xFFFF))
2157   (make-charset '=ucs@jis
2158                 "ISO/IEC 10646 for JIS X0208/0212/0213"
2159                 '(long-name     "UCS for JIS"
2160                   chars         256
2161                   dimension     3
2162                   columns       2
2163                   graphic       2
2164                   direction     l2r
2165                   =>iso-ir      177
2166                   mother        =ucs@unicode))
2167   (define-charset-alias 'ucs-jis '=ucs@jis)
2168   (make-charset '=ucs@jis/fw
2169                 "ISO/IEC 10646 for JIS X0208/0212/0213 with fullwidth"
2170                 '(long-name     "UCS for JIS-fullwidth"
2171                   chars         256
2172                   dimension     3
2173                   columns       2
2174                   graphic       2
2175                   direction     l2r
2176                   =>iso-ir      177
2177                   mother        =ucs@jis))
2178   (make-charset '=ucs-bmp@jis
2179                 "ISO/IEC 10646 BMP for JIS"
2180                 '(long-name     "BMP for JIS"
2181                   chars         256
2182                   dimension     3
2183                   columns       2
2184                   graphic       2
2185                   direction     l2r
2186                   mother        =ucs@jis
2187                   min-code      #x0000
2188                   max-code      #xFFFF))
2189   ;; (make-charset '=ucs@jis/1983
2190   ;;               "ISO/IEC 10646 for JIS X 0208:1983"
2191   ;;               '(long-name     "UCS for JIS:1983"
2192   ;;                 chars         256
2193   ;;                 dimension     3
2194   ;;                 columns       2
2195   ;;                 graphic       2
2196   ;;                 direction     l2r
2197   ;;                 =>iso-ir      177
2198   ;;                 mother        =ucs@jis))
2199   (make-charset '=ucs@jis/1990
2200                 "ISO/IEC 10646 for JIS X 0208/0212:1990"
2201                 '(long-name     "UCS for JIS:1990"
2202                   chars         256
2203                   dimension     3
2204                   columns       2
2205                   graphic       2
2206                   direction     l2r
2207                   =>iso-ir      177
2208                   mother        =ucs@jis))
2209   (define-charset-alias '=ucs@jis-1990 '=ucs@jis/1990)
2210   (define-charset-alias '=ucs-jis-1990 '=ucs@jis/1990)
2211   (make-charset '=ucs@jis/2000
2212                 "ISO/IEC 10646 for JIS X 0213:2000"
2213                 '(long-name     "UCS for JIS:2000"
2214                   chars         256
2215                   dimension     3
2216                   columns       2
2217                   graphic       2
2218                   direction     l2r
2219                   =>iso-ir      177
2220                   mother        =ucs@jis))
2221   (define-charset-alias '=ucs@jis-2000 '=ucs@jis/2000)
2222   (define-charset-alias '=ucs-jis-2000 '=ucs@jis/2000)
2223   (make-charset '=ucs@jis/2004
2224                 "ISO/IEC 10646 for JIS X 0213:2004"
2225                 '(long-name     "UCS for JIS:2004"
2226                   chars         256
2227                   dimension     3
2228                   columns       2
2229                   graphic       2
2230                   direction     l2r
2231                   =>iso-ir      177
2232                   mother        =ucs@jis))
2233   (make-charset '=ucs@JP
2234                 "UCS for common glyphs used in Japan"
2235                 '(long-name     "UCS for Japan"
2236                   chars         256
2237                   dimension     3
2238                   columns       2
2239                   graphic       2
2240                   direction     l2r
2241                   =>iso-ir      177
2242                   mother        =ucs@jis/2004))
2243   (define-charset-alias '=ucs@jp '=ucs@JP)
2244   (make-charset '=ucs@JP/hanazono
2245                 "Japanese glyph-images of Hanazono Mincho"
2246                 '(long-name     "UCS for Hana-Min"
2247                   chars         256
2248                   dimension     3
2249                   columns       2
2250                   graphic       2
2251                   direction     l2r
2252                   =>iso-ir      177
2253                   mother        =ucs@JP))
2254   (make-charset '=ucs@ks
2255                 "ISO/IEC 10646 for Korean Standards"
2256                 '(long-name     "UCS for KS"
2257                   chars         256
2258                   dimension     3
2259                   columns       2
2260                   graphic       2
2261                   direction     l2r
2262                   =>iso-ir      177
2263                   mother        =ucs@unicode))
2264   (define-charset-alias 'ucs-ks '=ucs@ks)
2265   (make-charset '=ucs-bmp@ks
2266                 "ISO/IEC 10646 BMP for KS"
2267                 '(long-name     "BMP for KS"
2268                   chars         256
2269                   dimension     3
2270                   columns       2
2271                   graphic       2
2272                   direction     l2r
2273                   mother        =ucs@ks
2274                   min-code      #x0000
2275                   max-code      #xFFFF))
2276   (make-charset '=ucs@cns11643
2277                 "ISO/IEC 10646 for CNS based on www.cns11643.gov.tw"
2278                 '(long-name     "UCS for CNS11643"
2279                   chars         256
2280                   dimension     3
2281                   columns       2
2282                   graphic       2
2283                   direction     l2r
2284                   =>iso-ir      177
2285                   mother        =ucs@cns))
2286   (make-charset '=ucs@big5
2287                 "ISO/IEC 10646 for Big5"
2288                 '(long-name     "UCS for Big5"
2289                   chars         256
2290                   dimension     3
2291                   columns       2
2292                   graphic       2
2293                   direction     l2r
2294                   =>iso-ir      177
2295                   mother        =>>ucs@cns))
2296   (define-charset-alias 'ucs-big5 '=ucs@big5)
2297   (make-charset '=ucs@big5/cns11643
2298                 "ISO/IEC 10646 for Big5 based on www.cns11643.gov.tw"
2299                 '(long-name     "UCS for Big5@CNS11643"
2300                   chars         256
2301                   dimension     3
2302                   columns       2
2303                   graphic       2
2304                   direction     l2r
2305                   =>iso-ir      177
2306                   mother        =ucs@big5))
2307
2308   (make-charset
2309    '=ucs-radicals
2310    "CJK Radicals of UCS"
2311    '(long-name "UCS-Radicals"
2312                chars 256
2313                dimension 2
2314                columns 2
2315                graphic 2
2316                direction l2r
2317                registry "-zhRadicals-.*-ucs-0"
2318                mother ucs-bmp
2319                min-code #x2E00 max-code #x2FFF))
2320   (make-charset
2321    '=ucs-radicals@unicode
2322    "CJK Radicals of UCS"
2323    '(long-name "UCS-Radicals"
2324                chars 256
2325                dimension 2
2326                columns 2
2327                graphic 2
2328                direction l2r
2329                registry "-zhRadicals-.*-ucs-0"
2330                mother =ucs@unicode
2331                min-code #x2E00 max-code #x2FFF))
2332   (make-charset
2333    '=ucs-hangul
2334    "Hangul Syllables of UCS"
2335    '(long-name "UCS-Hangul-Syllables"
2336                chars 256
2337                dimension 2
2338                columns 2
2339                graphic 2
2340                direction l2r
2341                registry "-Hangul-.*-ucs-0"
2342                mother =ucs
2343                min-code #xAC00 max-code #xD7AF))
2344   (make-charset
2345    '=ucs-bmp-cjk
2346    "CJK Characters in BMP of UCS"
2347    '(long-name "UCS-BMP-CJK"
2348                chars 256
2349                dimension 2
2350                columns 2
2351                graphic 2
2352                direction l2r
2353                registry "-zh-.*-ucs-0"
2354                mother ucs-bmp
2355                min-code #x2E00
2356                max-code #x9FA5
2357                ;; max-code #xA4CF
2358                ))
2359   (make-charset
2360    '=ucs-bmp-cjk@unicode
2361    "CJK Characters in BMP of Unicode"
2362    '(long-name "Unicode-BMP-CJK"
2363                chars 256
2364                dimension 2
2365                columns 2
2366                graphic 2
2367                direction l2r
2368                registry "-zh-.*-ucs-0"
2369                mother =ucs@unicode
2370                min-code #x2E00
2371                max-code #x9FA5
2372                ;; max-code #xA4CF
2373                ))
2374   (make-charset
2375    '=ucs-bmp-cjk@JP
2376    "CJK Characters in BMP with JIS representative glyphs"
2377    '(long-name "CJK in BMP@JP"
2378                chars 256
2379                dimension 2
2380                columns 2
2381                graphic 2
2382                direction l2r
2383                registry "-ja-.*-ucs-0"
2384                mother =ucs@JP
2385                min-code #x2E00
2386                max-code #x9FA5
2387                ;; max-code #xA4CF
2388                ))
2389   (make-charset
2390    '=ucs-bmp-cjk@JP/hanazono
2391    "CJK Characters in BMP with Hanazono font"
2392    '(long-name "CJK in BMP@JP/Hanazono"
2393                chars 256
2394                dimension 2
2395                columns 2
2396                graphic 2
2397                direction l2r
2398                registry "-ja-.*-ucs-0"
2399                mother =ucs@JP/hanazono
2400                min-code #x2E00
2401                max-code #x9FA5
2402                ;; max-code #xA4CF
2403                ))
2404   (make-charset
2405    '=+>ucs-bmp-cjk@unicode
2406    "Unicode representative characters of CJK Unified Ideographs in BMP"
2407    '(long-name "Unicode-BMP-CJK unified abstract glyphs"
2408                chars 256
2409                dimension 2
2410                columns 2
2411                graphic 2
2412                direction l2r
2413                registry "-zh-.*-ucs-0"
2414                mother =+>ucs@unicode
2415                min-code #x2E00
2416                max-code #x9FA5
2417                ;; max-code #xA4CF
2418                ))
2419   (make-charset
2420    '=>ucs-bmp-cjk@unicode
2421    "Unicode representative characters of CJK Unified Ideographs in BMP"
2422    '(long-name "Unicode-BMP-CJK"
2423                chars 256
2424                dimension 2
2425                columns 2
2426                graphic 2
2427                direction l2r
2428                registry "-zh-.*-ucs-0"
2429                mother =>ucs@unicode
2430                min-code #x2E00
2431                max-code #x9FA5
2432                ;; max-code #xA4CF
2433                ))
2434   (make-charset
2435    '==>ucs-bmp-cjk@bucs
2436    "CJK Characters in BMP of BUCS"
2437    '(long-name "BUCS-BMP-CJK"
2438                chars 256
2439                dimension 2
2440                columns 2
2441                graphic 2
2442                direction l2r
2443                registry "-zh-.*-ucs-0"
2444                mother ==>ucs@bucs
2445                min-code #x2E00
2446                max-code #x9FA5
2447                ;; max-code #xA4CF
2448                ))
2449   (make-charset
2450    '=ucs-bmp-cjk-compat
2451    "CJK Compatibility Ideographs in BMP of UCS"
2452    '(long-name "CJK Compatibility Ideographs"
2453                chars 256
2454                dimension 2
2455                columns 2
2456                graphic 2
2457                direction l2r
2458                registry "-ja-.*-ucs-0"
2459                mother ucs-bmp
2460                min-code #xF900
2461                max-code #xFAFF
2462                ))
2463   (make-charset
2464    '=ucs-bmp-cjk-compat@unicode
2465    "CJK Compatibility Ideographs of Unicode representatives"
2466    '(long-name "CJK Compatibility Ideographs of Unicode"
2467                chars 256
2468                dimension 2
2469                columns 2
2470                graphic 2
2471                direction l2r
2472                registry "-ja-.*-ucs-0"
2473                mother =ucs@unicode
2474                min-code #xF900
2475                max-code #xFAFF
2476                ))
2477   (make-charset
2478    '=ucs-sip-ext-b
2479    "CJK Ideographs Extension B"
2480    '(long-name "UCS CJK Ext-B"
2481                chars 256
2482                dimension 2
2483                columns 2
2484                graphic 2
2485                direction l2r
2486                registry "\\(iso10646\\|ucs02\\)-2$"
2487                mother ucs
2488                min-code #x20000 max-code #x2A6D6
2489                code-offset #x20000))
2490   (make-charset
2491    '=ucs-sip-ext-b@iso
2492    "CJK Ideographs Extension B (ISO/IEC 10646-2)"
2493    '(long-name "UCS CJK Ext-B"
2494                chars 256
2495                dimension 2
2496                columns 2
2497                graphic 2
2498                direction l2r
2499                registry "\\(iso10646\\|ucs02\\)-2$"
2500                mother =ucs@iso
2501                min-code #x20000 max-code #x2A6D6
2502                code-offset #x20000))
2503   )
2504
2505 ;;; mule-conf.el ends here