(=>>>jis-x0213-1@2004): New coded-charset for XEmacs CHISE.
[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@2004
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 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 glyphs for JIS X0208/0212/0213"
1053                 '(long-name     "UCS 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@ks
1092                 "UCS Representative glyphs for Korean Standards"
1093                 '(long-name     "UCS glyphs for KS"
1094                   chars         256
1095                   dimension     3
1096                   columns       2
1097                   graphic       2
1098                   direction     l2r
1099                   =>iso-ir      177
1100                   mother        =>>ucs@unicode))
1101   (make-charset '=>>ucs@cns
1102                 "UCS Representative glyphs for CNS 11643 sources"
1103                 '(long-name     "UCS glyphs for CNS"
1104                   chars         256
1105                   dimension     3
1106                   columns       2
1107                   graphic       2
1108                   direction     l2r
1109                   =>iso-ir      177
1110                   mother        =>>ucs@unicode))
1111
1112   (make-charset '=ucs@iso
1113                 "ISO/IEC 10646 for its representative glyphs"
1114                 '(long-name     "UCS for ISO"
1115                   chars         256
1116                   dimension     3
1117                   columns       2
1118                   graphic       2
1119                   direction     l2r
1120                   =>iso-ir      177
1121                   mother        =>>ucs@iso))
1122   (make-charset '=ucs@unicode
1123                 "Unicode for its representative glyphs"
1124                 '(long-name     "UCS for Unicode"
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@gb
1133                 "ISO/IEC 10646 for GB"
1134                 '(long-name     "UCS for GB"
1135                   chars         256
1136                   dimension     3
1137                   columns       2
1138                   graphic       2
1139                   direction     l2r
1140                   =>iso-ir      177
1141                   mother        =ucs@unicode))
1142   (define-charset-alias 'ucs-gb '=ucs@gb)
1143   (make-charset '=ucs@gb/fw
1144                 "ISO/IEC 10646 for GB with fullwidth"
1145                 '(long-name     "UCS for GB-fullwidth"
1146                   chars         256
1147                   dimension     3
1148                   columns       2
1149                   graphic       2
1150                   direction     l2r
1151                   =>iso-ir      177
1152                   mother        =ucs@gb))
1153   (make-charset '=ucs-bmp@gb
1154                 "ISO/IEC 10646 BMP for GB"
1155                 '(long-name     "BMP for GB"
1156                   chars         256
1157                   dimension     3
1158                   columns       2
1159                   graphic       2
1160                   direction     l2r
1161                   mother        =ucs@gb
1162                   min-code      #x0000
1163                   max-code      #xFFFF))
1164   (make-charset '=ucs@cns
1165                 "ISO/IEC 10646 for CNS 11643"
1166                 '(long-name     "UCS for CNS"
1167                   chars         256
1168                   dimension     3
1169                   columns       2
1170                   graphic       2
1171                   direction     l2r
1172                   =>iso-ir      177
1173                   mother        =ucs@unicode))
1174   (define-charset-alias 'ucs-cns '=ucs@cns)
1175   (make-charset '=ucs@cns/fw
1176                 "ISO/IEC 10646 for CNS 11643 with fullwidth"
1177                 '(long-name     "UCS for CNS-fullwidth"
1178                   chars         256
1179                   dimension     3
1180                   columns       2
1181                   graphic       2
1182                   direction     l2r
1183                   =>iso-ir      177
1184                   mother        =ucs@cns))
1185   (make-charset '=ucs-bmp@cns
1186                 "ISO/IEC 10646 BMP for CNS"
1187                 '(long-name     "BMP for CNS"
1188                   chars         256
1189                   dimension     3
1190                   columns       2
1191                   graphic       2
1192                   direction     l2r
1193                   mother        =ucs@cns
1194                   min-code      #x0000
1195                   max-code      #xFFFF))
1196   (make-charset '=ucs@jis
1197                 "ISO/IEC 10646 for JIS X0208/0212/0213"
1198                 '(long-name     "UCS for JIS"
1199                   chars         256
1200                   dimension     3
1201                   columns       2
1202                   graphic       2
1203                   direction     l2r
1204                   =>iso-ir      177
1205                   mother        =ucs@unicode))
1206   (define-charset-alias 'ucs-jis '=ucs@jis)
1207   (make-charset '=ucs@jis/fw
1208                 "ISO/IEC 10646 for JIS X0208/0212/0213 with fullwidth"
1209                 '(long-name     "UCS for JIS-fullwidth"
1210                   chars         256
1211                   dimension     3
1212                   columns       2
1213                   graphic       2
1214                   direction     l2r
1215                   =>iso-ir      177
1216                   mother        =ucs@jis))
1217   (make-charset '=ucs-bmp@jis
1218                 "ISO/IEC 10646 BMP for JIS"
1219                 '(long-name     "BMP for JIS"
1220                   chars         256
1221                   dimension     3
1222                   columns       2
1223                   graphic       2
1224                   direction     l2r
1225                   mother        =ucs@jis
1226                   min-code      #x0000
1227                   max-code      #xFFFF))
1228   (make-charset '=ucs@jis/1990
1229                 "ISO/IEC 10646 for JIS X 0208/0212:1990"
1230                 '(long-name     "UCS for JIS:1990"
1231                   chars         256
1232                   dimension     3
1233                   columns       2
1234                   graphic       2
1235                   direction     l2r
1236                   =>iso-ir      177
1237                   mother        =ucs@jis))
1238   (define-charset-alias '=ucs@jis-1990 '=ucs@jis/1990)
1239   (define-charset-alias '=ucs-jis-1990 '=ucs@jis/1990)
1240   (make-charset '=ucs@jis/2000
1241                 "ISO/IEC 10646 for JIS X 0213:2000"
1242                 '(long-name     "UCS for JIS:2000"
1243                   chars         256
1244                   dimension     3
1245                   columns       2
1246                   graphic       2
1247                   direction     l2r
1248                   =>iso-ir      177
1249                   mother        =ucs@jis))
1250   (define-charset-alias '=ucs@jis-2000 '=ucs@jis/2000)
1251   (define-charset-alias '=ucs-jis-2000 '=ucs@jis/2000)
1252   (make-charset '=ucs@jis/2004
1253                 "ISO/IEC 10646 for JIS X 0213:2004"
1254                 '(long-name     "UCS for JIS:2004"
1255                   chars         256
1256                   dimension     3
1257                   columns       2
1258                   graphic       2
1259                   direction     l2r
1260                   =>iso-ir      177
1261                   mother        =ucs@jis))
1262   (make-charset '=ucs@JP
1263                 "UCS for common glyphs used in Japan"
1264                 '(long-name     "UCS for Japan"
1265                   chars         256
1266                   dimension     3
1267                   columns       2
1268                   graphic       2
1269                   direction     l2r
1270                   =>iso-ir      177
1271                   mother        =ucs@jis/2004))
1272   (define-charset-alias '=ucs@jp '=ucs@JP)
1273   (make-charset '=ucs@ks
1274                 "ISO/IEC 10646 for Korean Standards"
1275                 '(long-name     "UCS for KS"
1276                   chars         256
1277                   dimension     3
1278                   columns       2
1279                   graphic       2
1280                   direction     l2r
1281                   =>iso-ir      177
1282                   mother        =ucs@unicode))
1283   (define-charset-alias 'ucs-ks '=ucs@ks)
1284   (make-charset '=ucs-bmp@ks
1285                 "ISO/IEC 10646 BMP for KS"
1286                 '(long-name     "BMP for KS"
1287                   chars         256
1288                   dimension     3
1289                   columns       2
1290                   graphic       2
1291                   direction     l2r
1292                   mother        =ucs@ks
1293                   min-code      #x0000
1294                   max-code      #xFFFF))
1295   (make-charset '=ucs@cns11643
1296                 "ISO/IEC 10646 for CNS based on www.cns11643.gov.tw"
1297                 '(long-name     "UCS for CNS11643"
1298                   chars         256
1299                   dimension     3
1300                   columns       2
1301                   graphic       2
1302                   direction     l2r
1303                   =>iso-ir      177
1304                   mother        =ucs@cns))
1305   (make-charset '=ucs@big5
1306                 "ISO/IEC 10646 for Big5"
1307                 '(long-name     "UCS for Big5"
1308                   chars         256
1309                   dimension     3
1310                   columns       2
1311                   graphic       2
1312                   direction     l2r
1313                   =>iso-ir      177
1314                   mother        =>>ucs@cns))
1315   (define-charset-alias 'ucs-big5 '=ucs@big5)
1316   (make-charset '=ucs@big5/cns11643
1317                 "ISO/IEC 10646 for Big5 based on www.cns11643.gov.tw"
1318                 '(long-name     "UCS for Big5@CNS11643"
1319                   chars         256
1320                   dimension     3
1321                   columns       2
1322                   graphic       2
1323                   direction     l2r
1324                   =>iso-ir      177
1325                   mother        =ucs@big5))
1326
1327   (make-charset
1328    '=ucs-radicals
1329    "CJK Radicals of UCS"
1330    '(long-name "UCS-Radicals"
1331                chars 256
1332                dimension 2
1333                columns 2
1334                graphic 2
1335                direction l2r
1336                registry "-zhRadicals-.*-ucs-0"
1337                mother ucs-bmp
1338                min-code #x2E00 max-code #x2FFF))
1339   (make-charset
1340    '=ucs-radicals@unicode
1341    "CJK Radicals of UCS"
1342    '(long-name "UCS-Radicals"
1343                chars 256
1344                dimension 2
1345                columns 2
1346                graphic 2
1347                direction l2r
1348                registry "-zhRadicals-.*-ucs-0"
1349                mother =ucs@unicode
1350                min-code #x2E00 max-code #x2FFF))
1351   (make-charset
1352    '=ucs-hangul
1353    "Hangul Syllables of UCS"
1354    '(long-name "UCS-Hangul-Syllables"
1355                chars 256
1356                dimension 2
1357                columns 2
1358                graphic 2
1359                direction l2r
1360                registry "-Hangul-.*-ucs-0"
1361                mother =ucs
1362                min-code #xAC00 max-code #xD7AF))
1363   (make-charset
1364    '=ucs-bmp-cjk
1365    "CJK Characters in BMP of UCS"
1366    '(long-name "UCS-BMP-CJK"
1367                chars 256
1368                dimension 2
1369                columns 2
1370                graphic 2
1371                direction l2r
1372                registry "-zh-.*-ucs-0"
1373                mother ucs-bmp
1374                min-code #x2E00
1375                max-code #x9FA5
1376                ;; max-code #xA4CF
1377                ))
1378   (make-charset
1379    '=ucs-bmp-cjk@unicode
1380    "CJK Characters in BMP of Unicode"
1381    '(long-name "Unicode-BMP-CJK"
1382                chars 256
1383                dimension 2
1384                columns 2
1385                graphic 2
1386                direction l2r
1387                registry "-zh-.*-ucs-0"
1388                mother =ucs@unicode
1389                min-code #x2E00
1390                max-code #x9FA5
1391                ;; max-code #xA4CF
1392                ))
1393   (make-charset
1394    '==>ucs-bmp-cjk@bucs
1395    "CJK Characters in BMP of BUCS"
1396    '(long-name "BUCS-BMP-CJK"
1397                chars 256
1398                dimension 2
1399                columns 2
1400                graphic 2
1401                direction l2r
1402                registry "-zh-.*-ucs-0"
1403                mother ==>ucs@bucs
1404                min-code #x2E00
1405                max-code #x9FA5
1406                ;; max-code #xA4CF
1407                ))
1408   (make-charset
1409    '=ucs-sip-ext-b
1410    "CJK Ideographs Extension B"
1411    '(long-name "UCS CJK Ext-B"
1412                chars 256
1413                dimension 2
1414                columns 2
1415                graphic 2
1416                direction l2r
1417                registry "\\(iso10646\\|ucs02\\)-2$"
1418                mother ucs
1419                min-code #x20000 max-code #x2A6D6
1420                code-offset #x20000))
1421   (make-charset
1422    '=ucs-sip-ext-b@iso
1423    "CJK Ideographs Extension B (ISO/IEC 10646-2)"
1424    '(long-name "UCS CJK Ext-B"
1425                chars 256
1426                dimension 2
1427                columns 2
1428                graphic 2
1429                direction l2r
1430                registry "\\(iso10646\\|ucs02\\)-2$"
1431                mother =ucs@iso
1432                min-code #x20000 max-code #x2A6D6
1433                code-offset #x20000))
1434
1435   (make-charset
1436    '=adobe-japan1-base
1437    "Adobe-Japan1 Character Collection for CID-Keyed Fonts"
1438    `(long-name "Adobe-Japan1"
1439                chars 256
1440                dimension 2
1441                columns 2
1442                graphic 2
1443                direction l2r
1444                registry "AdobeJapan1-[0-6]$"
1445                min-code ,(lsh #x6300 16)
1446                max-code ,(+ (lsh #x6300 16) 23057)
1447                code-offset      ,(lsh #x6300 16)))
1448   (make-charset
1449    '=adobe-japan1-0
1450    "Adobe-Japan1-0 Character Collection for CID-Keyed Fonts"
1451    '(long-name "Adobe-Japan1-0"
1452                chars 256
1453                dimension 2
1454                columns 2
1455                graphic 2
1456                direction l2r
1457                mother =adobe-japan1-base
1458                min-code 0
1459                max-code 8283
1460                registry "AdobeJapan1-0$"))
1461   (make-charset
1462    '=adobe-japan1-1
1463    "Adobe-Japan1-1 Character Collection for CID-Keyed Fonts"
1464    '(long-name "Adobe-Japan1-1"
1465                chars 256
1466                dimension 2
1467                columns 2
1468                graphic 2
1469                direction l2r
1470                mother =adobe-japan1-0
1471                min-code 0
1472                max-code 8358
1473                registry "AdobeJapan1-1$"))
1474   (make-charset
1475    '=adobe-japan1-2
1476    "Adobe-Japan1-2 Character Collection for CID-Keyed Fonts"
1477    '(long-name "Adobe-Japan1-2"
1478                chars 256
1479                dimension 2
1480                columns 2
1481                graphic 2
1482                direction l2r
1483                mother =adobe-japan1-1
1484                min-code 0
1485                max-code 8719
1486                registry "AdobeJapan1-2$"))
1487   (make-charset
1488    '=adobe-japan1-3
1489    "Adobe-Japan1-3 Character Collection for CID-Keyed Fonts"
1490    '(long-name "Adobe-Japan1-3"
1491                chars 256
1492                dimension 2
1493                columns 2
1494                graphic 2
1495                direction l2r
1496                mother =adobe-japan1-2
1497                min-code 0
1498                max-code 9353
1499                registry "AdobeJapan1-3$"))
1500   (make-charset
1501    '=adobe-japan1-4
1502    "Adobe-Japan1-4 Character Collection for CID-Keyed Fonts"
1503    '(long-name "Adobe-Japan1-4"
1504                chars 256
1505                dimension 2
1506                columns 2
1507                graphic 2
1508                direction l2r
1509                mother =adobe-japan1-3
1510                min-code 0
1511                max-code 15443
1512                registry "AdobeJapan1-4$"))
1513   (make-charset
1514    '=adobe-japan1-5
1515    "Adobe-Japan1-5 Character Collection for CID-Keyed Fonts"
1516    '(long-name "Adobe-Japan1-5"
1517                chars 256
1518                dimension 2
1519                columns 2
1520                graphic 2
1521                direction l2r
1522                mother =adobe-japan1-4
1523                min-code 0
1524                max-code 20316
1525                registry "AdobeJapan1-5$"))
1526   (make-charset
1527    '=adobe-japan1-6
1528    "Adobe-Japan1-6 Character Collection for CID-Keyed Fonts"
1529    '(long-name "Adobe-Japan1-6"
1530                chars 256
1531                dimension 2
1532                columns 2
1533                graphic 2
1534                direction l2r
1535                mother =adobe-japan1-5
1536                min-code 0
1537                max-code 23057
1538                registry "AdobeJapan1-6$"))
1539
1540   (make-charset
1541    '=hanyo-denshi/ja
1542    "JA (JIS X0208) part of Han'you-Denshi characters"
1543    `(long-name "Han'you-Denshi/JA"
1544                chars 94
1545                dimension 2
1546                columns 2
1547                graphic 2
1548                direction l2r
1549                registry "HanyoDenshi\\.JA-0$"
1550                min-code ,(lsh #x6400 16)
1551                max-code ,(+ (lsh #x6400 16) (1- (* 94 94)))
1552                code-offset ,(lsh #x6400 16)))
1553   (make-charset
1554    '=hanyo-denshi/jb
1555    "JB (JIS X0212) part of Han'you-Denshi characters"
1556    `(long-name "Han'you-Denshi/JB"
1557                chars 94
1558                dimension 2
1559                columns 2
1560                graphic 2
1561                direction l2r
1562                registry "HanyoDenshi\\.JB-0$"
1563                min-code    ,(+ (lsh #x6400 16) (* 94 94))
1564                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 2)))
1565                code-offset ,(+ (lsh #x6400 16) (* 94 94))))
1566   (make-charset
1567    '=hanyo-denshi/jc
1568    "JC (JIS X0213:2000 Plane 1) part of Han'you-Denshi characters"
1569    `(long-name "Han'you-Denshi/JC"
1570                chars 94
1571                dimension 2
1572                columns 2
1573                graphic 2
1574                direction l2r
1575                registry "HanyoDenshi\\.JC-0$"
1576                min-code    ,(+ (lsh #x6400 16) (* 94 94 2))
1577                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 3)))
1578                code-offset ,(+ (lsh #x6400 16) (* 94 94 2))))
1579   (make-charset
1580    '=hanyo-denshi/jd
1581    "JD (JIS X0213:2000 Plane 1) part of Han'you-Denshi characters"
1582    `(long-name "Han'you-Denshi/JD"
1583                chars 94
1584                dimension 2
1585                columns 2
1586                graphic 2
1587                direction l2r
1588                registry "HanyoDenshi\\.JD-0$"
1589                min-code    ,(+ (lsh #x6400 16) (* 94 94 3))
1590                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 4)))
1591                code-offset ,(+ (lsh #x6400 16) (* 94 94 3))))
1592   (make-charset
1593    '=hanyo-denshi/ft
1594    "FT (FDPC additional) part of Han'you-Denshi characters"
1595    `(long-name "Han'you-Denshi/FT"
1596                chars 94
1597                dimension 2
1598                columns 2
1599                graphic 2
1600                direction l2r
1601                registry "HanyoDenshi\\.FT-0$"
1602                min-code    ,(+ (lsh #x6400 16) (* 94 94 4))
1603                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 5)))
1604                code-offset ,(+ (lsh #x6400 16) (* 94 94 4))))
1605   (make-charset
1606    '=hanyo-denshi/ia
1607    "IA part of Han'you-Denshi characters"
1608    `(long-name "Han'you-Denshi/IA"
1609                chars 94
1610                dimension 2
1611                columns 2
1612                graphic 2
1613                direction l2r
1614                registry "HanyoDenshi\\.IA-0$"
1615                min-code    ,(+ (lsh #x6400 16) (* 94 94 5))
1616                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 6)))
1617                code-offset ,(+ (lsh #x6400 16) (* 94 94 5))))
1618   (make-charset
1619    '=hanyo-denshi/ib
1620    "IB part of Han'you-Denshi characters"
1621    `(long-name "Han'you-Denshi/IB"
1622                chars 94
1623                dimension 2
1624                columns 2
1625                graphic 2
1626                direction l2r
1627                registry "HanyoDenshi\\.IB-0$"
1628                min-code    ,(+ (lsh #x6400 16) (* 94 94 6))
1629                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 7)))
1630                code-offset ,(+ (lsh #x6400 16) (* 94 94 6))))
1631   (make-charset
1632    '=hanyo-denshi/hg
1633    "HG (HyouGai Kanji) part of Han'you-Denshi characters"
1634    `(long-name "Han'you-Denshi/HG"
1635                chars 94
1636                dimension 2
1637                columns 2
1638                graphic 2
1639                direction l2r
1640                registry "HanyoDenshi\\.HG-0$"
1641                min-code    ,(+ (lsh #x6400 16) (* 94 94 7))
1642                max-code    ,(+ (lsh #x6400 16) (1- (* 94 94 8)))
1643                code-offset ,(+ (lsh #x6400 16) (* 94 94 7))))
1644   (make-charset
1645    '=hanyo-denshi/ip
1646    "IP (for IPA) part of Han'you-Denshi characters"
1647    `(long-name "Han'you-Denshi/IP"
1648                chars 256
1649                dimension 2
1650                columns 2
1651                graphic 2
1652                direction l2r
1653                registry "HanyoDenshi\\.IP-0$"
1654                min-code    ,(+ (lsh #x6402 16) #x4E00)
1655                max-code    ,(+ (lsh #x6402 16) #x9FFF)
1656                code-offset ,(+ (lsh #x6402 16))))
1657   (make-charset
1658    '=hanyo-denshi/jt
1659    "JT (Juuki Touitsu Moji) part of Han'you-Denshi characters"
1660    `(long-name "Han'you-Denshi/JT"
1661                chars 256
1662                dimension 2
1663                columns 2
1664                graphic 2
1665                direction l2r
1666                registry "HanyoDenshi\\.JT-0$"
1667                min-code    ,(+ (lsh #x6402 16) #xAC00)
1668                max-code    ,(+ (lsh #x6402 16) #xD7AF)
1669                code-offset ,(+ (lsh #x6402 16))))
1670   (make-charset
1671    '=hanyo-denshi/ks
1672    "KS (KoSeki) part of Han'you-Denshi characters"
1673    `(long-name "Han'you-Denshi/KS font encoding"
1674                chars 256
1675                dimension 3
1676                columns 2
1677                graphic 2
1678                direction l2r))
1679   (make-charset
1680    '=hanyo-denshi/ks/mf
1681    "font encoding for KS (KoSeki) characters"
1682    `(long-name "Han'you-Denshi/KS font encoding"
1683                chars 256
1684                dimension 2
1685                columns 2
1686                graphic 2
1687                direction l2r
1688                registry "HanyoDenshi\\.KSMF-0$"
1689                min-code       ,(lsh #x6403 16)
1690                max-code    ,(+ (lsh #x6403 16) #xFFFF)
1691                code-offset    ,(lsh #x6403 16)))
1692
1693   (make-charset
1694    '=>>hanyo-denshi/ft
1695    "Han'you-Denshi/FT abstract glyphs"
1696    '(long-name "Han'you-Denshi/FT glyphs"
1697                chars 94
1698                dimension 2
1699                columns 2
1700                graphic 2
1701                direction l2r
1702                registry "HanyoDenshi\\.FT-0$"
1703                mother =hanyo-denshi/ft))
1704   (make-charset
1705    '=>>hanyo-denshi/jt
1706    "JT (Juuki Touitsu Moji) abstract glyphs"
1707    '(long-name "Han'you-Denshi/JT glyphs"
1708                chars 256
1709                dimension 2
1710                columns 2
1711                graphic 2
1712                direction l2r
1713                registry "HanyoDenshi\\.JT-0$"
1714                mother =hanyo-denshi/jt))
1715   (make-charset
1716    '=>>hanyo-denshi/ks
1717    "Han'you-Denshi/KS abstract glyphs"
1718    '(long-name "Han'you-Denshi/KS glyphs"
1719                chars 94
1720                dimension 2
1721                columns 2
1722                graphic 2
1723                direction l2r
1724                mother =hanyo-denshi/ks))
1725   )
1726
1727 ;;; mule-conf.el ends here