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