(=+>ucs@unicode): Use `=+>ucs@iso' instead of `=>ucs@unicode' as the
[chise/xemacs-chise.git.1] / lisp / mule / mule-conf.el
1 ;;; mule-conf.el --- configure multilingual environment
2
3 ;; Copyright (C) 1995,1999 Electrotechnical Laboratory, JAPAN.
4 ;; Licensed to the Free Software Foundation.
5 ;; Copyright (C) 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2008,
6 ;;   2009, 2010, 2011 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-x0213-1
513    "JIS X 0213 Plain 1 unified abstract glyphs (unchanged part)"
514    '(registry "jisx0213\\(\\.[0-9]+\\)?-1"
515               dimension 2
516               chars 94
517               mother =>>jis-x0213-1
518               =>iso-ir 228
519               ;; final ?O
520               graphic 0
521               ;; partial t
522               ))
523
524   (make-charset
525    '=>jis-x0208
526    "JIS X 0208 based on the unchanged unification rules."
527    '(registry "jisx0208\\.1990"
528               dimension 2
529               chars 94
530               mother =+>jis-x0208
531               =>iso-ir 168
532               ;; final ?B
533               graphic 0))
534   (define-charset-alias '<=>jis-x0208 '=>jis-x0208)
535   (make-charset
536    '=>jis-x0208@1997
537    "JIS X 0208 based on the unification rule of 1997 edition."
538    '(registry "jisx0208\\.1990"
539               dimension 2
540               chars 94
541               mother =>jis-x0208
542               =>iso-ir 168
543               ;; final ?B
544               graphic 0))
545   (define-charset-alias '<=>jis-x0208@1997 '=>jis-x0208@1997)
546   (define-charset-alias '  =jis-x0208@1997 '=>jis-x0208@1997)
547
548   (make-charset
549    '=>jis-x0213-1
550    "JIS X 0213 Plain 1 abstract characters (unchanged part)"
551    '(registry "jisx0213\\(\\.[0-9]+\\)?-1"
552               dimension 2
553               chars 94
554               mother =+>jis-x0213-1
555               =>iso-ir 228
556               ;; final ?O
557               graphic 0
558               ;; partial t
559               ))
560   (define-charset-alias '<=>jis-x0213-1 '=>jis-x0213-1)
561   (make-charset
562    '=>jis-x0213-1@2000
563    "JIS X 0213:2000 Plain 1 abstract characters"
564    '(registry "jisx0213\\(\\.2000\\)-1"
565               dimension 2
566               chars 94
567               mother =>jis-x0213-1
568               =>iso-ir 228
569               ;; final ?O
570               graphic 0
571               ;; partial t
572               ))
573   (define-charset-alias '<=>jis-x0213-1@2000 '=>jis-x0213-1@2000)
574   (make-charset
575    '=>jis-x0213-1@2004
576    "JIS X 0213:2004 Plain 1 abstract characters"
577    '(registry "jisx0213\\(\\.2004\\)-1"
578               dimension 2
579               chars 94
580               mother =>jis-x0213-1
581               =>iso-ir 233
582               ;; final ?Q
583               graphic 0
584               ;; partial t
585               ))
586   (define-charset-alias '<=>jis-x0213-1@2004 '=>jis-x0213-1@2004)
587   (make-charset
588    '=+>jis-x0213-2
589    "JIS X 0213 Plain 2 based on usual unification."
590    '(registry "jisx0213\\(\\.\\(2000\\|2004\\)\\)?-2"
591               dimension 2
592               chars 94
593               mother =>>jis-x0213-2
594               =>iso-ir 229
595               ;; final ?P
596               graphic 0))
597   (define-charset-alias '=>jis-x0213-2@usual '=+>jis-x0213-2)
598   (make-charset
599    '=>jis-x0213-2
600    "JIS X 0213 Plain 2 abstract characters"
601    '(registry "jisx0213\\(\\.\\(2000\\|2004\\)\\)?-2"
602               dimension 2
603               chars 94
604               mother =+>jis-x0213-2
605               =>iso-ir 229
606               ;; final ?P
607               graphic 0))
608
609   (make-charset '=big5-cdp
610                 "Big5 with CDP extension"
611                 '(long-name     "Big5-CDP"
612                   chars         256
613                   dimension     2
614                   columns       2
615                   graphic       2
616                   direction     l2r
617                   registry      "big5\\.cdp-0"
618                   mother        chinese-big5
619                   min-code      #x8140
620                   max-code      #x8DFE))
621   (define-charset-alias 'chinese-big5-cdp '=big5-cdp)
622
623   (make-charset '=>>big5-cdp
624                 "Abstract glyphs of Big5-CDP"
625                 '(long-name     "Big5-CDP glyphs"
626                   chars         256
627                   dimension     2
628                   columns       2
629                   graphic       2
630                   direction     l2r
631                   registry      "big5\\.cdp-0"
632                   mother        =big5-cdp))
633
634   (make-charset '=>big5-cdp
635                 "Big5-CDP abstract characters"
636                 '(long-name     "Big5-CDP abstract characters"
637                   chars         256
638                   dimension     2
639                   columns       2
640                   graphic       2
641                   direction     l2r
642                   registry      "big5\\.cdp-0"
643                   mother        =>>big5-cdp))
644
645   (make-charset '=gt
646                 "GT 2000"
647                 `(long-name     "GT"
648                   chars         256
649                   dimension     3
650                   columns       2
651                   graphic       2
652                   direction     l2r
653                   registry      ""
654                   min-code      ,(lsh #x6100 16)
655                   max-code      ,(+ (lsh #x6100 16) 67547)
656                   code-offset   ,(lsh #x6100 16)))
657   (define-charset-alias 'ideograph-gt '=gt)
658   (make-charset '=>>>gt
659                 "GT 2000 abstract glyph-forms"
660                 '(long-name     "GT abstract glyph-forms"
661                   chars         256
662                   dimension     3
663                   columns       2
664                   graphic       2
665                   direction     l2r
666                   mother        =gt))
667   (make-charset '=>>gt
668                 "GT 2000 abstract glyphs"
669                 '(long-name     "GT abstract glyphs"
670                   chars         256
671                   dimension     3
672                   columns       2
673                   graphic       2
674                   direction     l2r
675                   mother        =>>>gt))
676   (define-charset-alias '<=>gt '=>>gt)
677   (define-charset-alias '<==>gt '=>>gt)
678   (make-charset '=>gt
679                 "GT 2000 abstract characters"
680                 '(long-name     "abstract GT characters"
681                   chars         256
682                   dimension     3
683                   columns       2
684                   graphic       2
685                   direction     l2r
686                   mother        =>>gt))
687   (make-charset '=gt-k
688                 "Ideographic components of GT"
689                 `(long-name     "GT components"
690                   chars         256
691                   dimension     2
692                   columns       2
693                   graphic       2
694                   direction     l2r
695                   registry      ""
696                   min-code      ,(lsh #x6110 16)
697                   max-code      ,(+ (lsh #x6110 16) 17090)
698                   code-offset   ,(lsh #x6110 16)))
699   (define-charset-alias 'ideograph-gt-k '=gt-k)
700   (make-charset '=>>gt-k
701                 "abstract glyphs of GT-K"
702                 '(long-name     "GT-K abstract glyphs"
703                   chars         256
704                   dimension     2
705                   columns       2
706                   graphic       2
707                   direction     l2r
708                   mother        =gt-k))
709   (make-charset '=>gt-k
710                 "GT-K abstract characters"
711                 '(long-name     "GT-K abstract characters"
712                   chars         256
713                   dimension     2
714                   columns       2
715                   graphic       2
716                   direction     l2r
717                   mother        =>>gt-k))
718   (let ((i 1))
719     (while (<= i 11)
720       (make-charset
721        (intern (format "=gt-pj-%d" i))
722        (format "GT 2000 (pseudo JIS encoding) part %d" i)
723        `(long-name ,(format "GT PJ %d" i)
724                    chars 94
725                    dimension 2
726                    columns 2
727                    graphic 0
728                    direction l2r
729                    registry ,(format "\\(GTpj-%d\\|jisx0208\\.GT-%d\\)$" i i)))
730       (define-charset-alias
731         (intern (format "ideograph-gt-pj-%d" i))
732         (intern (format "=gt-pj-%d" i)))
733       (setq i (1+ i))))
734   (make-charset
735    '=gt-pj-k1
736    "Ideographic parts of GT (pseudo JIS encoding) part 1"
737    '(long-name "GT K1"
738                chars 94
739                dimension 2
740                columns 2
741                graphic 0
742                direction l2r
743                registry "\\(GTKpj-1\\|jisx0208\\.GTK-1\\)$"))
744   (define-charset-alias 'ideograph-gt-pj-k1 '=gt-pj-k1)
745   (make-charset
746    '=gt-pj-k2
747    "Ideographic parts of GT (pseudo JIS encoding) part 2"
748    '(long-name "GT K2"
749                chars 94
750                dimension 2
751                columns 2
752                graphic 0
753                direction l2r
754                registry "\\(GTKpj-2\\|jisx0208\\.GTK-2\\)$"))
755   (define-charset-alias 'ideograph-gt-pj-k2 '=gt-pj-k2)
756
757   (make-charset '=daikanwa
758                 "Daikanwa dictionary (unchanged part)"
759                 `(long-name     "Daikanwa"
760                   chars         256
761                   dimension     2
762                   columns       2
763                   graphic       2
764                   direction     l2r
765                   registry      "Daikanwa\\(\\.[0-9]+\\)?-3"
766                   min-code      #xE00000
767                   max-code      ,(+ #xE00000 50100)
768                   code-offset   #xE00000))
769   (define-charset-alias 'ideograph-daikanwa '=daikanwa)
770
771   (make-charset '=daikanwa@rev1
772                 "Daikanwa dictionary (revised version)"
773                 `(long-name     "Daikanwa Rev."
774                   chars         256
775                   dimension     2
776                   columns       2
777                   graphic       2
778                   direction     l2r
779                   registry      "Daikanwa\\(\\.[0-9]+\\)?-2"
780                   mother        =daikanwa
781                   ))
782   (define-charset-alias 'ideograph-daikanwa-2 '=daikanwa@rev1)
783   (define-charset-alias '=daikanwa-rev1 '=daikanwa@rev1)
784
785   (make-charset '=daikanwa@rev2
786                 "Daikanwa dictionary (revised version 2)"
787                 `(long-name     "Daikanwa"
788                   chars         256
789                   dimension     2
790                   columns       2
791                   graphic       2
792                   direction     l2r
793                   registry      "Daikanwa\\(\\.[0-9]+\\)?-3"
794                   mother        =daikanwa
795                   min-code      1
796                   max-code      49964
797                   ;; min-code   #xE00000
798                   ;; max-code   ,(+ #xE00000 50100)
799                   ;; code-offset        #xE00000
800                   ))
801   (define-charset-alias '=daikanwa-rev2 '=daikanwa@rev2)
802
803   (make-charset '=daikanwa/+p
804                 "Daikanwa dictionary (ddddd')"
805                 `(long-name     "Daikanwa ddddd'"
806                   chars         256
807                   dimension     2
808                   columns       2
809                   graphic       2
810                   direction     l2r))
811   (make-charset '=daikanwa/+2p
812                 "Daikanwa dictionary (ddddd'')"
813                 `(long-name     "Daikanwa ddddd''"
814                   chars         256
815                   dimension     2
816                   columns       2
817                   graphic       2
818                   direction     l2r))
819   (make-charset '=daikanwa/ho
820                 "Daikanwa dictionary (Hokan)"
821                 `(long-name     "Daikanwa-ho"
822                   chars         256
823                   dimension     2
824                   columns       2
825                   graphic       2
826                   direction     l2r))
827
828   (make-charset '=>>daikanwa
829                 "Daikanwa abstract glyphs"
830                 '(long-name     "Daikanwa glyphs"
831                   chars         256
832                   dimension     2
833                   columns       2
834                   graphic       2
835                   direction     l2r
836                   registry      "Daikanwa\\(\\.[0-9]+\\)?-3"
837                   mother        =daikanwa))
838
839   (make-charset '=>daikanwa
840                 "Daikanwa abstract characters"
841                 '(long-name     "abstract Daikanwa"
842                   chars         256
843                   dimension     2
844                   columns       2
845                   graphic       2
846                   direction     l2r
847                   registry      "Daikanwa\\(\\.[0-9]+\\)?-3"
848                   mother        =>>daikanwa))
849
850   (make-charset '=shinjigen
851                 "Kadokawa ShinJigen dictionary (common parts)"
852                 `(long-name     "Shinjigen common parts"
853                   chars         256
854                   dimension     2
855                   columns       2
856                   graphic       2
857                   direction     l2r
858                   registry      "Shinjigen\\(\\.[0-9]+\\)?-*"))
859
860   (make-charset '=shinjigen@1ed
861                 "Kadokawa ShinJigen dictionary (the first edition)"
862                 `(long-name     "Shinjigen-1"
863                   chars         256
864                   dimension     2
865                   columns       2
866                   graphic       2
867                   direction     l2r
868                   mother        =shinjigen
869                   registry      "Shinjigen\\(\\.[0-9]+\\)?-1"))
870   (define-charset-alias 'shinjigen-1 '=shinjigen@1ed)
871
872   (make-charset '=shinjigen@1ed/24pr
873                 "Kadokawa ShinJigen dictionary (the 24th impression)"
874                 `(long-name     "Shinjigen-1 24pr"
875                   chars         256
876                   dimension     2
877                   columns       2
878                   graphic       2
879                   direction     l2r
880                   mother        =shinjigen@1ed))
881
882   (make-charset '=shinjigen@rev
883                 "Kadokawa ShinJigen dictionary (the revised edition)"
884                 `(long-name     "Shinjigen-2"
885                   chars         256
886                   dimension     2
887                   columns       2
888                   graphic       2
889                   direction     l2r
890                   mother        =shinjigen
891                   registry      "Shinjigen\\(\\.[0-9]+\\)?-2"))
892   (define-charset-alias 'shinjigen-2 '=shinjigen@rev)
893   (make-charset '=shinjigen/+p@rev
894                 "ShinJigen (the second edition) number with '"
895                 `(long-name     "Shinjigen-2 with '"
896                   chars         256
897                   dimension     2
898                   columns       2
899                   graphic       2
900                   direction     l2r))
901   (define-charset-alias 'shinjigen-2-p '=shinjigen/+p@rev)
902
903   (make-charset '=big5-pua
904                 "Big5 with private used area"
905                 '(long-name     "Big5-PUA"
906                   chars         256
907                   dimension     2
908                   columns       2
909                   graphic       2
910                   direction     l2r
911                   mother        chinese-big5
912                   registry      "Big5\\.ETEN"))
913   (define-charset-alias 'chinese-big5-pua '=big5-pua)
914   (make-charset '=big5-eten
915                 "Big5 ETEN"
916                 '(long-name     "Big5-ETEN"
917                   chars         256
918                   dimension     2
919                   columns       2
920                   graphic       2
921                   direction     l2r
922                   mother        chinese-big5
923                   min-code      #x8140
924                   max-code      #xFEFE
925                   registry      "Big5\\.ETEN"))
926   (define-charset-alias 'chinese-big5-eten '=big5-eten)
927   (make-charset 'chinese-big5-eten-a
928                 "Big5 ETEN (#xF9D6 .. #xF9FE)"
929                 '(long-name     "Big5-ETEN-a"
930                   chars         256
931                   dimension     2
932                   columns       2
933                   graphic       2
934                   direction     l2r
935                   mother        chinese-big5
936                   min-code      #xF9D6
937                   max-code      #xF9FE
938                   registry      "Big5\\.ETEN"))
939   (make-charset 'chinese-big5-eten-b
940                 "Big5 ETEN (#xC6A1 .. #xC8FE)"
941                 '(long-name     "Big5-ETEN-b"
942                   chars         256
943                   dimension     2
944                   columns       2
945                   graphic       2
946                   direction     l2r
947                   mother        chinese-big5
948                   min-code      #xC6A1
949                   max-code      #xC8FE
950                   registry      "Big5\\.ETEN"))
951
952   (let* ((i 1)
953          (hzk-min (+ (lsh #x6200 16) 65536))
954          (hzk-max (+ hzk-min 65535)))
955     (while (<= i 12)
956       (make-charset
957        (intern (format "=hanziku-%d" i))
958        (format "HANZIKU (pseudo BIG5 encoding) part %d" i)
959        `(long-name ,(format "HANZIKU-%d" i)
960                    chars 256
961                    dimension 2
962                    columns 2
963                    graphic 2
964                    direction l2r
965                    registry ,(format "hanziku-%d$" i i)
966                    min-code ,hzk-min
967                    max-code ,hzk-max
968                    code-offset ,hzk-min))
969       (define-charset-alias
970         (intern (format "ideograph-hanziku-%d" i))
971         (intern (format "=hanziku-%d" i)))
972       (setq hzk-min (1+ hzk-max)
973             hzk-max (+ hzk-min 65535))
974       (setq i (1+ i))))
975
976   (make-charset '=cbeta "CBETA private characters"
977                 '(long-name     "CBETA PUA"
978                   chars         256
979                   dimension     2
980                   registry      "cbeta-0"
981                   graphic       2
982                   min-code      #xE20000
983                   max-code      #xE2FFFF
984                   code-offset   #xE20000
985                   columns       2
986                   direction     l2r))
987   (define-charset-alias 'ideograph-cbeta '=cbeta)
988
989   (make-charset '=>>cbeta "CBETA abstract glyphs"
990                 '(long-name     "CBETA glyphs"
991                   chars         256
992                   dimension     2
993                   registry      "cbeta-0"
994                   graphic       2
995                   columns       2
996                   direction     l2r
997                   mother        =cbeta))
998
999   (make-charset '=zinbun-oracle
1000                 "Oracle Bones Script"
1001                 `(long-name     "Oracle Bones Script in Zinbun, Kyoto Univ."
1002                   chars         256
1003                   dimension     2
1004                   registry      "zob1968-0"
1005                   graphic       2
1006                   min-code      #xE70000
1007                   max-code      ,(+ #xE70000 8192)
1008                   code-offset   #xE70000
1009                   columns       2
1010                   direction     l2r))
1011
1012   (make-charset '=>zinbun-oracle
1013                 "Abstract Oracle Bones"
1014                 '(long-name     "Abstract characters of Zinbun Oracle Bones."
1015                   chars         256
1016                   dimension     2
1017                   mother        =zinbun-oracle
1018                   registry      "zob1968-0"
1019                   graphic       2
1020                   columns       2
1021                   direction     l2r))
1022
1023   (make-charset '=jef-china3
1024                 "JEF + CHINA3 private characters"
1025                 '(long-name     "JEF + CHINA3"
1026                   chars         256
1027                   dimension     2
1028                   columns       2
1029                   graphic       2
1030                   direction     l2r
1031                   registry      "china3jef-0"
1032                   min-code      #xE80000
1033                   max-code      #xE8FFFF
1034                   code-offset   #xE80000))
1035   (define-charset-alias 'china3-jef '=jef-china3)
1036
1037   (make-charset '=ruimoku-v6
1038                 "private characters used in RUIMOKU Version.6"
1039                 `(long-name     "RUI6"
1040                   chars         256
1041                   dimension     2
1042                   columns       2
1043                   graphic       2
1044                   direction     l2r
1045                   registry      "rui6-0"
1046                   ;; mother     ucs
1047                   min-code      #xE90000 ; #xE000
1048                   max-code      #xE908FF ; #xE8FF
1049                   code-offset   ,(- #xE90000 #xE000)))
1050   (make-charset '=>>ruimoku-v6
1051                 "RUIMOKU Version.6 glyphs"
1052                 '(long-name     "RUI6 glyphs"
1053                   chars         256
1054                   dimension     2
1055                   columns       2
1056                   graphic       2
1057                   direction     l2r
1058                   registry      "rui6-0"
1059                   mother        =ruimoku-v6))
1060
1061   (make-charset '==>ucs@bucs
1062                 "Basic Subset of Coded Character Sets (BUCS)"
1063                 '(long-name     "BUCS abstract characters"
1064                   chars         256
1065                   dimension     3
1066                   columns       2
1067                   graphic       2
1068                   direction     l2r
1069                   =>iso-ir      177
1070                   mother        =ucs))
1071
1072   (make-charset '=>ucs@iso
1073                 "Abstract characters of ISO/IEC 10646 representatives"
1074                 '(long-name     "UCS characters for ISO"
1075                   chars         256
1076                   dimension     3
1077                   columns       2
1078                   graphic       2
1079                   direction     l2r
1080                   =>iso-ir      177
1081                   mother        =ucs))
1082   (make-charset '=>ucs@unicode
1083                 "Abstract characters of Unicode representatives"
1084                 '(long-name     "UCS characters for Unicode"
1085                   chars         256
1086                   dimension     3
1087                   columns       2
1088                   graphic       2
1089                   direction     l2r
1090                   =>iso-ir      177
1091                   mother        =>ucs@iso))
1092   (make-charset '=>ucs@jis
1093                 "UCS representative characters for JIS X0208/0212/0213"
1094                 '(long-name     "UCS characters for JIS"
1095                   chars         256
1096                   dimension     3
1097                   columns       2
1098                   graphic       2
1099                   direction     l2r
1100                   =>iso-ir      177
1101                   mother        =>ucs@unicode))
1102   (make-charset '=>ucs@ks
1103                 "UCS representative characters for Korean Standards"
1104                 '(long-name     "UCS characters for KS"
1105                   chars         256
1106                   dimension     3
1107                   columns       2
1108                   graphic       2
1109                   direction     l2r
1110                   =>iso-ir      177
1111                   mother        =>ucs@unicode))
1112   (make-charset '=>ucs@cns
1113                 "UCS representatives characters for CNS 11643 sources"
1114                 '(long-name     "UCS characters for CNS 11643"
1115                   chars         256
1116                   dimension     3
1117                   columns       2
1118                   graphic       2
1119                   direction     l2r
1120                   =>iso-ir      177
1121                   mother        =>ucs@unicode))
1122
1123   (make-charset '=+>ucs@iso
1124                 "UCS based on ISO/IEC 10646 representative glyphs"
1125                 '(long-name     "Unified abstract glyphs of UCS"
1126                   chars         256
1127                   dimension     3
1128                   columns       2
1129                   graphic       2
1130                   direction     l2r
1131                   =>iso-ir      177
1132                   mother        =>ucs@iso))
1133   (make-charset '=+>ucs@unicode
1134                 "Unicode representative unified abstract glyphs"
1135                 '(long-name     "UCS unified abstract glyphs for Unicode"
1136                   chars         256
1137                   dimension     3
1138                   columns       2
1139                   graphic       2
1140                   direction     l2r
1141                   =>iso-ir      177
1142                   mother        =+>ucs@iso))
1143   (make-charset '=+>ucs@jis
1144                 "UCS based on Japanese usual unification"
1145                 '(long-name     "UCS unified abstract glyphs for JP"
1146                   chars         256
1147                   dimension     3
1148                   columns       2
1149                   graphic       2
1150                   direction     l2r
1151                   =>iso-ir      177
1152                   mother        =+>ucs@unicode))
1153   (define-charset-alias '=>ucs@JP '=+>ucs@jis)
1154   (make-charset '=+>ucs@jis/1990
1155                 "UCS representative characters for JIS X0208/0212:1990"
1156                 '(long-name     "UCS characters for JIS:1990"
1157                   chars         256
1158                   dimension     3
1159                   columns       2
1160                   graphic       2
1161                   direction     l2r
1162                   =>iso-ir      177
1163                   mother        =+>ucs@jis))
1164   (define-charset-alias '=>ucs@jis/1990 '=+>ucs@jis/1990)
1165   (make-charset '=+>ucs@ks
1166                 "UCS representative unified abstract glyphs for Korean Standards"
1167                 '(long-name     "UCS unified abstract glyphs for KS"
1168                   chars         256
1169                   dimension     3
1170                   columns       2
1171                   graphic       2
1172                   direction     l2r
1173                   =>iso-ir      177
1174                   mother        =+>ucs@unicode))
1175   (make-charset '=+>ucs@cns
1176                 "UCS representatives unified abstract glyphs for CNS 11643 sources"
1177                 '(long-name     "UCS unified abstract glyphs for CNS"
1178                   chars         256
1179                   dimension     3
1180                   columns       2
1181                   graphic       2
1182                   direction     l2r
1183                   =>iso-ir      177
1184                   mother        =+>ucs@unicode))
1185
1186   (make-charset '=>>ucs@iso
1187                 "Representative abstract-glyphs of ISO/IEC 10646"
1188                 '(long-name     "UCS abstract glyphs for UCS"
1189                   chars         256
1190                   dimension     3
1191                   columns       2
1192                   graphic       2
1193                   direction     l2r
1194                   =>iso-ir      177
1195                   mother        =+>ucs@iso))
1196   (make-charset '=>>ucs@unicode
1197                 "Representative abstract-glyphs of Unicode"
1198                 '(long-name     "Unicode abstract glyphs"
1199                   chars         256
1200                   dimension     3
1201                   columns       2
1202                   graphic       2
1203                   direction     l2r
1204                   =>iso-ir      177
1205                   mother        =>>ucs@iso))
1206   (make-charset '=>>ucs@jis
1207                 "UCS Representative abstract-glyphs for JIS X0208/0212/0213"
1208                 '(long-name     "UCS abstract glyphs for JIS"
1209                   chars         256
1210                   dimension     3
1211                   columns       2
1212                   graphic       2
1213                   direction     l2r
1214                   =>iso-ir      177
1215                   mother        =>>ucs@unicode))
1216   (make-charset '=>>ucs@jis/1990
1217                 "UCS Representative glyphs for JIS X 0208/0212:1990"
1218                 '(long-name     "UCS glyphs for JIS:1990"
1219                   chars         256
1220                   dimension     3
1221                   columns       2
1222                   graphic       2
1223                   direction     l2r
1224                   =>iso-ir      177
1225                   mother        =>>ucs@jis))
1226   (make-charset '=>>ucs@jis/2000
1227                 "UCS Representative glyphs for JIS X 0213:2000"
1228                 '(long-name     "UCS glyphs for JIS:2000"
1229                   chars         256
1230                   dimension     3
1231                   columns       2
1232                   graphic       2
1233                   direction     l2r
1234                   =>iso-ir      177
1235                   mother        =>>ucs@jis))
1236   (make-charset '=>>ucs@jis/2004
1237                 "UCS Representative glyphs for JIS X 0213:2004"
1238                 '(long-name     "UCS glyphs for JIS:2004"
1239                   chars         256
1240                   dimension     3
1241                   columns       2
1242                   graphic       2
1243                   direction     l2r
1244                   =>iso-ir      177
1245                   mother        =>>ucs@jis))
1246   (make-charset '=>>ucs@JP
1247                 "UCS abstract-glyphs based on Japanese style glyphs"
1248                 '(long-name     "UCS glyphs for JP"
1249                   chars         256
1250                   dimension     3
1251                   columns       2
1252                   graphic       2
1253                   direction     l2r
1254                   =>iso-ir      177
1255                   mother        =>>ucs@jis/2004))
1256   (make-charset '=>>ucs@ks
1257                 "UCS Representative glyphs for Korean Standards"
1258                 '(long-name     "UCS glyphs for KS"
1259                   chars         256
1260                   dimension     3
1261                   columns       2
1262                   graphic       2
1263                   direction     l2r
1264                   =>iso-ir      177
1265                   mother        =>>ucs@unicode))
1266   (make-charset '=>>ucs@cns
1267                 "UCS Representative glyphs for CNS 11643 sources"
1268                 '(long-name     "UCS glyphs for CNS"
1269                   chars         256
1270                   dimension     3
1271                   columns       2
1272                   graphic       2
1273                   direction     l2r
1274                   =>iso-ir      177
1275                   mother        =>>ucs@unicode))
1276
1277   (make-charset '=>>>ucs@iso
1278                 "Representative glyph-forms of ISO/IEC 10646"
1279                 '(long-name     "UCS glyph-forms for UCS"
1280                   chars         256
1281                   dimension     3
1282                   columns       2
1283                   graphic       2
1284                   direction     l2r
1285                   =>iso-ir      177
1286                   mother        =>>ucs@iso))
1287   (make-charset '=>>>ucs@unicode
1288                 "Representative glyph-forms of Unicode"
1289                 '(long-name     "UCS glyph-forms for Unicode"
1290                   chars         256
1291                   dimension     3
1292                   columns       2
1293                   graphic       2
1294                   direction     l2r
1295                   =>iso-ir      177
1296                   mother        =>>>ucs@iso))
1297   (make-charset '=>>>ucs@jis
1298                 "UCS Representative glyph-forms for JIS X0208/0212/0213"
1299                 '(long-name     "UCS glyph-forms for JIS"
1300                   chars         256
1301                   dimension     3
1302                   columns       2
1303                   graphic       2
1304                   direction     l2r
1305                   =>iso-ir      177
1306                   mother        =>>>ucs@unicode))
1307   (make-charset '=>>>ucs@jis/1990
1308                 "UCS Representative glyph-forms for JIS X 0208/0212:1990"
1309                 '(long-name     "UCS glyph-forms for JIS:1990"
1310                   chars         256
1311                   dimension     3
1312                   columns       2
1313                   graphic       2
1314                   direction     l2r
1315                   =>iso-ir      177
1316                   mother        =>>>ucs@jis))
1317   (make-charset '=>>>ucs@jis/2000
1318                 "UCS Representative glyph-forms for JIS X 0213:2000"
1319                 '(long-name     "UCS glyph-forms for JIS:2000"
1320                   chars         256
1321                   dimension     3
1322                   columns       2
1323                   graphic       2
1324                   direction     l2r
1325                   =>iso-ir      177
1326                   mother        =>>>ucs@jis))
1327   (make-charset '=>>>ucs@jis/2004
1328                 "UCS Representative glyph-forms for JIS X 0213:2004"
1329                 '(long-name     "UCS glyph-forms for JIS:2004"
1330                   chars         256
1331                   dimension     3
1332                   columns       2
1333                   graphic       2
1334                   direction     l2r
1335                   =>iso-ir      177
1336                   mother        =>>>ucs@jis))
1337   (make-charset '=>>>ucs@ks
1338                 "UCS Representative glyph-forms for Korean Standards"
1339                 '(long-name     "UCS glyph-forms for KS"
1340                   chars         256
1341                   dimension     3
1342                   columns       2
1343                   graphic       2
1344                   direction     l2r
1345                   =>iso-ir      177
1346                   mother        =>>>ucs@unicode))
1347   (make-charset '=>>>ucs@cns
1348                 "UCS Representative glyph-forms for CNS 11643 sources"
1349                 '(long-name     "UCS glyph-forms for CNS"
1350                   chars         256
1351                   dimension     3
1352                   columns       2
1353                   graphic       2
1354                   direction     l2r
1355                   =>iso-ir      177
1356                   mother        =>>>ucs@unicode))
1357
1358   (make-charset '=ucs@iso
1359                 "ISO/IEC 10646 for its representative glyphs"
1360                 '(long-name     "UCS for ISO"
1361                   chars         256
1362                   dimension     3
1363                   columns       2
1364                   graphic       2
1365                   direction     l2r
1366                   =>iso-ir      177
1367                   mother        =>>>ucs@iso))
1368   (make-charset '=ucs@unicode
1369                 "Unicode for its representative glyphs"
1370                 '(long-name     "UCS for Unicode"
1371                   chars         256
1372                   dimension     3
1373                   columns       2
1374                   graphic       2
1375                   direction     l2r
1376                   =>iso-ir      177
1377                   mother        =ucs@iso))
1378   (make-charset '=ucs@gb
1379                 "ISO/IEC 10646 for GB"
1380                 '(long-name     "UCS for GB"
1381                   chars         256
1382                   dimension     3
1383                   columns       2
1384                   graphic       2
1385                   direction     l2r
1386                   =>iso-ir      177
1387                   mother        =ucs@unicode))
1388   (define-charset-alias 'ucs-gb '=ucs@gb)
1389   (make-charset '=ucs@gb/fw
1390                 "ISO/IEC 10646 for GB with fullwidth"
1391                 '(long-name     "UCS for GB-fullwidth"
1392                   chars         256
1393                   dimension     3
1394                   columns       2
1395                   graphic       2
1396                   direction     l2r
1397                   =>iso-ir      177
1398                   mother        =ucs@gb))
1399   (make-charset '=ucs-bmp@gb
1400                 "ISO/IEC 10646 BMP for GB"
1401                 '(long-name     "BMP for GB"
1402                   chars         256
1403                   dimension     3
1404                   columns       2
1405                   graphic       2
1406                   direction     l2r
1407                   mother        =ucs@gb
1408                   min-code      #x0000
1409                   max-code      #xFFFF))
1410   (make-charset '=ucs@cns
1411                 "ISO/IEC 10646 for CNS 11643"
1412                 '(long-name     "UCS for CNS"
1413                   chars         256
1414                   dimension     3
1415                   columns       2
1416                   graphic       2
1417                   direction     l2r
1418                   =>iso-ir      177
1419                   mother        =ucs@unicode))
1420   (define-charset-alias 'ucs-cns '=ucs@cns)
1421   (make-charset '=ucs@cns/fw
1422                 "ISO/IEC 10646 for CNS 11643 with fullwidth"
1423                 '(long-name     "UCS for CNS-fullwidth"
1424                   chars         256
1425                   dimension     3
1426                   columns       2
1427                   graphic       2
1428                   direction     l2r
1429                   =>iso-ir      177
1430                   mother        =ucs@cns))
1431   (make-charset '=ucs-bmp@cns
1432                 "ISO/IEC 10646 BMP for CNS"
1433                 '(long-name     "BMP for CNS"
1434                   chars         256
1435                   dimension     3
1436                   columns       2
1437                   graphic       2
1438                   direction     l2r
1439                   mother        =ucs@cns
1440                   min-code      #x0000
1441                   max-code      #xFFFF))
1442   (make-charset '=ucs@jis
1443                 "ISO/IEC 10646 for JIS X0208/0212/0213"
1444                 '(long-name     "UCS for JIS"
1445                   chars         256
1446                   dimension     3
1447                   columns       2
1448                   graphic       2
1449                   direction     l2r
1450                   =>iso-ir      177
1451                   mother        =ucs@unicode))
1452   (define-charset-alias 'ucs-jis '=ucs@jis)
1453   (make-charset '=ucs@jis/fw
1454                 "ISO/IEC 10646 for JIS X0208/0212/0213 with fullwidth"
1455                 '(long-name     "UCS for JIS-fullwidth"
1456                   chars         256
1457                   dimension     3
1458                   columns       2
1459                   graphic       2
1460                   direction     l2r
1461                   =>iso-ir      177
1462                   mother        =ucs@jis))
1463   (make-charset '=ucs-bmp@jis
1464                 "ISO/IEC 10646 BMP for JIS"
1465                 '(long-name     "BMP for JIS"
1466                   chars         256
1467                   dimension     3
1468                   columns       2
1469                   graphic       2
1470                   direction     l2r
1471                   mother        =ucs@jis
1472                   min-code      #x0000
1473                   max-code      #xFFFF))
1474   ;; (make-charset '=ucs@jis/1983
1475   ;;               "ISO/IEC 10646 for JIS X 0208:1983"
1476   ;;               '(long-name     "UCS for JIS:1983"
1477   ;;                 chars         256
1478   ;;                 dimension     3
1479   ;;                 columns       2
1480   ;;                 graphic       2
1481   ;;                 direction     l2r
1482   ;;                 =>iso-ir      177
1483   ;;                 mother        =ucs@jis))
1484   (make-charset '=ucs@jis/1990
1485                 "ISO/IEC 10646 for JIS X 0208/0212:1990"
1486                 '(long-name     "UCS for JIS:1990"
1487                   chars         256
1488                   dimension     3
1489                   columns       2
1490                   graphic       2
1491                   direction     l2r
1492                   =>iso-ir      177
1493                   mother        =ucs@jis))
1494   (define-charset-alias '=ucs@jis-1990 '=ucs@jis/1990)
1495   (define-charset-alias '=ucs-jis-1990 '=ucs@jis/1990)
1496   (make-charset '=ucs@jis/2000
1497                 "ISO/IEC 10646 for JIS X 0213:2000"
1498                 '(long-name     "UCS for JIS:2000"
1499                   chars         256
1500                   dimension     3
1501                   columns       2
1502                   graphic       2
1503                   direction     l2r
1504                   =>iso-ir      177
1505                   mother        =ucs@jis))
1506   (define-charset-alias '=ucs@jis-2000 '=ucs@jis/2000)
1507   (define-charset-alias '=ucs-jis-2000 '=ucs@jis/2000)
1508   (make-charset '=ucs@jis/2004
1509                 "ISO/IEC 10646 for JIS X 0213:2004"
1510                 '(long-name     "UCS for JIS:2004"
1511                   chars         256
1512                   dimension     3
1513                   columns       2
1514                   graphic       2
1515                   direction     l2r
1516                   =>iso-ir      177
1517                   mother        =ucs@jis))
1518   (make-charset '=ucs@JP
1519                 "UCS for common glyphs used in Japan"
1520                 '(long-name     "UCS for Japan"
1521                   chars         256
1522                   dimension     3
1523                   columns       2
1524                   graphic       2
1525                   direction     l2r
1526                   =>iso-ir      177
1527                   mother        =ucs@jis/2004))
1528   (define-charset-alias '=ucs@jp '=ucs@JP)
1529   (make-charset '=ucs@JP/hanazono
1530                 "Japanese glyph-images of Hanazono Mincho"
1531                 '(long-name     "UCS for Hana-Min"
1532                   chars         256
1533                   dimension     3
1534                   columns       2
1535                   graphic       2
1536                   direction     l2r
1537                   =>iso-ir      177
1538                   mother        =ucs@JP))
1539   (make-charset '=ucs@ks
1540                 "ISO/IEC 10646 for Korean Standards"
1541                 '(long-name     "UCS for KS"
1542                   chars         256
1543                   dimension     3
1544                   columns       2
1545                   graphic       2
1546                   direction     l2r
1547                   =>iso-ir      177
1548                   mother        =ucs@unicode))
1549   (define-charset-alias 'ucs-ks '=ucs@ks)
1550   (make-charset '=ucs-bmp@ks
1551                 "ISO/IEC 10646 BMP for KS"
1552                 '(long-name     "BMP for KS"
1553                   chars         256
1554                   dimension     3
1555                   columns       2
1556                   graphic       2
1557                   direction     l2r
1558                   mother        =ucs@ks
1559                   min-code      #x0000
1560                   max-code      #xFFFF))
1561   (make-charset '=ucs@cns11643
1562                 "ISO/IEC 10646 for CNS based on www.cns11643.gov.tw"
1563                 '(long-name     "UCS for CNS11643"
1564                   chars         256
1565                   dimension     3
1566                   columns       2
1567                   graphic       2
1568                   direction     l2r
1569                   =>iso-ir      177
1570                   mother        =ucs@cns))
1571   (make-charset '=ucs@big5
1572                 "ISO/IEC 10646 for Big5"
1573                 '(long-name     "UCS for Big5"
1574                   chars         256
1575                   dimension     3
1576                   columns       2
1577                   graphic       2
1578                   direction     l2r
1579                   =>iso-ir      177
1580                   mother        =>>ucs@cns))
1581   (define-charset-alias 'ucs-big5 '=ucs@big5)
1582   (make-charset '=ucs@big5/cns11643
1583                 "ISO/IEC 10646 for Big5 based on www.cns11643.gov.tw"
1584                 '(long-name     "UCS for Big5@CNS11643"
1585                   chars         256
1586                   dimension     3
1587                   columns       2
1588                   graphic       2
1589                   direction     l2r
1590                   =>iso-ir      177
1591                   mother        =ucs@big5))
1592
1593   (make-charset
1594    '=ucs-radicals
1595    "CJK Radicals of UCS"
1596    '(long-name "UCS-Radicals"
1597                chars 256
1598                dimension 2
1599                columns 2
1600                graphic 2
1601                direction l2r
1602                registry "-zhRadicals-.*-ucs-0"
1603                mother ucs-bmp
1604                min-code #x2E00 max-code #x2FFF))
1605   (make-charset
1606    '=ucs-radicals@unicode
1607    "CJK Radicals of UCS"
1608    '(long-name "UCS-Radicals"
1609                chars 256
1610                dimension 2
1611                columns 2
1612                graphic 2
1613                direction l2r
1614                registry "-zhRadicals-.*-ucs-0"
1615                mother =ucs@unicode
1616                min-code #x2E00 max-code #x2FFF))
1617   (make-charset
1618    '=ucs-hangul
1619    "Hangul Syllables of UCS"
1620    '(long-name "UCS-Hangul-Syllables"
1621                chars 256
1622                dimension 2
1623                columns 2
1624                graphic 2
1625                direction l2r
1626                registry "-Hangul-.*-ucs-0"
1627                mother =ucs
1628                min-code #xAC00 max-code #xD7AF))
1629   (make-charset
1630    '=ucs-bmp-cjk
1631    "CJK Characters in BMP of UCS"
1632    '(long-name "UCS-BMP-CJK"
1633                chars 256
1634                dimension 2
1635                columns 2
1636                graphic 2
1637                direction l2r
1638                registry "-zh-.*-ucs-0"
1639                mother ucs-bmp
1640                min-code #x2E00
1641                max-code #x9FA5
1642                ;; max-code #xA4CF
1643                ))
1644   (make-charset
1645    '=ucs-bmp-cjk@unicode
1646    "CJK Characters in BMP of Unicode"
1647    '(long-name "Unicode-BMP-CJK"
1648                chars 256
1649                dimension 2
1650                columns 2
1651                graphic 2
1652                direction l2r
1653                registry "-zh-.*-ucs-0"
1654                mother =ucs@unicode
1655                min-code #x2E00
1656                max-code #x9FA5
1657                ;; max-code #xA4CF
1658                ))
1659   (make-charset
1660    '=ucs-bmp-cjk@JP
1661    "CJK Characters in BMP with JIS representative glyphs"
1662    '(long-name "CJK in BMP@JP"
1663                chars 256
1664                dimension 2
1665                columns 2
1666                graphic 2
1667                direction l2r
1668                registry "-ja-.*-ucs-0"
1669                mother =ucs@JP
1670                min-code #x2E00
1671                max-code #x9FA5
1672                ;; max-code #xA4CF
1673                ))
1674   (make-charset
1675    '=ucs-bmp-cjk@JP/hanazono
1676    "CJK Characters in BMP with Hanazono font"
1677    '(long-name "CJK in BMP@JP/Hanazono"
1678                chars 256
1679                dimension 2
1680                columns 2
1681                graphic 2
1682                direction l2r
1683                registry "-ja-.*-ucs-0"
1684                mother =ucs@JP/hanazono
1685                min-code #x2E00
1686                max-code #x9FA5
1687                ;; max-code #xA4CF
1688                ))
1689   (make-charset
1690    '=>ucs-bmp-cjk@unicode
1691    "Unicode representative characters of CJK Unified Ideographs in BMP"
1692    '(long-name "Unicode-BMP-CJK"
1693                chars 256
1694                dimension 2
1695                columns 2
1696                graphic 2
1697                direction l2r
1698                registry "-zh-.*-ucs-0"
1699                mother =>ucs@unicode
1700                min-code #x2E00
1701                max-code #x9FA5
1702                ;; max-code #xA4CF
1703                ))
1704   (make-charset
1705    '==>ucs-bmp-cjk@bucs
1706    "CJK Characters in BMP of BUCS"
1707    '(long-name "BUCS-BMP-CJK"
1708                chars 256
1709                dimension 2
1710                columns 2
1711                graphic 2
1712                direction l2r
1713                registry "-zh-.*-ucs-0"
1714                mother ==>ucs@bucs
1715                min-code #x2E00
1716                max-code #x9FA5
1717                ;; max-code #xA4CF
1718                ))
1719   (make-charset
1720    '=ucs-bmp-cjk-compat
1721    "CJK Compatibility Ideographs in BMP of UCS"
1722    '(long-name "CJK Compatibility Ideographs"
1723                chars 256
1724                dimension 2
1725                columns 2
1726                graphic 2
1727                direction l2r
1728                registry "-ja-.*-ucs-0"
1729                mother ucs-bmp
1730                min-code #xF900
1731                max-code #xFAFF
1732                ))
1733   (make-charset
1734    '=ucs-bmp-cjk-compat@unicode
1735    "CJK Compatibility Ideographs of Unicode representatives"
1736    '(long-name "CJK Compatibility Ideographs of Unicode"
1737                chars 256
1738                dimension 2
1739                columns 2
1740                graphic 2
1741                direction l2r
1742                registry "-ja-.*-ucs-0"
1743                mother =ucs@unicode
1744                min-code #xF900
1745                max-code #xFAFF
1746                ))
1747   (make-charset
1748    '=ucs-sip-ext-b
1749    "CJK Ideographs Extension B"
1750    '(long-name "UCS CJK Ext-B"
1751                chars 256
1752                dimension 2
1753                columns 2
1754                graphic 2
1755                direction l2r
1756                registry "\\(iso10646\\|ucs02\\)-2$"
1757                mother ucs
1758                min-code #x20000 max-code #x2A6D6
1759                code-offset #x20000))
1760   (make-charset
1761    '=ucs-sip-ext-b@iso
1762    "CJK Ideographs Extension B (ISO/IEC 10646-2)"
1763    '(long-name "UCS CJK Ext-B"
1764                chars 256
1765                dimension 2
1766                columns 2
1767                graphic 2
1768                direction l2r
1769                registry "\\(iso10646\\|ucs02\\)-2$"
1770                mother =ucs@iso
1771                min-code #x20000 max-code #x2A6D6
1772                code-offset #x20000))
1773
1774   (make-charset
1775    '=adobe-japan1-base
1776    "Adobe-Japan1 Character Collection for CID-Keyed Fonts"
1777    `(long-name "Adobe-Japan1"
1778                chars 256
1779                dimension 2
1780                columns 2
1781                graphic 2
1782                direction l2r
1783                registry "AdobeJapan1-[0-6]$"
1784                min-code ,(lsh #x6300 16)
1785                max-code ,(+ (lsh #x6300 16) 23057)
1786                code-offset      ,(lsh #x6300 16)))
1787   (make-charset
1788    '=adobe-japan1-0
1789    "Adobe-Japan1-0 Character Collection for CID-Keyed Fonts"
1790    '(long-name "Adobe-Japan1-0"
1791                chars 256
1792                dimension 2
1793                columns 2
1794                graphic 2
1795                direction l2r
1796                mother =adobe-japan1-base
1797                min-code 0
1798                max-code 8283
1799                registry "AdobeJapan1-0$"))
1800   (make-charset
1801    '=adobe-japan1-1
1802    "Adobe-Japan1-1 Character Collection for CID-Keyed Fonts"
1803    '(long-name "Adobe-Japan1-1"
1804                chars 256
1805                dimension 2
1806                columns 2
1807                graphic 2
1808                direction l2r
1809                mother =adobe-japan1-0
1810                min-code 0
1811                max-code 8358
1812                registry "AdobeJapan1-1$"))
1813   (make-charset
1814    '=adobe-japan1-2
1815    "Adobe-Japan1-2 Character Collection for CID-Keyed Fonts"
1816    '(long-name "Adobe-Japan1-2"
1817                chars 256
1818                dimension 2
1819                columns 2
1820                graphic 2
1821                direction l2r
1822                mother =adobe-japan1-1
1823                min-code 0
1824                max-code 8719
1825                registry "AdobeJapan1-2$"))
1826   (make-charset
1827    '=adobe-japan1-3
1828    "Adobe-Japan1-3 Character Collection for CID-Keyed Fonts"
1829    '(long-name "Adobe-Japan1-3"
1830                chars 256
1831                dimension 2
1832                columns 2
1833                graphic 2
1834                direction l2r
1835                mother =adobe-japan1-2
1836                min-code 0
1837                max-code 9353
1838                registry "AdobeJapan1-3$"))
1839   (make-charset
1840    '=adobe-japan1-4
1841    "Adobe-Japan1-4 Character Collection for CID-Keyed Fonts"
1842    '(long-name "Adobe-Japan1-4"
1843                chars 256
1844                dimension 2
1845                columns 2
1846                graphic 2
1847                direction l2r
1848                mother =adobe-japan1-3
1849                min-code 0
1850                max-code 15443
1851                registry "AdobeJapan1-4$"))
1852   (make-charset
1853    '=adobe-japan1-5
1854    "Adobe-Japan1-5 Character Collection for CID-Keyed Fonts"
1855    '(long-name "Adobe-Japan1-5"
1856                chars 256
1857                dimension 2
1858                columns 2
1859                graphic 2
1860                direction l2r
1861                mother =adobe-japan1-4
1862                min-code 0
1863                max-code 20316
1864                registry "AdobeJapan1-5$"))
1865   (make-charset
1866    '=adobe-japan1-6
1867    "Adobe-Japan1-6 Character Collection for CID-Keyed Fonts"
1868    '(long-name "Adobe-Japan1-6"
1869                chars 256
1870                dimension 2
1871                columns 2
1872                graphic 2
1873                direction l2r
1874                mother =adobe-japan1-5
1875                min-code 0
1876                max-code 23057
1877                registry "AdobeJapan1-6$"))
1878   (make-charset
1879    '=>>adobe-japan1
1880    "Adobe-Japan1 abstract glyphs"
1881    '(long-name "Adobe-Japan1 abstract glyphs"
1882                chars 256
1883                dimension 2
1884                columns 2
1885                graphic 2
1886                direction l2r
1887                mother =adobe-japan1-6
1888                registry "AdobeJapan1-6$"))
1889
1890   (make-charset
1891    '=hanyo-denshi/ja
1892    "JA (JIS X0208) part of Han'you-Denshi characters"
1893    `(long-name "Han'you-Denshi/JA"
1894                chars 94
1895                dimension 2
1896                columns 2
1897                graphic 2
1898                direction l2r
1899                registry "HanyoDenshi\\.JA-0$"
1900                min-code ,(lsh #x6400 16)
1901                max-code ,(+ (lsh #x6400 16) (1- (* 94 94)))
1902                code-offset ,(lsh #x6400 16)))
1903   (make-charset
1904    '=hanyo-denshi/jb
1905    "JB (JIS X0212) part of Han'you-Denshi characters"
1906    `(long-name "Han'you-Denshi/JB"
1907                chars 94
1908                dimension 2
1909                columns 2
1910                graphic 2
1911                direction l2r
1912                registry "HanyoDenshi\\.JB-0$"
1913                min-code    ,(+ (lsh #x6400 16) (* 94 94))
1914                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 2)))
1915                code-offset ,(+ (lsh #x6400 16) (* 94 94))))
1916   (make-charset
1917    '=hanyo-denshi/jc
1918    "JC (JIS X0213:2000 Plane 1) part of Han'you-Denshi characters"
1919    `(long-name "Han'you-Denshi/JC"
1920                chars 94
1921                dimension 2
1922                columns 2
1923                graphic 2
1924                direction l2r
1925                registry "HanyoDenshi\\.JC-0$"
1926                min-code    ,(+ (lsh #x6400 16) (* 94 94 2))
1927                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 3)))
1928                code-offset ,(+ (lsh #x6400 16) (* 94 94 2))))
1929   (make-charset
1930    '=hanyo-denshi/jd
1931    "JD (JIS X0213:2000 Plane 1) part of Han'you-Denshi characters"
1932    `(long-name "Han'you-Denshi/JD"
1933                chars 94
1934                dimension 2
1935                columns 2
1936                graphic 2
1937                direction l2r
1938                registry "HanyoDenshi\\.JD-0$"
1939                min-code    ,(+ (lsh #x6400 16) (* 94 94 3))
1940                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 4)))
1941                code-offset ,(+ (lsh #x6400 16) (* 94 94 3))))
1942   (make-charset
1943    '=hanyo-denshi/ft
1944    "FT (FDPC additional) part of Han'you-Denshi characters"
1945    `(long-name "Han'you-Denshi/FT"
1946                chars 94
1947                dimension 2
1948                columns 2
1949                graphic 2
1950                direction l2r
1951                registry "HanyoDenshi\\.FT-0$"
1952                min-code    ,(+ (lsh #x6400 16) (* 94 94 4))
1953                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 5)))
1954                code-offset ,(+ (lsh #x6400 16) (* 94 94 4))))
1955   (make-charset
1956    '=hanyo-denshi/ia
1957    "IA part of Han'you-Denshi characters"
1958    `(long-name "Han'you-Denshi/IA"
1959                chars 94
1960                dimension 2
1961                columns 2
1962                graphic 2
1963                direction l2r
1964                registry "HanyoDenshi\\.IA-0$"
1965                min-code    ,(+ (lsh #x6400 16) (* 94 94 5))
1966                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 6)))
1967                code-offset ,(+ (lsh #x6400 16) (* 94 94 5))))
1968   (make-charset
1969    '=hanyo-denshi/ib
1970    "IB part of Han'you-Denshi characters"
1971    `(long-name "Han'you-Denshi/IB"
1972                chars 94
1973                dimension 2
1974                columns 2
1975                graphic 2
1976                direction l2r
1977                registry "HanyoDenshi\\.IB-0$"
1978                min-code    ,(+ (lsh #x6400 16) (* 94 94 6))
1979                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 7)))
1980                code-offset ,(+ (lsh #x6400 16) (* 94 94 6))))
1981   (make-charset
1982    '=hanyo-denshi/hg
1983    "HG (HyouGai Kanji) part of Han'you-Denshi characters"
1984    `(long-name "Han'you-Denshi/HG"
1985                chars 94
1986                dimension 2
1987                columns 2
1988                graphic 2
1989                direction l2r
1990                registry "HanyoDenshi\\.HG-0$"
1991                min-code    ,(+ (lsh #x6400 16) (* 94 94 7))
1992                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 8)))
1993                code-offset ,(+ (lsh #x6400 16) (* 94 94 7))))
1994   (make-charset
1995    '=hanyo-denshi/ip
1996    "IP (for IPA) part of Han'you-Denshi characters"
1997    `(long-name "Han'you-Denshi/IP"
1998                chars 256
1999                dimension 2
2000                columns 2
2001                graphic 2
2002                direction l2r
2003                registry "HanyoDenshi\\.IP-0$"
2004                min-code    ,(+ (lsh #x6402 16) #x4E00)
2005                max-code    ,(+ (lsh #x6402 16) #x9FFF)
2006                code-offset ,(+ (lsh #x6402 16))))
2007   (make-charset
2008    '=hanyo-denshi/jt
2009    "JT (Juuki Touitsu Moji) part of Han'you-Denshi characters"
2010    `(long-name "Han'you-Denshi/JT"
2011                chars 256
2012                dimension 2
2013                columns 2
2014                graphic 2
2015                direction l2r
2016                registry "HanyoDenshi\\.JT-0$"
2017                min-code    ,(+ (lsh #x6402 16) #xAC00)
2018                max-code    ,(+ (lsh #x6402 16) #xD7AF)
2019                code-offset ,(+ (lsh #x6402 16))))
2020   (make-charset
2021    '=hanyo-denshi/ks
2022    "KS (KoSeki) part of Han'you-Denshi characters"
2023    `(long-name "Han'you-Denshi/KS font encoding"
2024                chars 256
2025                dimension 3
2026                columns 2
2027                graphic 2
2028                direction l2r))
2029   (make-charset
2030    '=hanyo-denshi/ks/mf
2031    "font encoding for KS (KoSeki) characters"
2032    `(long-name "Han'you-Denshi/KS font encoding"
2033                chars 256
2034                dimension 2
2035                columns 2
2036                graphic 2
2037                direction l2r
2038                registry "HanyoDenshi\\.KSMF-0$"
2039                min-code       ,(lsh #x6403 16)
2040                max-code    ,(+ (lsh #x6403 16) #xFFFF)
2041                code-offset    ,(lsh #x6403 16)))
2042
2043   (make-charset
2044    '=>>>hanyo-denshi/jt
2045    "JT (Juuki Touitsu Moji) abstract glyph-forms"
2046    '(long-name "Han'you-Denshi/JT glyph-forms"
2047                chars 256
2048                dimension 2
2049                columns 2
2050                graphic 2
2051                direction l2r
2052                registry "HanyoDenshi\\.JT-0$"
2053                mother =hanyo-denshi/jt))
2054
2055   (make-charset
2056    '=>>hanyo-denshi/jb
2057    "Han'you-Denshi/JB abstract glyphs"
2058    '(long-name "Han'you-Denshi/JB glyphs"
2059                chars 94
2060                dimension 2
2061                columns 2
2062                graphic 2
2063                direction l2r
2064                registry "HanyoDenshi\\.JB-0$"
2065                mother =hanyo-denshi/jb))
2066   (make-charset
2067    '=>>hanyo-denshi/jc
2068    "Han'you-Denshi/JC abstract glyphs"
2069    '(long-name "Han'you-Denshi/JC glyphs"
2070                chars 94
2071                dimension 2
2072                columns 2
2073                graphic 2
2074                direction l2r
2075                registry "HanyoDenshi\\.JC-0$"
2076                mother =hanyo-denshi/jc))
2077   (make-charset
2078    '=>>hanyo-denshi/jd
2079    "Han'you-Denshi/JD abstract glyphs"
2080    '(long-name "Han'you-Denshi/JD glyphs"
2081                chars 94
2082                dimension 2
2083                columns 2
2084                graphic 2
2085                direction l2r
2086                registry "HanyoDenshi\\.JD-0$"
2087                mother =hanyo-denshi/jd))
2088   (make-charset
2089    '=>>hanyo-denshi/ft
2090    "Han'you-Denshi/FT abstract glyphs"
2091    '(long-name "Han'you-Denshi/FT glyphs"
2092                chars 94
2093                dimension 2
2094                columns 2
2095                graphic 2
2096                direction l2r
2097                registry "HanyoDenshi\\.FT-0$"
2098                mother =hanyo-denshi/ft))
2099   (make-charset
2100    '=>>hanyo-denshi/ia
2101    "Han'you-Denshi/IA abstract glyphs"
2102    '(long-name "Han'you-Denshi/IA glyphs"
2103                chars 94
2104                dimension 2
2105                columns 2
2106                graphic 2
2107                direction l2r
2108                registry "HanyoDenshi\\.IA-0$"
2109                mother =hanyo-denshi/ia))
2110   (make-charset
2111    '=>>hanyo-denshi/ib
2112    "Han'you-Denshi/IB abstract glyphs"
2113    '(long-name "Han'you-Denshi/IB abstract glyphs"
2114                chars 94
2115                dimension 2
2116                columns 2
2117                graphic 2
2118                direction l2r
2119                registry "HanyoDenshi\\.IB-0$"
2120                mother =hanyo-denshi/ib))
2121   (make-charset
2122    '=>>hanyo-denshi/hg
2123    "Han'you-Denshi/HG abstract glyphs"
2124    '(long-name "Han'you-Denshi/HG abstract glyphs"
2125                chars 94
2126                dimension 2
2127                columns 2
2128                graphic 2
2129                direction l2r
2130                registry "HanyoDenshi\\.HG-0$"
2131                mother =hanyo-denshi/hg))
2132   (make-charset
2133    '=>>hanyo-denshi/jt
2134    "JT (Juuki Touitsu Moji) abstract glyphs"
2135    '(long-name "Han'you-Denshi/JT glyphs"
2136                chars 256
2137                dimension 2
2138                columns 2
2139                graphic 2
2140                direction l2r
2141                registry "HanyoDenshi\\.JT-0$"
2142                mother =>>>hanyo-denshi/jt))
2143   (make-charset
2144    '=>>hanyo-denshi/ks
2145    "Han'you-Denshi/KS abstract glyphs"
2146    '(long-name "Han'you-Denshi/KS glyphs"
2147                chars 256
2148                dimension 3
2149                columns 2
2150                graphic 2
2151                direction l2r
2152                mother =hanyo-denshi/ks))
2153   )
2154
2155 ;;; mule-conf.el ends here