dfe59bbf87de98b5b202d4c6d5c6e2cb97fa1b1b
[chise/xemacs-chise.git.1] / lisp / mule / mule-conf.el
1 ;;; mule-conf.el --- configure multilingual environment
2
3 ;; Copyright (C) 1995,1999 Electrotechnical Laboratory, JAPAN.
4 ;; Licensed to the Free Software Foundation.
5 ;; Copyright (C) 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2008,
6 ;;   2009, 2010, 2011 MORIOKA Tomohiko
7
8 ;; Keywords: mule, multilingual, character set, coding system
9
10 ;; This file is part of XEmacs.
11
12 ;; XEmacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
16
17 ;; XEmacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with XEmacs; see the file COPYING.  If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
26
27 ;;; Code:
28
29 (cond
30  ((featurep 'utf-2000)
31   (make-charset
32    '=jis-x0208@1978
33    "JIS X 0208:1978, unchanged part."
34    '(registry "jisx0208\\.1978"
35               dimension 2
36               chars 94
37               mother =jis-x0208
38               =>iso-ir 42
39               final ?@
40               graphic 0
41               partial t))
42   (make-charset
43    '=jis-x0208@1978/-4pr
44    "JIS X 0208:1978, 1st - 3rd impressions."
45    '(registry "jisx0208\\.1978"
46               dimension 2
47               chars 94
48               mother =jis-x0208@1978
49               =>iso-ir 42
50               final ?@
51               graphic 0
52               partial t))
53   (make-charset
54    '=jis-x0208@1978/1pr
55    "JIS X 0208:1978, 1st impression."
56    '(iso-ir 42
57             registry "jisx0208\\.1978"
58             dimension 2
59             chars 94
60             mother =jis-x0208@1978/-4pr
61             final ?@
62             graphic 0))
63   (make-charset
64    '=jis-x0208@1978/-4X
65    "JIS X 0208:1978, index before the 4th impression."
66    '(registry "jisx0208\\.1978"
67               dimension 2
68               chars 94
69               mother =jis-x0208@1978
70               =>iso-ir 42
71               ;; final ?@
72               graphic 0
73               partial t))
74   (make-charset
75    '=jis-x0208@1978/1er-pr
76    "JIS X 0208:1978, fixed by errata [Nov 1978]."
77    '(registry "jisx0208\\.1978"
78               dimension 2
79               chars 94
80               mother =jis-x0208@1978
81               =>iso-ir 42
82               ;; final ?@
83               graphic 0
84               partial t))
85   (make-charset
86    '=jis-x0208@1978/2-pr
87    "JIS X 0208:1978, 2nd impression or later."
88    '(registry "jisx0208\\.1978"
89               dimension 2
90               chars 94
91               mother =jis-x0208@1978/1er-pr
92               =>iso-ir 42
93               ;; final ?@
94               graphic 0
95               partial t))
96   (make-charset
97    '=jis-x0208@1978/4er
98    "JIS X 0208:1978, replaced by errata of 4th impression."
99    '(registry "jisx0208\\.1978"
100               dimension 2
101               chars 94
102               mother =jis-x0208@1978/2-pr
103               =>iso-ir 42
104               ;; final ?@
105               graphic 0
106               partial t))
107   (make-charset
108    '=jis-x0208@1978/4-pr
109    "JIS X 0208:1978, 4th impression or later."
110    '(registry "jisx0208\\.1978"
111               dimension 2
112               chars 94
113               mother =jis-x0208@1978/2-pr
114               =>iso-ir 42
115               ;; final ?@
116               graphic 0
117               partial t))
118   (make-charset
119    '=jis-x0208@1978/5pr
120    "JIS X 0208:1978, 5th impression."
121    '(registry "jisx0208\\.1978"
122               dimension 2
123               chars 94
124               mother =jis-x0208@1978/4-pr
125               =>iso-ir 42
126               ;; final ?@
127               graphic 0
128               partial t))
129   (define-charset-alias '=jis-x0208@1978/i1 '=jis-x0208@1978/1pr)
130   (define-charset-alias '=jis-x0208@1978/i-4 '=jis-x0208@1978/-4pr)
131   (define-charset-alias '=jis-x0208@1978/i4- '=jis-x0208@1978/4-pr)
132   )
133  (t
134   (make-charset
135    '=jis-x0208@1978
136    "JIS X0208:1978 Japanese Kanji (so called \"old JIS\")."
137    '(iso-ir 42
138             registry "jisx0208\\.1978"
139             dimension 2
140             chars 94
141             mother =jis-x0208
142             final ?@
143             graphic 0))
144   ))
145
146 (define-charset-alias '=jis-x0208-1978          '=jis-x0208@1978)
147 (define-charset-alias 'japanese-jisx0208-1978   '=jis-x0208@1978)
148 (define-charset-alias 'chinese-gb2312           '=gb2312)
149 (define-charset-alias '=jis-x0208-1983          '=jis-x0208@1983)
150 (define-charset-alias 'japanese-jisx0208        '=jis-x0208@1983)
151 (define-charset-alias 'korean-ksc5601           '=ks-x1001)
152 (define-charset-alias 'japanese-jisx0212        '=jis-x0212)
153 (define-charset-alias 'chinese-cns11643-1       '=cns11643-1)
154 (define-charset-alias 'chinese-cns11643-2       '=cns11643-2)
155 (define-charset-alias 'chinese-gb12345          '=gb12345)
156 (define-charset-alias 'chinese-big5             '=big5)
157
158 ;; PinYin-ZhuYin
159 (make-charset 'sisheng "PinYin-ZhuYin"
160               '(registry "sisheng_cwnn\\|OMRON_UDC_ZH"
161                 dimension 1
162                 chars 94
163                 final ?0
164                 graphic 0
165                 ))
166
167 ;; Lao script.
168 ;; ISO10646's 0x0E80..0x0EDF are mapped to 0x20..0x7F.
169 (make-charset 'lao "Lao script"
170               '(registry "MuleLao-1"
171                 dimension 1
172                 chars 94
173                 final ?1
174                 graphic 1))
175
176 ;; IPA (International Phonetic Alphabet)
177 (make-charset 'ipa "International Phonetic Alphabet"
178               '(registry "MuleIPA"
179                 dimension 1
180                 chars 96
181                 final ?0
182                 graphic 1))
183
184 ;; Ethiopic
185 (make-charset 'ethiopic "Ethiopic"
186               '(registry "Ethio"
187                 dimension 2
188                 chars 94
189                 final ?3
190                 graphic 0
191                 ))
192
193 ;; ISO-IR-165 (CCITT Extended GB)
194 ;;    It is based on CCITT Recommendation T.101, includes GB 2312-80 +
195 ;;    GB 8565-88 table A4 + 293 characters.
196 (if (featurep 'utf-2000)
197     (progn
198       (make-charset '=iso-ir165
199                     "ISO-IR-165 (CCITT Extended GB; Chinese simplified)"
200                     '(iso-ir 165
201                              dimension 2
202                              chars 94
203                              mother =gb2312
204                              final ?E
205                              registry "isoir165"
206                              graphic 0))
207       (define-charset-alias 'chinese-isoir165 '=iso-ir165))
208   (make-charset 'chinese-isoir165
209                 "ISO-IR-165 (CCITT Extended GB; Chinese simplified)"
210                 '(iso-ir 165
211                          dimension 2
212                          chars 94
213                          final ?E
214                          registry "isoir165"
215                          graphic 0)))
216
217 ;; CNS11643 Plane3 thru Plane7
218 ;; These represent more and more obscure Chinese characters.
219 ;; By the time you get to Plane 7, we're talking about characters
220 ;; that appear once in some ancient manuscript and whose meaning
221 ;; is unknown.
222
223 (flet
224     ((make-chinese-cns11643-charset
225       (name iso-ir plane final)
226       (make-charset
227        name (concat "CNS 11643 Plane " plane " (Chinese traditional)")
228        `(iso-ir ,iso-ir
229          registry 
230          ,(concat "CNS11643[.-]\\(.*[.-]\\)?" plane "$")
231          dimension 2
232          chars 94
233          final ,final
234          graphic 0))
235       ))
236   (make-chinese-cns11643-charset '=cns11643-3 183 "3" ?I)
237   (make-chinese-cns11643-charset '=cns11643-4 184 "4" ?J)
238   (make-chinese-cns11643-charset '=cns11643-5 185 "5" ?K)
239   (make-chinese-cns11643-charset '=cns11643-6 186 "6" ?L)
240   (make-chinese-cns11643-charset '=cns11643-7 187 "7" ?M)
241   (define-charset-alias 'chinese-cns11643-3     '=cns11643-3)
242   (define-charset-alias 'chinese-cns11643-4     '=cns11643-4)
243   (define-charset-alias 'chinese-cns11643-5     '=cns11643-5)
244   (define-charset-alias 'chinese-cns11643-6     '=cns11643-6)
245   (define-charset-alias 'chinese-cns11643-7     '=cns11643-7)
246   )
247
248 ;; JIS X 0213:2000
249 (cond
250  ((featurep 'utf-2000)
251   (make-charset
252    '=jis-x0213-1
253    "JIS X 0213 Plain 1 (unchanged part)"
254    '(registry "jisx0213\\(\\.[0-9]+\\)?-1"
255               dimension 2
256               chars 94
257               =>iso-ir 228
258               final ?O
259               graphic 0
260               partial t))
261
262   (make-charset
263    '=jis-x0213-1@2000
264    "JIS X 0213:2000 Plain 1"
265    '(iso-ir 228
266             registry "jisx0213\\(\\.2000\\)-1"
267             dimension 2
268             chars 94
269             mother =jis-x0213-1
270             final ?O
271             graphic 0))
272   (make-charset
273    '=jis-x0213-2
274    "JIS X 0213 Plain 2"
275    '(iso-ir 229
276             registry "jisx0213\\(\\.\\(2000\\|2004\\)\\)?-2"
277             dimension 2
278             chars 94
279             final ?P
280             graphic 0))
281
282   (make-charset
283    '=jis-x0213-1@2004
284    "JIS X 0213:2004 Plain 1"
285    '(iso-ir 233
286             registry "jisx0213\\(\\.2004\\)-1"
287             dimension 2
288             chars 94
289             mother =jis-x0213-1
290             final ?Q
291             graphic 0))
292
293   (define-charset-alias 'japanese-jisx0213-1 '=jis-x0213-1@2000)
294   (define-charset-alias 'japanese-jisx0213-2 '=jis-x0213-2)
295   (define-charset-alias '=jis-x0213-1-2000 '=jis-x0213-1@2000)
296   (define-charset-alias '=jis-x0213-2-2000 '=jis-x0213-2)
297   )
298  (t
299   (make-charset
300    'japanese-jisx0213-1
301    "JIS X 0213:2000 Plain 1"
302    '(registry "jisx0213\\(\\.2000\\)-1"
303               dimension 2
304               chars 94
305               final ?O
306               graphic 0))
307   (make-charset
308    'japanese-jisx0213-2
309    "JIS X 0213:2000 Plain 2"
310    '(registry "jisx0213\\(\\.2000\\)-2"
311               dimension 2
312               chars 94
313               final ?P
314               graphic 0))
315   ))
316
317 (when (featurep 'utf-2000)
318   (define-charset-alias 'ucs '=ucs)
319   (define-charset-alias '=jis-x0208-1990 '=jis-x0208@1990)
320   (define-charset-alias 'japanese-jisx0208-1990 '=jis-x0208@1990)
321
322   (make-charset
323    '=>>>jis-x0208
324    "JIS X 0208 abstract glyph-images (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@1990
334    "JIS X 0208:1990 abstract glyph-images."
335    '(registry "jisx0208\\.1990"
336               dimension 2
337               chars 94
338               mother =>>>jis-x0208
339               =>iso-ir 168
340               ;; final ?B
341               graphic 0))
342   (make-charset
343    '=>>>jis-x0213-1
344    "JIS X 0213 Plain 1 abstract glyph-images (unchanged part)"
345    '(registry "jisx0213\\(\\.[0-9]+\\)?-1"
346               dimension 2
347               chars 94
348               mother =jis-x0213-1
349               =>iso-ir 228
350               ;; final ?O
351               graphic 0
352               ;; partial t
353               ))
354   (make-charset
355    '=>>>jis-x0213-1@2004
356    "JIS X 0213:2004 Plain 1 abstract glyph-images"
357    '(mother =jis-x0213-1@2004
358             =>iso-ir 233
359             ;; registry "jisx0213\\(\\.2004\\)-1"
360             dimension 2
361             chars 94
362             graphic 0))
363
364   (make-charset
365    '=>>jis-x0208
366    "JIS X 0208 abstract glyphs (unchanged part)."
367    '(registry "jisx0208\\.1990"
368               dimension 2
369               chars 94
370               mother =>>>jis-x0208
371               =>iso-ir 168
372               ;; final ?B
373               graphic 0))
374   (make-charset
375    '=>>jis-x0208@1978
376    "JIS X 0208:1978 abstract glyphs (unchanged part)."
377    '(registry "jisx0208\\.1978"
378               dimension 2
379               chars 94
380               mother =>>jis-x0208
381               =>iso-ir 42
382               ;; final ?@
383               graphic 0))
384
385   (make-charset
386    '=>>jis-x0213-1
387    "JIS X 0213 Plain 1 abstract glyphs (unchanged part)"
388    '(registry "jisx0213\\(\\.[0-9]+\\)?-1"
389               dimension 2
390               chars 94
391               mother =>>>jis-x0213-1
392               =>iso-ir 228
393               ;; final ?O
394               graphic 0
395               ;; partial t
396               ))
397   (make-charset
398    '=>>jis-x0213-1@2000
399    "JIS X 0213:2000 Plain 1 abstract glyphs"
400    '(registry "jisx0213\\(\\.2000\\)-1"
401               dimension 2
402               chars 94
403               mother =>>jis-x0213-1
404               =>iso-ir 228
405               ;; final ?O
406               graphic 0
407               ;; partial t
408               ))
409   (make-charset
410    '=>>jis-x0213-2
411    "JIS X 0213 Plain 2 abstract glyphs"
412    '(registry "jisx0213\\(\\.\\(2000\\|2004\\)\\)?-2"
413               dimension 2
414               chars 94
415               mother =jis-x0213-2
416               =>iso-ir 229
417               ;; final ?P
418               graphic 0))
419   (make-charset
420    '=>>jis-x0213-1@2004
421    "JIS X 0213:2004 Plain 1 abstract glyphs"
422    '(registry "jisx0213\\(\\.2004\\)-1"
423               dimension 2
424               chars 94
425               mother =>>jis-x0213-1
426               =>iso-ir 233
427               ;; final ?Q
428               graphic 0
429               ;; partial t
430               ))
431
432   (make-charset
433    '=>jis-x0208@usual
434    "JIS X 0208 based on usual unification."
435    '(registry "jisx0208\\.1990"
436               dimension 2
437               chars 94
438               mother =>>jis-x0208
439               =>iso-ir 168
440               ;; final ?B
441               graphic 0))
442   (make-charset
443    '=>jis-x0208
444    "JIS X 0208 based on the unchanged unification rules."
445    '(registry "jisx0208\\.1990"
446               dimension 2
447               chars 94
448               mother =>jis-x0208@usual
449               =>iso-ir 168
450               ;; final ?B
451               graphic 0))
452   (define-charset-alias '<=>jis-x0208 '=>jis-x0208)
453   (make-charset
454    '=>jis-x0208@1997
455    "JIS X 0208 based on the unification rule of 1997 edition."
456    '(registry "jisx0208\\.1990"
457               dimension 2
458               chars 94
459               mother =>jis-x0208
460               =>iso-ir 168
461               ;; final ?B
462               graphic 0))
463   (define-charset-alias '<=>jis-x0208@1997 '=>jis-x0208@1997)
464   (define-charset-alias '  =jis-x0208@1997 '=>jis-x0208@1997)
465
466   (make-charset
467    '=>jis-x0213-1
468    "JIS X 0213 Plain 1 abstract characters (unchanged part)"
469    '(registry "jisx0213\\(\\.[0-9]+\\)?-1"
470               dimension 2
471               chars 94
472               mother =>>jis-x0213-1
473               =>iso-ir 228
474               ;; final ?O
475               graphic 0
476               ;; partial t
477               ))
478   (define-charset-alias '<=>jis-x0213-1 '=>jis-x0213-1)
479   (make-charset
480    '=>jis-x0213-1@2000
481    "JIS X 0213:2000 Plain 1 abstract characters"
482    '(registry "jisx0213\\(\\.2000\\)-1"
483               dimension 2
484               chars 94
485               mother =>jis-x0213-1
486               =>iso-ir 228
487               ;; final ?O
488               graphic 0
489               ;; partial t
490               ))
491   (define-charset-alias '<=>jis-x0213-1@2000 '=>jis-x0213-1@2000)
492   (make-charset
493    '=>jis-x0213-1@2004
494    "JIS X 0213:2004 Plain 1 abstract characters"
495    '(registry "jisx0213\\(\\.2004\\)-1"
496               dimension 2
497               chars 94
498               mother =>jis-x0213-1
499               =>iso-ir 233
500               ;; final ?Q
501               graphic 0
502               ;; partial t
503               ))
504   (define-charset-alias '<=>jis-x0213-1@2004 '=>jis-x0213-1@2004)
505   (make-charset
506    '=>jis-x0213-2@usual
507    "JIS X 0213 Plain 2 based on usual unification."
508    '(registry "jisx0213\\(\\.\\(2000\\|2004\\)\\)?-2"
509               dimension 2
510               chars 94
511               mother =>>jis-x0213-2
512               =>iso-ir 229
513               ;; final ?P
514               graphic 0))
515   (make-charset
516    '=>jis-x0213-2
517    "JIS X 0213 Plain 2 abstract characters"
518    '(registry "jisx0213\\(\\.\\(2000\\|2004\\)\\)?-2"
519               dimension 2
520               chars 94
521               mother =>jis-x0213-2@usual
522               =>iso-ir 229
523               ;; final ?P
524               graphic 0))
525
526   (make-charset '=big5-cdp
527                 "Big5 with CDP extension"
528                 '(long-name     "Big5-CDP"
529                   chars         256
530                   dimension     2
531                   columns       2
532                   graphic       2
533                   direction     l2r
534                   registry      "big5\\.cdp-0"
535                   mother        chinese-big5
536                   min-code      #x8140
537                   max-code      #x8DFE))
538   (define-charset-alias 'chinese-big5-cdp '=big5-cdp)
539
540   (make-charset '=>>big5-cdp
541                 "Abstract glyphs of Big5-CDP"
542                 '(long-name     "Big5-CDP glyphs"
543                   chars         256
544                   dimension     2
545                   columns       2
546                   graphic       2
547                   direction     l2r
548                   registry      "big5\\.cdp-0"
549                   mother        =big5-cdp))
550
551   (make-charset '=>big5-cdp
552                 "Big5-CDP abstract characters"
553                 '(long-name     "Big5-CDP abstract characters"
554                   chars         256
555                   dimension     2
556                   columns       2
557                   graphic       2
558                   direction     l2r
559                   registry      "big5\\.cdp-0"
560                   mother        =>>big5-cdp))
561
562   (make-charset '=gt
563                 "GT 2000"
564                 `(long-name     "GT"
565                   chars         256
566                   dimension     3
567                   columns       2
568                   graphic       2
569                   direction     l2r
570                   registry      ""
571                   min-code      ,(lsh #x6100 16)
572                   max-code      ,(+ (lsh #x6100 16) 67547)
573                   code-offset   ,(lsh #x6100 16)))
574   (define-charset-alias 'ideograph-gt '=gt)
575   (make-charset '=>>gt
576                 "GT 2000 abstract glyphs"
577                 '(long-name     "GT abstract glyphs"
578                   chars         256
579                   dimension     3
580                   columns       2
581                   graphic       2
582                   direction     l2r
583                   mother        =gt))
584   (define-charset-alias '<=>gt '=>>gt)
585   (define-charset-alias '<==>gt '=>>gt)
586   (make-charset '=>gt
587                 "GT 2000 abstract characters"
588                 '(long-name     "abstract GT characters"
589                   chars         256
590                   dimension     3
591                   columns       2
592                   graphic       2
593                   direction     l2r
594                   mother        =>>gt))
595   (make-charset '=gt-k
596                 "Ideographic components of GT"
597                 `(long-name     "GT components"
598                   chars         256
599                   dimension     2
600                   columns       2
601                   graphic       2
602                   direction     l2r
603                   registry      ""
604                   min-code      ,(lsh #x6110 16)
605                   max-code      ,(+ (lsh #x6110 16) 17090)
606                   code-offset   ,(lsh #x6110 16)))
607   (define-charset-alias 'ideograph-gt-k '=gt-k)
608   (make-charset '=>>gt-k
609                 "abstract glyphs of GT-K"
610                 '(long-name     "GT-K abstract glyphs"
611                   chars         256
612                   dimension     2
613                   columns       2
614                   graphic       2
615                   direction     l2r
616                   mother        =gt-k))
617   (make-charset '=>gt-k
618                 "GT-K abstract characters"
619                 '(long-name     "GT-K abstract characters"
620                   chars         256
621                   dimension     2
622                   columns       2
623                   graphic       2
624                   direction     l2r
625                   mother        =>>gt-k))
626   (let ((i 1))
627     (while (<= i 11)
628       (make-charset
629        (intern (format "=gt-pj-%d" i))
630        (format "GT 2000 (pseudo JIS encoding) part %d" i)
631        `(long-name ,(format "GT PJ %d" i)
632                    chars 94
633                    dimension 2
634                    columns 2
635                    graphic 0
636                    direction l2r
637                    registry ,(format "\\(GTpj-%d\\|jisx0208\\.GT-%d\\)$" i i)))
638       (define-charset-alias
639         (intern (format "ideograph-gt-pj-%d" i))
640         (intern (format "=gt-pj-%d" i)))
641       (setq i (1+ i))))
642   (make-charset
643    '=gt-pj-k1
644    "Ideographic parts of GT (pseudo JIS encoding) part 1"
645    '(long-name "GT K1"
646                chars 94
647                dimension 2
648                columns 2
649                graphic 0
650                direction l2r
651                registry "\\(GTKpj-1\\|jisx0208\\.GTK-1\\)$"))
652   (define-charset-alias 'ideograph-gt-pj-k1 '=gt-pj-k1)
653   (make-charset
654    '=gt-pj-k2
655    "Ideographic parts of GT (pseudo JIS encoding) part 2"
656    '(long-name "GT K2"
657                chars 94
658                dimension 2
659                columns 2
660                graphic 0
661                direction l2r
662                registry "\\(GTKpj-2\\|jisx0208\\.GTK-2\\)$"))
663   (define-charset-alias 'ideograph-gt-pj-k2 '=gt-pj-k2)
664
665   (make-charset '=daikanwa
666                 "Daikanwa dictionary (unchanged part)"
667                 `(long-name     "Daikanwa"
668                   chars         256
669                   dimension     2
670                   columns       2
671                   graphic       2
672                   direction     l2r
673                   registry      "Daikanwa\\(\\.[0-9]+\\)?-3"
674                   min-code      #xE00000
675                   max-code      ,(+ #xE00000 50100)
676                   code-offset   #xE00000))
677   (define-charset-alias 'ideograph-daikanwa '=daikanwa)
678
679   (make-charset '=daikanwa@rev1
680                 "Daikanwa dictionary (revised version)"
681                 `(long-name     "Daikanwa Rev."
682                   chars         256
683                   dimension     2
684                   columns       2
685                   graphic       2
686                   direction     l2r
687                   registry      "Daikanwa\\(\\.[0-9]+\\)?-2"
688                   mother        =daikanwa
689                   ))
690   (define-charset-alias 'ideograph-daikanwa-2 '=daikanwa@rev1)
691   (define-charset-alias '=daikanwa-rev1 '=daikanwa@rev1)
692
693   (make-charset '=daikanwa@rev2
694                 "Daikanwa dictionary (revised version 2)"
695                 `(long-name     "Daikanwa"
696                   chars         256
697                   dimension     2
698                   columns       2
699                   graphic       2
700                   direction     l2r
701                   registry      "Daikanwa\\(\\.[0-9]+\\)?-3"
702                   mother        =daikanwa
703                   min-code      1
704                   max-code      49964
705                   ;; min-code   #xE00000
706                   ;; max-code   ,(+ #xE00000 50100)
707                   ;; code-offset        #xE00000
708                   ))
709   (define-charset-alias '=daikanwa-rev2 '=daikanwa@rev2)
710
711   (make-charset '=daikanwa/+p
712                 "Daikanwa dictionary (ddddd')"
713                 `(long-name     "Daikanwa ddddd'"
714                   chars         256
715                   dimension     2
716                   columns       2
717                   graphic       2
718                   direction     l2r))
719   (make-charset '=daikanwa/+2p
720                 "Daikanwa dictionary (ddddd'')"
721                 `(long-name     "Daikanwa ddddd''"
722                   chars         256
723                   dimension     2
724                   columns       2
725                   graphic       2
726                   direction     l2r))
727   (make-charset '=daikanwa/ho
728                 "Daikanwa dictionary (Hokan)"
729                 `(long-name     "Daikanwa-ho"
730                   chars         256
731                   dimension     2
732                   columns       2
733                   graphic       2
734                   direction     l2r))
735
736   (make-charset '=>>daikanwa
737                 "Daikanwa abstract glyphs"
738                 '(long-name     "Daikanwa glyphs"
739                   chars         256
740                   dimension     2
741                   columns       2
742                   graphic       2
743                   direction     l2r
744                   registry      "Daikanwa\\(\\.[0-9]+\\)?-3"
745                   mother        =daikanwa))
746
747   (make-charset '=>daikanwa
748                 "Daikanwa abstract characters"
749                 '(long-name     "abstract Daikanwa"
750                   chars         256
751                   dimension     2
752                   columns       2
753                   graphic       2
754                   direction     l2r
755                   registry      "Daikanwa\\(\\.[0-9]+\\)?-3"
756                   mother        =>>daikanwa))
757
758   (make-charset '=shinjigen
759                 "Kadokawa ShinJigen dictionary (common parts)"
760                 `(long-name     "Shinjigen common parts"
761                   chars         256
762                   dimension     2
763                   columns       2
764                   graphic       2
765                   direction     l2r
766                   registry      "Shinjigen\\(\\.[0-9]+\\)?-*"))
767
768   (make-charset '=shinjigen@1ed
769                 "Kadokawa ShinJigen dictionary (the first edition)"
770                 `(long-name     "Shinjigen-1"
771                   chars         256
772                   dimension     2
773                   columns       2
774                   graphic       2
775                   direction     l2r
776                   mother        =shinjigen
777                   registry      "Shinjigen\\(\\.[0-9]+\\)?-1"))
778   (define-charset-alias 'shinjigen-1 '=shinjigen@1ed)
779
780   (make-charset '=shinjigen@1ed/24pr
781                 "Kadokawa ShinJigen dictionary (the 24th impression)"
782                 `(long-name     "Shinjigen-1 24pr"
783                   chars         256
784                   dimension     2
785                   columns       2
786                   graphic       2
787                   direction     l2r
788                   mother        =shinjigen@1ed))
789
790   (make-charset '=shinjigen@rev
791                 "Kadokawa ShinJigen dictionary (the revised edition)"
792                 `(long-name     "Shinjigen-2"
793                   chars         256
794                   dimension     2
795                   columns       2
796                   graphic       2
797                   direction     l2r
798                   mother        =shinjigen
799                   registry      "Shinjigen\\(\\.[0-9]+\\)?-2"))
800   (define-charset-alias 'shinjigen-2 '=shinjigen@rev)
801   (make-charset '=shinjigen/+p@rev
802                 "ShinJigen (the second edition) number with '"
803                 `(long-name     "Shinjigen-2 with '"
804                   chars         256
805                   dimension     2
806                   columns       2
807                   graphic       2
808                   direction     l2r))
809   (define-charset-alias 'shinjigen-2-p '=shinjigen/+p@rev)
810
811   (make-charset '=big5-pua
812                 "Big5 with private used area"
813                 '(long-name     "Big5-PUA"
814                   chars         256
815                   dimension     2
816                   columns       2
817                   graphic       2
818                   direction     l2r
819                   mother        chinese-big5
820                   registry      "Big5\\.ETEN"))
821   (define-charset-alias 'chinese-big5-pua '=big5-pua)
822   (make-charset '=big5-eten
823                 "Big5 ETEN"
824                 '(long-name     "Big5-ETEN"
825                   chars         256
826                   dimension     2
827                   columns       2
828                   graphic       2
829                   direction     l2r
830                   mother        chinese-big5
831                   min-code      #x8140
832                   max-code      #xFEFE
833                   registry      "Big5\\.ETEN"))
834   (define-charset-alias 'chinese-big5-eten '=big5-eten)
835   (make-charset 'chinese-big5-eten-a
836                 "Big5 ETEN (#xF9D6 .. #xF9FE)"
837                 '(long-name     "Big5-ETEN-a"
838                   chars         256
839                   dimension     2
840                   columns       2
841                   graphic       2
842                   direction     l2r
843                   mother        chinese-big5
844                   min-code      #xF9D6
845                   max-code      #xF9FE
846                   registry      "Big5\\.ETEN"))
847   (make-charset 'chinese-big5-eten-b
848                 "Big5 ETEN (#xC6A1 .. #xC8FE)"
849                 '(long-name     "Big5-ETEN-b"
850                   chars         256
851                   dimension     2
852                   columns       2
853                   graphic       2
854                   direction     l2r
855                   mother        chinese-big5
856                   min-code      #xC6A1
857                   max-code      #xC8FE
858                   registry      "Big5\\.ETEN"))
859
860   (let* ((i 1)
861          (hzk-min (+ (lsh #x6200 16) 65536))
862          (hzk-max (+ hzk-min 65535)))
863     (while (<= i 12)
864       (make-charset
865        (intern (format "=hanziku-%d" i))
866        (format "HANZIKU (pseudo BIG5 encoding) part %d" i)
867        `(long-name ,(format "HANZIKU-%d" i)
868                    chars 256
869                    dimension 2
870                    columns 2
871                    graphic 2
872                    direction l2r
873                    registry ,(format "hanziku-%d$" i i)
874                    min-code ,hzk-min
875                    max-code ,hzk-max
876                    code-offset ,hzk-min))
877       (define-charset-alias
878         (intern (format "ideograph-hanziku-%d" i))
879         (intern (format "=hanziku-%d" i)))
880       (setq hzk-min (1+ hzk-max)
881             hzk-max (+ hzk-min 65535))
882       (setq i (1+ i))))
883
884   (make-charset '=cbeta "CBETA private characters"
885                 '(long-name     "CBETA PUA"
886                   chars         256
887                   dimension     2
888                   registry      "cbeta-0"
889                   graphic       2
890                   min-code      #xE20000
891                   max-code      #xE2FFFF
892                   code-offset   #xE20000
893                   columns       2
894                   direction     l2r))
895   (define-charset-alias 'ideograph-cbeta '=cbeta)
896
897   (make-charset '=zinbun-oracle
898                 "Oracle Bones Script"
899                 `(long-name     "Oracle Bones Script in Zinbun, Kyoto Univ."
900                   chars         256
901                   dimension     2
902                   registry      "zob1968-0"
903                   graphic       2
904                   min-code      #xE70000
905                   max-code      ,(+ #xE70000 8192)
906                   code-offset   #xE70000
907                   columns       2
908                   direction     l2r))
909
910   (make-charset '=>zinbun-oracle
911                 "Abstract Oracle Bones"
912                 '(long-name     "Abstract characters of Zinbun Oracle Bones."
913                   chars         256
914                   dimension     2
915                   mother        =zinbun-oracle
916                   registry      "zob1968-0"
917                   graphic       2
918                   columns       2
919                   direction     l2r))
920
921   (make-charset '=jef-china3
922                 "JEF + CHINA3 private characters"
923                 '(long-name     "JEF + CHINA3"
924                   chars         256
925                   dimension     2
926                   columns       2
927                   graphic       2
928                   direction     l2r
929                   registry      "china3jef-0"
930                   min-code      #xE80000
931                   max-code      #xE8FFFF
932                   code-offset   #xE80000))
933   (define-charset-alias 'china3-jef '=jef-china3)
934
935   (make-charset '=ruimoku-v6
936                 "private characters used in RUIMOKU Version.6"
937                 `(long-name     "RUI6"
938                   chars         256
939                   dimension     2
940                   columns       2
941                   graphic       2
942                   direction     l2r
943                   registry      "rui6-0"
944                   ;; mother     ucs
945                   min-code      #xE90000 ; #xE000
946                   max-code      #xE908FF ; #xE8FF
947                   code-offset   ,(- #xE90000 #xE000)))
948   (make-charset '=>>ruimoku-v6
949                 "RUIMOKU Version.6 glyphs"
950                 '(long-name     "RUI6 glyphs"
951                   chars         256
952                   dimension     2
953                   columns       2
954                   graphic       2
955                   direction     l2r
956                   registry      "rui6-0"
957                   mother        =ruimoku-v6))
958
959   (make-charset '==>ucs@bucs
960                 "Basic Subset of Coded Character Sets (BUCS)"
961                 '(long-name     "BUCS abstract characters"
962                   chars         256
963                   dimension     3
964                   columns       2
965                   graphic       2
966                   direction     l2r
967                   =>iso-ir      177
968                   mother        =ucs))
969
970   (make-charset '=>ucs@iso
971                 "Abstract characters of ISO/IEC 10646 representatives"
972                 '(long-name     "UCS characters for ISO"
973                   chars         256
974                   dimension     3
975                   columns       2
976                   graphic       2
977                   direction     l2r
978                   =>iso-ir      177
979                   mother        =ucs))
980   (make-charset '=>ucs@unicode
981                 "Abstract characters of Unicode representatives"
982                 '(long-name     "UCS characters for Unicode"
983                   chars         256
984                   dimension     3
985                   columns       2
986                   graphic       2
987                   direction     l2r
988                   =>iso-ir      177
989                   mother        =>ucs@iso))
990   (make-charset '=>ucs@jis
991                 "UCS Representative characters for JIS X0208/0212/0213"
992                 '(long-name     "UCS characters for JIS"
993                   chars         256
994                   dimension     3
995                   columns       2
996                   graphic       2
997                   direction     l2r
998                   =>iso-ir      177
999                   mother        =>ucs@unicode))
1000   (make-charset '=>ucs@JP
1001                 "UCS Representative characters for Japanese usual unification"
1002                 '(long-name     "UCS characters for JP"
1003                   chars         256
1004                   dimension     3
1005                   columns       2
1006                   graphic       2
1007                   direction     l2r
1008                   =>iso-ir      177
1009                   mother        =>ucs@jis))
1010   (make-charset '=>ucs@ks
1011                 "UCS Representative characters for Korean Standards"
1012                 '(long-name     "UCS characters for KS"
1013                   chars         256
1014                   dimension     3
1015                   columns       2
1016                   graphic       2
1017                   direction     l2r
1018                   =>iso-ir      177
1019                   mother        =>ucs@unicode))
1020   (make-charset '=>ucs@cns
1021                 "UCS representatives characters for CNS 11643 sources"
1022                 '(long-name     "UCS characters for CNS 11643"
1023                   chars         256
1024                   dimension     3
1025                   columns       2
1026                   graphic       2
1027                   direction     l2r
1028                   =>iso-ir      177
1029                   mother        =>ucs@unicode))
1030
1031   (make-charset '=>>ucs@iso
1032                 "Representative abstract-glyphs of ISO/IEC 10646"
1033                 '(long-name     "UCS abstract glyphs for UCS"
1034                   chars         256
1035                   dimension     3
1036                   columns       2
1037                   graphic       2
1038                   direction     l2r
1039                   =>iso-ir      177
1040                   mother        =>ucs@iso))
1041   (make-charset '=>>ucs@unicode
1042                 "Representative abstract-glyphs of Unicode"
1043                 '(long-name     "Unicode abstract glyphs"
1044                   chars         256
1045                   dimension     3
1046                   columns       2
1047                   graphic       2
1048                   direction     l2r
1049                   =>iso-ir      177
1050                   mother        =>>ucs@iso))
1051   (make-charset '=>>ucs@jis
1052                 "UCS Representative abstract-glyphs for JIS X0208/0212/0213"
1053                 '(long-name     "UCS abstract glyphs for JIS"
1054                   chars         256
1055                   dimension     3
1056                   columns       2
1057                   graphic       2
1058                   direction     l2r
1059                   =>iso-ir      177
1060                   mother        =>>ucs@unicode))
1061   (make-charset '=>>ucs@jis/1990
1062                 "UCS Representative glyphs for JIS X 0208/0212:1990"
1063                 '(long-name     "UCS glyphs for JIS:1990"
1064                   chars         256
1065                   dimension     3
1066                   columns       2
1067                   graphic       2
1068                   direction     l2r
1069                   =>iso-ir      177
1070                   mother        =>>ucs@jis))
1071   (make-charset '=>>ucs@jis/2000
1072                 "UCS Representative glyphs for JIS X 0213:2000"
1073                 '(long-name     "UCS glyphs for JIS:2000"
1074                   chars         256
1075                   dimension     3
1076                   columns       2
1077                   graphic       2
1078                   direction     l2r
1079                   =>iso-ir      177
1080                   mother        =>>ucs@jis))
1081   (make-charset '=>>ucs@jis/2004
1082                 "UCS Representative glyphs for JIS X 0213:2004"
1083                 '(long-name     "UCS glyphs for JIS:2004"
1084                   chars         256
1085                   dimension     3
1086                   columns       2
1087                   graphic       2
1088                   direction     l2r
1089                   =>iso-ir      177
1090                   mother        =>>ucs@jis))
1091   (make-charset '=>>ucs@JP
1092                 "UCS abstract-glyphs based on Japanese style glyphs"
1093                 '(long-name     "UCS glyphs for JP"
1094                   chars         256
1095                   dimension     3
1096                   columns       2
1097                   graphic       2
1098                   direction     l2r
1099                   =>iso-ir      177
1100                   mother        =>>ucs@jis/2004))
1101   (make-charset '=>>ucs@ks
1102                 "UCS Representative glyphs for Korean Standards"
1103                 '(long-name     "UCS glyphs for KS"
1104                   chars         256
1105                   dimension     3
1106                   columns       2
1107                   graphic       2
1108                   direction     l2r
1109                   =>iso-ir      177
1110                   mother        =>>ucs@unicode))
1111   (make-charset '=>>ucs@cns
1112                 "UCS Representative glyphs for CNS 11643 sources"
1113                 '(long-name     "UCS glyphs for CNS"
1114                   chars         256
1115                   dimension     3
1116                   columns       2
1117                   graphic       2
1118                   direction     l2r
1119                   =>iso-ir      177
1120                   mother        =>>ucs@unicode))
1121
1122   (make-charset '=>>>ucs@iso
1123                 "Representative glyphs of ISO/IEC 10646"
1124                 '(long-name     "UCS glyphs for UCS"
1125                   chars         256
1126                   dimension     3
1127                   columns       2
1128                   graphic       2
1129                   direction     l2r
1130                   =>iso-ir      177
1131                   mother        =>>ucs@iso))
1132   (make-charset '=>>>ucs@unicode
1133                 "Representative glyphs of Unicode"
1134                 '(long-name     "UCS glyphs for Unicode"
1135                   chars         256
1136                   dimension     3
1137                   columns       2
1138                   graphic       2
1139                   direction     l2r
1140                   =>iso-ir      177
1141                   mother        =>>>ucs@iso))
1142   (make-charset '=>>>ucs@jis
1143                 "UCS Representative glyphs for JIS X0208/0212/0213"
1144                 '(long-name     "UCS glyphs for JIS"
1145                   chars         256
1146                   dimension     3
1147                   columns       2
1148                   graphic       2
1149                   direction     l2r
1150                   =>iso-ir      177
1151                   mother        =>>>ucs@unicode))
1152   (make-charset '=>>>ucs@cns
1153                 "UCS Representative glyphs for CNS 11643 sources"
1154                 '(long-name     "UCS glyphs for CNS"
1155                   chars         256
1156                   dimension     3
1157                   columns       2
1158                   graphic       2
1159                   direction     l2r
1160                   =>iso-ir      177
1161                   mother        =>>>ucs@unicode))
1162
1163   (make-charset '=ucs@iso
1164                 "ISO/IEC 10646 for its representative glyphs"
1165                 '(long-name     "UCS for ISO"
1166                   chars         256
1167                   dimension     3
1168                   columns       2
1169                   graphic       2
1170                   direction     l2r
1171                   =>iso-ir      177
1172                   mother        =>>>ucs@iso))
1173   (make-charset '=ucs@unicode
1174                 "Unicode for its representative glyphs"
1175                 '(long-name     "UCS for Unicode"
1176                   chars         256
1177                   dimension     3
1178                   columns       2
1179                   graphic       2
1180                   direction     l2r
1181                   =>iso-ir      177
1182                   mother        =ucs@iso))
1183   (make-charset '=ucs@gb
1184                 "ISO/IEC 10646 for GB"
1185                 '(long-name     "UCS for GB"
1186                   chars         256
1187                   dimension     3
1188                   columns       2
1189                   graphic       2
1190                   direction     l2r
1191                   =>iso-ir      177
1192                   mother        =ucs@unicode))
1193   (define-charset-alias 'ucs-gb '=ucs@gb)
1194   (make-charset '=ucs@gb/fw
1195                 "ISO/IEC 10646 for GB with fullwidth"
1196                 '(long-name     "UCS for GB-fullwidth"
1197                   chars         256
1198                   dimension     3
1199                   columns       2
1200                   graphic       2
1201                   direction     l2r
1202                   =>iso-ir      177
1203                   mother        =ucs@gb))
1204   (make-charset '=ucs-bmp@gb
1205                 "ISO/IEC 10646 BMP for GB"
1206                 '(long-name     "BMP for GB"
1207                   chars         256
1208                   dimension     3
1209                   columns       2
1210                   graphic       2
1211                   direction     l2r
1212                   mother        =ucs@gb
1213                   min-code      #x0000
1214                   max-code      #xFFFF))
1215   (make-charset '=ucs@cns
1216                 "ISO/IEC 10646 for CNS 11643"
1217                 '(long-name     "UCS for CNS"
1218                   chars         256
1219                   dimension     3
1220                   columns       2
1221                   graphic       2
1222                   direction     l2r
1223                   =>iso-ir      177
1224                   mother        =ucs@unicode))
1225   (define-charset-alias 'ucs-cns '=ucs@cns)
1226   (make-charset '=ucs@cns/fw
1227                 "ISO/IEC 10646 for CNS 11643 with fullwidth"
1228                 '(long-name     "UCS for CNS-fullwidth"
1229                   chars         256
1230                   dimension     3
1231                   columns       2
1232                   graphic       2
1233                   direction     l2r
1234                   =>iso-ir      177
1235                   mother        =ucs@cns))
1236   (make-charset '=ucs-bmp@cns
1237                 "ISO/IEC 10646 BMP for CNS"
1238                 '(long-name     "BMP for CNS"
1239                   chars         256
1240                   dimension     3
1241                   columns       2
1242                   graphic       2
1243                   direction     l2r
1244                   mother        =ucs@cns
1245                   min-code      #x0000
1246                   max-code      #xFFFF))
1247   (make-charset '=ucs@jis
1248                 "ISO/IEC 10646 for JIS X0208/0212/0213"
1249                 '(long-name     "UCS for JIS"
1250                   chars         256
1251                   dimension     3
1252                   columns       2
1253                   graphic       2
1254                   direction     l2r
1255                   =>iso-ir      177
1256                   mother        =ucs@unicode))
1257   (define-charset-alias 'ucs-jis '=ucs@jis)
1258   (make-charset '=ucs@jis/fw
1259                 "ISO/IEC 10646 for JIS X0208/0212/0213 with fullwidth"
1260                 '(long-name     "UCS for JIS-fullwidth"
1261                   chars         256
1262                   dimension     3
1263                   columns       2
1264                   graphic       2
1265                   direction     l2r
1266                   =>iso-ir      177
1267                   mother        =ucs@jis))
1268   (make-charset '=ucs-bmp@jis
1269                 "ISO/IEC 10646 BMP for JIS"
1270                 '(long-name     "BMP for JIS"
1271                   chars         256
1272                   dimension     3
1273                   columns       2
1274                   graphic       2
1275                   direction     l2r
1276                   mother        =ucs@jis
1277                   min-code      #x0000
1278                   max-code      #xFFFF))
1279   ;; (make-charset '=ucs@jis/1983
1280   ;;               "ISO/IEC 10646 for JIS X 0208:1983"
1281   ;;               '(long-name     "UCS for JIS:1983"
1282   ;;                 chars         256
1283   ;;                 dimension     3
1284   ;;                 columns       2
1285   ;;                 graphic       2
1286   ;;                 direction     l2r
1287   ;;                 =>iso-ir      177
1288   ;;                 mother        =ucs@jis))
1289   (make-charset '=ucs@jis/1990
1290                 "ISO/IEC 10646 for JIS X 0208/0212:1990"
1291                 '(long-name     "UCS for JIS:1990"
1292                   chars         256
1293                   dimension     3
1294                   columns       2
1295                   graphic       2
1296                   direction     l2r
1297                   =>iso-ir      177
1298                   mother        =ucs@jis))
1299   (define-charset-alias '=ucs@jis-1990 '=ucs@jis/1990)
1300   (define-charset-alias '=ucs-jis-1990 '=ucs@jis/1990)
1301   (make-charset '=ucs@jis/2000
1302                 "ISO/IEC 10646 for JIS X 0213:2000"
1303                 '(long-name     "UCS for JIS:2000"
1304                   chars         256
1305                   dimension     3
1306                   columns       2
1307                   graphic       2
1308                   direction     l2r
1309                   =>iso-ir      177
1310                   mother        =ucs@jis))
1311   (define-charset-alias '=ucs@jis-2000 '=ucs@jis/2000)
1312   (define-charset-alias '=ucs-jis-2000 '=ucs@jis/2000)
1313   (make-charset '=ucs@jis/2004
1314                 "ISO/IEC 10646 for JIS X 0213:2004"
1315                 '(long-name     "UCS for JIS:2004"
1316                   chars         256
1317                   dimension     3
1318                   columns       2
1319                   graphic       2
1320                   direction     l2r
1321                   =>iso-ir      177
1322                   mother        =ucs@jis))
1323   (make-charset '=ucs@JP
1324                 "UCS for common glyphs used in Japan"
1325                 '(long-name     "UCS for Japan"
1326                   chars         256
1327                   dimension     3
1328                   columns       2
1329                   graphic       2
1330                   direction     l2r
1331                   =>iso-ir      177
1332                   mother        =ucs@jis/2004))
1333   (define-charset-alias '=ucs@jp '=ucs@JP)
1334   (make-charset '=ucs@ks
1335                 "ISO/IEC 10646 for Korean Standards"
1336                 '(long-name     "UCS for KS"
1337                   chars         256
1338                   dimension     3
1339                   columns       2
1340                   graphic       2
1341                   direction     l2r
1342                   =>iso-ir      177
1343                   mother        =ucs@unicode))
1344   (define-charset-alias 'ucs-ks '=ucs@ks)
1345   (make-charset '=ucs-bmp@ks
1346                 "ISO/IEC 10646 BMP for KS"
1347                 '(long-name     "BMP for KS"
1348                   chars         256
1349                   dimension     3
1350                   columns       2
1351                   graphic       2
1352                   direction     l2r
1353                   mother        =ucs@ks
1354                   min-code      #x0000
1355                   max-code      #xFFFF))
1356   (make-charset '=ucs@cns11643
1357                 "ISO/IEC 10646 for CNS based on www.cns11643.gov.tw"
1358                 '(long-name     "UCS for CNS11643"
1359                   chars         256
1360                   dimension     3
1361                   columns       2
1362                   graphic       2
1363                   direction     l2r
1364                   =>iso-ir      177
1365                   mother        =ucs@cns))
1366   (make-charset '=ucs@big5
1367                 "ISO/IEC 10646 for Big5"
1368                 '(long-name     "UCS for Big5"
1369                   chars         256
1370                   dimension     3
1371                   columns       2
1372                   graphic       2
1373                   direction     l2r
1374                   =>iso-ir      177
1375                   mother        =>>ucs@cns))
1376   (define-charset-alias 'ucs-big5 '=ucs@big5)
1377   (make-charset '=ucs@big5/cns11643
1378                 "ISO/IEC 10646 for Big5 based on www.cns11643.gov.tw"
1379                 '(long-name     "UCS for Big5@CNS11643"
1380                   chars         256
1381                   dimension     3
1382                   columns       2
1383                   graphic       2
1384                   direction     l2r
1385                   =>iso-ir      177
1386                   mother        =ucs@big5))
1387
1388   (make-charset
1389    '=ucs-radicals
1390    "CJK Radicals of UCS"
1391    '(long-name "UCS-Radicals"
1392                chars 256
1393                dimension 2
1394                columns 2
1395                graphic 2
1396                direction l2r
1397                registry "-zhRadicals-.*-ucs-0"
1398                mother ucs-bmp
1399                min-code #x2E00 max-code #x2FFF))
1400   (make-charset
1401    '=ucs-radicals@unicode
1402    "CJK Radicals of UCS"
1403    '(long-name "UCS-Radicals"
1404                chars 256
1405                dimension 2
1406                columns 2
1407                graphic 2
1408                direction l2r
1409                registry "-zhRadicals-.*-ucs-0"
1410                mother =ucs@unicode
1411                min-code #x2E00 max-code #x2FFF))
1412   (make-charset
1413    '=ucs-hangul
1414    "Hangul Syllables of UCS"
1415    '(long-name "UCS-Hangul-Syllables"
1416                chars 256
1417                dimension 2
1418                columns 2
1419                graphic 2
1420                direction l2r
1421                registry "-Hangul-.*-ucs-0"
1422                mother =ucs
1423                min-code #xAC00 max-code #xD7AF))
1424   (make-charset
1425    '=ucs-bmp-cjk
1426    "CJK Characters in BMP of UCS"
1427    '(long-name "UCS-BMP-CJK"
1428                chars 256
1429                dimension 2
1430                columns 2
1431                graphic 2
1432                direction l2r
1433                registry "-zh-.*-ucs-0"
1434                mother ucs-bmp
1435                min-code #x2E00
1436                max-code #x9FA5
1437                ;; max-code #xA4CF
1438                ))
1439   (make-charset
1440    '=ucs-bmp-cjk@unicode
1441    "CJK Characters in BMP of Unicode"
1442    '(long-name "Unicode-BMP-CJK"
1443                chars 256
1444                dimension 2
1445                columns 2
1446                graphic 2
1447                direction l2r
1448                registry "-zh-.*-ucs-0"
1449                mother =ucs@unicode
1450                min-code #x2E00
1451                max-code #x9FA5
1452                ;; max-code #xA4CF
1453                ))
1454   (make-charset
1455    '==>ucs-bmp-cjk@bucs
1456    "CJK Characters in BMP of BUCS"
1457    '(long-name "BUCS-BMP-CJK"
1458                chars 256
1459                dimension 2
1460                columns 2
1461                graphic 2
1462                direction l2r
1463                registry "-zh-.*-ucs-0"
1464                mother ==>ucs@bucs
1465                min-code #x2E00
1466                max-code #x9FA5
1467                ;; max-code #xA4CF
1468                ))
1469   (make-charset
1470    '=ucs-sip-ext-b
1471    "CJK Ideographs Extension B"
1472    '(long-name "UCS CJK Ext-B"
1473                chars 256
1474                dimension 2
1475                columns 2
1476                graphic 2
1477                direction l2r
1478                registry "\\(iso10646\\|ucs02\\)-2$"
1479                mother ucs
1480                min-code #x20000 max-code #x2A6D6
1481                code-offset #x20000))
1482   (make-charset
1483    '=ucs-sip-ext-b@iso
1484    "CJK Ideographs Extension B (ISO/IEC 10646-2)"
1485    '(long-name "UCS CJK Ext-B"
1486                chars 256
1487                dimension 2
1488                columns 2
1489                graphic 2
1490                direction l2r
1491                registry "\\(iso10646\\|ucs02\\)-2$"
1492                mother =ucs@iso
1493                min-code #x20000 max-code #x2A6D6
1494                code-offset #x20000))
1495
1496   (make-charset
1497    '=adobe-japan1-base
1498    "Adobe-Japan1 Character Collection for CID-Keyed Fonts"
1499    `(long-name "Adobe-Japan1"
1500                chars 256
1501                dimension 2
1502                columns 2
1503                graphic 2
1504                direction l2r
1505                registry "AdobeJapan1-[0-6]$"
1506                min-code ,(lsh #x6300 16)
1507                max-code ,(+ (lsh #x6300 16) 23057)
1508                code-offset      ,(lsh #x6300 16)))
1509   (make-charset
1510    '=adobe-japan1-0
1511    "Adobe-Japan1-0 Character Collection for CID-Keyed Fonts"
1512    '(long-name "Adobe-Japan1-0"
1513                chars 256
1514                dimension 2
1515                columns 2
1516                graphic 2
1517                direction l2r
1518                mother =adobe-japan1-base
1519                min-code 0
1520                max-code 8283
1521                registry "AdobeJapan1-0$"))
1522   (make-charset
1523    '=adobe-japan1-1
1524    "Adobe-Japan1-1 Character Collection for CID-Keyed Fonts"
1525    '(long-name "Adobe-Japan1-1"
1526                chars 256
1527                dimension 2
1528                columns 2
1529                graphic 2
1530                direction l2r
1531                mother =adobe-japan1-0
1532                min-code 0
1533                max-code 8358
1534                registry "AdobeJapan1-1$"))
1535   (make-charset
1536    '=adobe-japan1-2
1537    "Adobe-Japan1-2 Character Collection for CID-Keyed Fonts"
1538    '(long-name "Adobe-Japan1-2"
1539                chars 256
1540                dimension 2
1541                columns 2
1542                graphic 2
1543                direction l2r
1544                mother =adobe-japan1-1
1545                min-code 0
1546                max-code 8719
1547                registry "AdobeJapan1-2$"))
1548   (make-charset
1549    '=adobe-japan1-3
1550    "Adobe-Japan1-3 Character Collection for CID-Keyed Fonts"
1551    '(long-name "Adobe-Japan1-3"
1552                chars 256
1553                dimension 2
1554                columns 2
1555                graphic 2
1556                direction l2r
1557                mother =adobe-japan1-2
1558                min-code 0
1559                max-code 9353
1560                registry "AdobeJapan1-3$"))
1561   (make-charset
1562    '=adobe-japan1-4
1563    "Adobe-Japan1-4 Character Collection for CID-Keyed Fonts"
1564    '(long-name "Adobe-Japan1-4"
1565                chars 256
1566                dimension 2
1567                columns 2
1568                graphic 2
1569                direction l2r
1570                mother =adobe-japan1-3
1571                min-code 0
1572                max-code 15443
1573                registry "AdobeJapan1-4$"))
1574   (make-charset
1575    '=adobe-japan1-5
1576    "Adobe-Japan1-5 Character Collection for CID-Keyed Fonts"
1577    '(long-name "Adobe-Japan1-5"
1578                chars 256
1579                dimension 2
1580                columns 2
1581                graphic 2
1582                direction l2r
1583                mother =adobe-japan1-4
1584                min-code 0
1585                max-code 20316
1586                registry "AdobeJapan1-5$"))
1587   (make-charset
1588    '=adobe-japan1-6
1589    "Adobe-Japan1-6 Character Collection for CID-Keyed Fonts"
1590    '(long-name "Adobe-Japan1-6"
1591                chars 256
1592                dimension 2
1593                columns 2
1594                graphic 2
1595                direction l2r
1596                mother =adobe-japan1-5
1597                min-code 0
1598                max-code 23057
1599                registry "AdobeJapan1-6$"))
1600
1601   (make-charset
1602    '=hanyo-denshi/ja
1603    "JA (JIS X0208) part of Han'you-Denshi characters"
1604    `(long-name "Han'you-Denshi/JA"
1605                chars 94
1606                dimension 2
1607                columns 2
1608                graphic 2
1609                direction l2r
1610                registry "HanyoDenshi\\.JA-0$"
1611                min-code ,(lsh #x6400 16)
1612                max-code ,(+ (lsh #x6400 16) (1- (* 94 94)))
1613                code-offset ,(lsh #x6400 16)))
1614   (make-charset
1615    '=hanyo-denshi/jb
1616    "JB (JIS X0212) part of Han'you-Denshi characters"
1617    `(long-name "Han'you-Denshi/JB"
1618                chars 94
1619                dimension 2
1620                columns 2
1621                graphic 2
1622                direction l2r
1623                registry "HanyoDenshi\\.JB-0$"
1624                min-code    ,(+ (lsh #x6400 16) (* 94 94))
1625                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 2)))
1626                code-offset ,(+ (lsh #x6400 16) (* 94 94))))
1627   (make-charset
1628    '=hanyo-denshi/jc
1629    "JC (JIS X0213:2000 Plane 1) part of Han'you-Denshi characters"
1630    `(long-name "Han'you-Denshi/JC"
1631                chars 94
1632                dimension 2
1633                columns 2
1634                graphic 2
1635                direction l2r
1636                registry "HanyoDenshi\\.JC-0$"
1637                min-code    ,(+ (lsh #x6400 16) (* 94 94 2))
1638                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 3)))
1639                code-offset ,(+ (lsh #x6400 16) (* 94 94 2))))
1640   (make-charset
1641    '=hanyo-denshi/jd
1642    "JD (JIS X0213:2000 Plane 1) part of Han'you-Denshi characters"
1643    `(long-name "Han'you-Denshi/JD"
1644                chars 94
1645                dimension 2
1646                columns 2
1647                graphic 2
1648                direction l2r
1649                registry "HanyoDenshi\\.JD-0$"
1650                min-code    ,(+ (lsh #x6400 16) (* 94 94 3))
1651                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 4)))
1652                code-offset ,(+ (lsh #x6400 16) (* 94 94 3))))
1653   (make-charset
1654    '=hanyo-denshi/ft
1655    "FT (FDPC additional) part of Han'you-Denshi characters"
1656    `(long-name "Han'you-Denshi/FT"
1657                chars 94
1658                dimension 2
1659                columns 2
1660                graphic 2
1661                direction l2r
1662                registry "HanyoDenshi\\.FT-0$"
1663                min-code    ,(+ (lsh #x6400 16) (* 94 94 4))
1664                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 5)))
1665                code-offset ,(+ (lsh #x6400 16) (* 94 94 4))))
1666   (make-charset
1667    '=hanyo-denshi/ia
1668    "IA part of Han'you-Denshi characters"
1669    `(long-name "Han'you-Denshi/IA"
1670                chars 94
1671                dimension 2
1672                columns 2
1673                graphic 2
1674                direction l2r
1675                registry "HanyoDenshi\\.IA-0$"
1676                min-code    ,(+ (lsh #x6400 16) (* 94 94 5))
1677                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 6)))
1678                code-offset ,(+ (lsh #x6400 16) (* 94 94 5))))
1679   (make-charset
1680    '=hanyo-denshi/ib
1681    "IB part of Han'you-Denshi characters"
1682    `(long-name "Han'you-Denshi/IB"
1683                chars 94
1684                dimension 2
1685                columns 2
1686                graphic 2
1687                direction l2r
1688                registry "HanyoDenshi\\.IB-0$"
1689                min-code    ,(+ (lsh #x6400 16) (* 94 94 6))
1690                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 7)))
1691                code-offset ,(+ (lsh #x6400 16) (* 94 94 6))))
1692   (make-charset
1693    '=hanyo-denshi/hg
1694    "HG (HyouGai Kanji) part of Han'you-Denshi characters"
1695    `(long-name "Han'you-Denshi/HG"
1696                chars 94
1697                dimension 2
1698                columns 2
1699                graphic 2
1700                direction l2r
1701                registry "HanyoDenshi\\.HG-0$"
1702                min-code    ,(+ (lsh #x6400 16) (* 94 94 7))
1703                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 8)))
1704                code-offset ,(+ (lsh #x6400 16) (* 94 94 7))))
1705   (make-charset
1706    '=hanyo-denshi/ip
1707    "IP (for IPA) part of Han'you-Denshi characters"
1708    `(long-name "Han'you-Denshi/IP"
1709                chars 256
1710                dimension 2
1711                columns 2
1712                graphic 2
1713                direction l2r
1714                registry "HanyoDenshi\\.IP-0$"
1715                min-code    ,(+ (lsh #x6402 16) #x4E00)
1716                max-code    ,(+ (lsh #x6402 16) #x9FFF)
1717                code-offset ,(+ (lsh #x6402 16))))
1718   (make-charset
1719    '=hanyo-denshi/jt
1720    "JT (Juuki Touitsu Moji) part of Han'you-Denshi characters"
1721    `(long-name "Han'you-Denshi/JT"
1722                chars 256
1723                dimension 2
1724                columns 2
1725                graphic 2
1726                direction l2r
1727                registry "HanyoDenshi\\.JT-0$"
1728                min-code    ,(+ (lsh #x6402 16) #xAC00)
1729                max-code    ,(+ (lsh #x6402 16) #xD7AF)
1730                code-offset ,(+ (lsh #x6402 16))))
1731   (make-charset
1732    '=hanyo-denshi/ks
1733    "KS (KoSeki) part of Han'you-Denshi characters"
1734    `(long-name "Han'you-Denshi/KS font encoding"
1735                chars 256
1736                dimension 3
1737                columns 2
1738                graphic 2
1739                direction l2r))
1740   (make-charset
1741    '=hanyo-denshi/ks/mf
1742    "font encoding for KS (KoSeki) characters"
1743    `(long-name "Han'you-Denshi/KS font encoding"
1744                chars 256
1745                dimension 2
1746                columns 2
1747                graphic 2
1748                direction l2r
1749                registry "HanyoDenshi\\.KSMF-0$"
1750                min-code       ,(lsh #x6403 16)
1751                max-code    ,(+ (lsh #x6403 16) #xFFFF)
1752                code-offset    ,(lsh #x6403 16)))
1753
1754   (make-charset
1755    '=>>hanyo-denshi/ft
1756    "Han'you-Denshi/FT abstract glyphs"
1757    '(long-name "Han'you-Denshi/FT glyphs"
1758                chars 94
1759                dimension 2
1760                columns 2
1761                graphic 2
1762                direction l2r
1763                registry "HanyoDenshi\\.FT-0$"
1764                mother =hanyo-denshi/ft))
1765   (make-charset
1766    '=>>hanyo-denshi/jt
1767    "JT (Juuki Touitsu Moji) abstract glyphs"
1768    '(long-name "Han'you-Denshi/JT glyphs"
1769                chars 256
1770                dimension 2
1771                columns 2
1772                graphic 2
1773                direction l2r
1774                registry "HanyoDenshi\\.JT-0$"
1775                mother =hanyo-denshi/jt))
1776   (make-charset
1777    '=>>hanyo-denshi/ks
1778    "Han'you-Denshi/KS abstract glyphs"
1779    '(long-name "Han'you-Denshi/KS glyphs"
1780                chars 256
1781                dimension 3
1782                columns 2
1783                graphic 2
1784                direction l2r
1785                mother =hanyo-denshi/ks))
1786   )
1787
1788 ;;; mule-conf.el ends here