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