870914bd85d7837fb1fabb14dafb30b7aeebedd5
[chise/xemacs-chise.git] / 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 MORIOKA Tomohiko
6
7 ;; Keywords: mule, multilingual, character set, coding system
8
9 ;; This file is part of XEmacs.
10
11 ;; XEmacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; XEmacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with XEmacs; see the file COPYING.  If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
25
26 ;;; Code:
27
28 (cond
29  ((featurep 'utf-2000)
30   (make-charset
31    '=jis-x0208@1978
32    "JIS X 0208:1978, unchanged part."
33    '(registry "jisx0208\\.1978"
34               dimension 2
35               chars 94
36               mother =jis-x0208
37               final ?@
38               graphic 0
39               partial t))
40   (make-charset
41    '=jis-x0208@1978/-4pr
42    "JIS X 0208:1978, 1st - 3rd impressions."
43    '(registry "jisx0208\\.1978"
44               dimension 2
45               chars 94
46               mother =jis-x0208@1978
47               final ?@
48               graphic 0
49               partial t))
50   (make-charset
51    '=jis-x0208@1978/1pr
52    "JIS X 0208:1978, 1st impression."
53    '(iso-ir 42
54             registry "jisx0208\\.1978"
55             dimension 2
56             chars 94
57             mother =jis-x0208@1978/-4pr
58             final ?@
59             graphic 0))
60   (make-charset
61    '=jis-x0208@1978/4-pr
62    "JIS X 0208:1978, 4th impression or later."
63    '(registry "jisx0208\\.1978"
64               dimension 2
65               chars 94
66               mother =jis-x0208@1978
67               ;; final ?@
68               graphic 0
69               partial t))
70   (define-charset-alias '=jis-x0208@1978/i1 '=jis-x0208@1978/1pr)
71   (define-charset-alias '=jis-x0208@1978/i-4 '=jis-x0208@1978/-4pr)
72   (define-charset-alias '=jis-x0208@1978/i4- '=jis-x0208@1978/4-pr)
73   )
74  (t
75   (make-charset
76    '=jis-x0208@1978
77    "JIS X0208:1978 Japanese Kanji (so called \"old JIS\")."
78    '(iso-ir 42
79             registry "jisx0208\\.1978"
80             dimension 2
81             chars 94
82             mother =jis-x0208
83             final ?@
84             graphic 0))
85   ))
86
87 (define-charset-alias '=jis-x0208-1978          '=jis-x0208@1978)
88 (define-charset-alias 'japanese-jisx0208-1978   '=jis-x0208@1978)
89 (define-charset-alias 'chinese-gb2312           '=gb2312)
90 (define-charset-alias '=jis-x0208-1983          '=jis-x0208@1983)
91 (define-charset-alias 'japanese-jisx0208        '=jis-x0208@1983)
92 (define-charset-alias 'korean-ksc5601           '=ks-x1001)
93 (define-charset-alias 'japanese-jisx0212        '=jis-x0212)
94 (define-charset-alias 'chinese-cns11643-1       '=cns11643-1)
95 (define-charset-alias 'chinese-cns11643-2       '=cns11643-2)
96 (define-charset-alias 'chinese-gb12345          '=gb12345)
97 (define-charset-alias 'chinese-big5             '=big5)
98
99 ;; PinYin-ZhuYin
100 (make-charset 'sisheng "PinYin-ZhuYin"
101               '(registry "sisheng_cwnn\\|OMRON_UDC_ZH"
102                 dimension 1
103                 chars 94
104                 final ?0
105                 graphic 0
106                 ))
107
108 ;; Lao script.
109 ;; ISO10646's 0x0E80..0x0EDF are mapped to 0x20..0x7F.
110 (make-charset 'lao "Lao script"
111               '(registry "MuleLao-1"
112                 dimension 1
113                 chars 94
114                 final ?1
115                 graphic 1))
116
117 ;; IPA (International Phonetic Alphabet)
118 (make-charset 'ipa "International Phonetic Alphabet"
119               '(registry "MuleIPA"
120                 dimension 1
121                 chars 96
122                 final ?0
123                 graphic 1))
124
125 ;; Ethiopic
126 (make-charset 'ethiopic "Ethiopic"
127               '(registry "Ethio"
128                 dimension 2
129                 chars 94
130                 final ?3
131                 graphic 0
132                 ))
133
134 ;; ISO-IR-165 (CCITT Extended GB)
135 ;;    It is based on CCITT Recommendation T.101, includes GB 2312-80 +
136 ;;    GB 8565-88 table A4 + 293 characters.
137 (if (featurep 'utf-2000)
138     (progn
139       (make-charset '=iso-ir165
140                     "ISO-IR-165 (CCITT Extended GB; Chinese simplified)"
141                     '(iso-ir 165
142                              dimension 2
143                              chars 94
144                              mother =gb2312
145                              final ?E
146                              registry "isoir165"
147                              graphic 0))
148       (define-charset-alias 'chinese-isoir165 '=iso-ir165))
149   (make-charset 'chinese-isoir165
150                 "ISO-IR-165 (CCITT Extended GB; Chinese simplified)"
151                 '(iso-ir 165
152                          dimension 2
153                          chars 94
154                          final ?E
155                          registry "isoir165"
156                          graphic 0)))
157
158 ;; CNS11643 Plane3 thru Plane7
159 ;; These represent more and more obscure Chinese characters.
160 ;; By the time you get to Plane 7, we're talking about characters
161 ;; that appear once in some ancient manuscript and whose meaning
162 ;; is unknown.
163
164 (flet
165     ((make-chinese-cns11643-charset
166       (name iso-ir plane final)
167       (make-charset
168        name (concat "CNS 11643 Plane " plane " (Chinese traditional)")
169        `(iso-ir ,iso-ir
170          registry 
171          ,(concat "CNS11643[.-]\\(.*[.-]\\)?" plane "$")
172          dimension 2
173          chars 94
174          final ,final
175          graphic 0))
176       ))
177   (make-chinese-cns11643-charset '=cns11643-3 183 "3" ?I)
178   (make-chinese-cns11643-charset '=cns11643-4 184 "4" ?J)
179   (make-chinese-cns11643-charset '=cns11643-5 185 "5" ?K)
180   (make-chinese-cns11643-charset '=cns11643-6 186 "6" ?L)
181   (make-chinese-cns11643-charset '=cns11643-7 187 "7" ?M)
182   (define-charset-alias 'chinese-cns11643-3     '=cns11643-3)
183   (define-charset-alias 'chinese-cns11643-4     '=cns11643-4)
184   (define-charset-alias 'chinese-cns11643-5     '=cns11643-5)
185   (define-charset-alias 'chinese-cns11643-6     '=cns11643-6)
186   (define-charset-alias 'chinese-cns11643-7     '=cns11643-7)
187   )
188
189 ;; JIS X 0213:2000
190 (cond
191  ((featurep 'utf-2000)
192   (make-charset
193    '=jis-x0213-1
194    "JIS X 0213 Plain 1 (unchanged part)"
195    '(registry "jisx0213\\(\\.[0-9]+\\)?-1"
196               dimension 2
197               chars 94
198               final ?O
199               graphic 0
200               partial t))
201
202   (make-charset
203    '=jis-x0213-1@2000
204    "JIS X 0213:2000 Plain 1"
205    '(iso-ir 228
206             registry "jisx0213\\(\\.2000\\)-1"
207             dimension 2
208             chars 94
209             mother =jis-x0213-1
210             final ?O
211             graphic 0))
212   (make-charset
213    '=jis-x0213-2
214    "JIS X 0213 Plain 2"
215    '(iso-ir 229
216             registry "jisx0213\\(\\.\\(2000\\|2004\\)\\)?-2"
217             dimension 2
218             chars 94
219             final ?P
220             graphic 0))
221
222   (make-charset
223    '=jis-x0213-1@2004
224    "JIS X 0213:2004 Plain 1"
225    '(iso-ir 233
226             registry "jisx0213\\(\\.2004\\)-1"
227             dimension 2
228             chars 94
229             mother =jis-x0213-1
230             final ?Q
231             graphic 0))
232
233   (define-charset-alias 'japanese-jisx0213-1 '=jis-x0213-1@2000)
234   (define-charset-alias 'japanese-jisx0213-2 '=jis-x0213-2)
235   (define-charset-alias '=jis-x0213-1-2000 '=jis-x0213-1@2000)
236   (define-charset-alias '=jis-x0213-2-2000 '=jis-x0213-2)
237   )
238  (t
239   (make-charset
240    'japanese-jisx0213-1
241    "JIS X 0213:2000 Plain 1"
242    '(registry "jisx0213\\(\\.2000\\)-1"
243               dimension 2
244               chars 94
245               final ?O
246               graphic 0))
247   (make-charset
248    'japanese-jisx0213-2
249    "JIS X 0213:2000 Plain 2"
250    '(registry "jisx0213\\(\\.2000\\)-2"
251               dimension 2
252               chars 94
253               final ?P
254               graphic 0))
255   ))
256
257 (when (featurep 'utf-2000)
258   (define-charset-alias 'ucs '=ucs)
259   (define-charset-alias '=jis-x0208-1990 '=jis-x0208@1990)
260   (define-charset-alias 'japanese-jisx0208-1990 '=jis-x0208@1990)
261   (make-charset
262    '=jis-x0208@1997
263    "JIS X 0208 based on the unification rule of 1997 edition."
264    '(registry "jisx0208\\.1990"
265               dimension 2
266               chars 94
267               mother =jis-x0208
268               ;; final ?B
269               graphic 0))
270
271   (make-charset '=big5-cdp
272                 "Big5 with CDP extension"
273                 '(long-name     "Big5-CDP"
274                   chars         256
275                   dimension     2
276                   columns       2
277                   graphic       2
278                   direction     l2r
279                   registry      "big5\\.cdp-0"
280                   mother        chinese-big5
281                   min-code      #x8140
282                   max-code      #x8DFE))
283   (define-charset-alias 'chinese-big5-cdp '=big5-cdp)
284
285   (make-charset '=gt
286                 "GT 2000"
287                 `(long-name     "GT"
288                   chars         256
289                   dimension     3
290                   columns       2
291                   graphic       2
292                   direction     l2r
293                   registry      ""
294                   min-code      ,(lsh #x6100 16)
295                   max-code      ,(+ (lsh #x6100 16) 67547)
296                   code-offset   ,(lsh #x6100 16)))
297   (define-charset-alias 'ideograph-gt '=gt)
298   (make-charset '=gt-k
299                 "Ideographic components of GT"
300                 `(long-name     "GT components"
301                   chars         256
302                   dimension     2
303                   columns       2
304                   graphic       2
305                   direction     l2r
306                   registry      ""
307                   min-code      ,(lsh #x6110 16)
308                   max-code      ,(+ (lsh #x6110 16) 17090)
309                   code-offset   ,(lsh #x6110 16)))
310   (define-charset-alias 'ideograph-gt-k '=gt-k)
311   (let ((i 1))
312     (while (<= i 11)
313       (make-charset
314        (intern (format "=gt-pj-%d" i))
315        (format "GT 2000 (pseudo JIS encoding) part %d" i)
316        `(long-name ,(format "GT PJ %d" i)
317                    chars 94
318                    dimension 2
319                    columns 2
320                    graphic 0
321                    direction l2r
322                    registry ,(format "\\(GTpj-%d\\|jisx0208\\.GT-%d\\)$" i i)))
323       (define-charset-alias
324         (intern (format "ideograph-gt-pj-%d" i))
325         (intern (format "=gt-pj-%d" i)))
326       (setq i (1+ i))))
327   (make-charset
328    '=gt-pj-k1
329    "Ideographic parts of GT (pseudo JIS encoding) part 1"
330    '(long-name "GT K1"
331                chars 94
332                dimension 2
333                columns 2
334                graphic 0
335                direction l2r
336                registry "\\(GTKpj-1\\|jisx0208\\.GTK-1\\)$"))
337   (define-charset-alias 'ideograph-gt-pj-k1 '=gt-pj-k1)
338   (make-charset
339    '=gt-pj-k2
340    "Ideographic parts of GT (pseudo JIS encoding) part 2"
341    '(long-name "GT K2"
342                chars 94
343                dimension 2
344                columns 2
345                graphic 0
346                direction l2r
347                registry "\\(GTKpj-2\\|jisx0208\\.GTK-2\\)$"))
348   (define-charset-alias 'ideograph-gt-pj-k2 '=gt-pj-k2)
349
350   (make-charset '=daikanwa
351                 "Daikanwa dictionary (revised version 2)"
352                 `(long-name     "Daikanwa"
353                   chars         256
354                   dimension     2
355                   columns       2
356                   graphic       2
357                   direction     l2r
358                   registry      "Daikanwa\\(\\.[0-9]+\\)?-3"
359                   min-code      #xE00000
360                   max-code      ,(+ #xE00000 50100)
361                   code-offset   #xE00000))
362   (define-charset-alias 'ideograph-daikanwa '=daikanwa)
363
364   (make-charset '=daikanwa@rev1
365                 "Daikanwa dictionary (revised version)"
366                 `(long-name     "Daikanwa Rev."
367                   chars         256
368                   dimension     2
369                   columns       2
370                   graphic       2
371                   direction     l2r
372                   registry      "Daikanwa\\(\\.[0-9]+\\)?-2"
373                   mother        =daikanwa
374                   ))
375   (define-charset-alias 'ideograph-daikanwa-2 '=daikanwa@rev1)
376   (define-charset-alias '=daikanwa-rev1 '=daikanwa@rev1)
377
378   (make-charset '=daikanwa@rev2
379                 "Daikanwa dictionary (revised version 2)"
380                 `(long-name     "Daikanwa"
381                   chars         256
382                   dimension     2
383                   columns       2
384                   graphic       2
385                   direction     l2r
386                   registry      "Daikanwa\\(\\.[0-9]+\\)?-3"
387                   mother        =daikanwa
388                   min-code      1
389                   max-code      49964
390                   ;; min-code   #xE00000
391                   ;; max-code   ,(+ #xE00000 50100)
392                   ;; code-offset        #xE00000
393                   ))
394   (define-charset-alias '=daikanwa-rev2 '=daikanwa@rev2)
395
396   (make-charset '=shinjigen
397                 "Kadokawa ShinJigen dictionary (common parts)"
398                 `(long-name     "Shinjigen common parts"
399                   chars         256
400                   dimension     2
401                   columns       2
402                   graphic       2
403                   direction     l2r
404                   registry      "Shinjigen\\(\\.[0-9]+\\)?-*"))
405
406   (make-charset '=shinjigen@1ed
407                 "Kadokawa ShinJigen dictionary (the first edition)"
408                 `(long-name     "Shinjigen-1"
409                   chars         256
410                   dimension     2
411                   columns       2
412                   graphic       2
413                   direction     l2r
414                   mother        =shinjigen
415                   registry      "Shinjigen\\(\\.[0-9]+\\)?-1"))
416   (define-charset-alias 'shinjigen-1 '=shinjigen@1ed)
417
418   (make-charset '=shinjigen@1ed/24pr
419                 "Kadokawa ShinJigen dictionary (the 24th impression)"
420                 `(long-name     "Shinjigen-1 24pr"
421                   chars         256
422                   dimension     2
423                   columns       2
424                   graphic       2
425                   direction     l2r
426                   mother        =shinjigen@1ed))
427
428   (make-charset '=shinjigen@rev
429                 "Kadokawa ShinJigen dictionary (the revised edition)"
430                 `(long-name     "Shinjigen-2"
431                   chars         256
432                   dimension     2
433                   columns       2
434                   graphic       2
435                   direction     l2r
436                   mother        =shinjigen
437                   registry      "Shinjigen\\(\\.[0-9]+\\)?-2"))
438   (define-charset-alias 'shinjigen-2 '=shinjigen@rev)
439   (make-charset '=shinjigen/+p@rev
440                 "ShinJigen (the second edition) number with '"
441                 `(long-name     "Shinjigen-2 with '"
442                   chars         256
443                   dimension     2
444                   columns       2
445                   graphic       2
446                   direction     l2r))
447   (define-charset-alias 'shinjigen-2-p '=shinjigen/+p@rev)
448
449   (make-charset '=big5-pua
450                 "Big5 with private used area"
451                 '(long-name     "Big5-PUA"
452                   chars         256
453                   dimension     2
454                   columns       2
455                   graphic       2
456                   direction     l2r
457                   mother        chinese-big5
458                   registry      "Big5\\.ETEN"))
459   (define-charset-alias 'chinese-big5-pua '=big5-pua)
460   (make-charset '=big5-eten
461                 "Big5 ETEN"
462                 '(long-name     "Big5-ETEN"
463                   chars         256
464                   dimension     2
465                   columns       2
466                   graphic       2
467                   direction     l2r
468                   mother        chinese-big5
469                   min-code      #x8140
470                   max-code      #xFEFE
471                   registry      "Big5\\.ETEN"))
472   (define-charset-alias 'chinese-big5-eten '=big5-eten)
473   (make-charset 'chinese-big5-eten-a
474                 "Big5 ETEN (#xF9D6 .. #xF9FE)"
475                 '(long-name     "Big5-ETEN-a"
476                   chars         256
477                   dimension     2
478                   columns       2
479                   graphic       2
480                   direction     l2r
481                   mother        chinese-big5
482                   min-code      #xF9D6
483                   max-code      #xF9FE
484                   registry      "Big5\\.ETEN"))
485   (make-charset 'chinese-big5-eten-b
486                 "Big5 ETEN (#xC6A1 .. #xC8FE)"
487                 '(long-name     "Big5-ETEN-b"
488                   chars         256
489                   dimension     2
490                   columns       2
491                   graphic       2
492                   direction     l2r
493                   mother        chinese-big5
494                   min-code      #xC6A1
495                   max-code      #xC8FE
496                   registry      "Big5\\.ETEN"))
497
498   (let* ((i 1)
499          (hzk-min (+ (lsh #x6200 16) 65536))
500          (hzk-max (+ hzk-min 65535)))
501     (while (<= i 12)
502       (make-charset
503        (intern (format "=hanziku-%d" i))
504        (format "HANZIKU (pseudo BIG5 encoding) part %d" i)
505        `(long-name ,(format "HANZIKU-%d" i)
506                    chars 256
507                    dimension 2
508                    columns 2
509                    graphic 2
510                    direction l2r
511                    registry ,(format "hanziku-%d$" i i)
512                    min-code ,hzk-min
513                    max-code ,hzk-max
514                    code-offset ,hzk-min))
515       (define-charset-alias
516         (intern (format "ideograph-hanziku-%d" i))
517         (intern (format "=hanziku-%d" i)))
518       (setq hzk-min (1+ hzk-max)
519             hzk-max (+ hzk-min 65535))
520       (setq i (1+ i))))
521
522   (make-charset '=cbeta "CBETA private characters"
523                 '(long-name     "CBETA PUA"
524                   chars         256
525                   dimension     2
526                   registry      "cbeta-0"
527                   graphic       2
528                   min-code      #xE20000
529                   max-code      #xE2FFFF
530                   code-offset   #xE20000
531                   columns       2
532                   direction     l2r))
533   (define-charset-alias 'ideograph-cbeta '=cbeta)
534
535   (make-charset '=zinbun-oracle
536                 "Oracle Bones Script"
537                 `(long-name     "Oracle Bones Script in Zinbun, Kyoto Univ."
538                   chars         256
539                   dimension     2
540                   registry      "zob1968-0"
541                   graphic       2
542                   min-code      #xE70000
543                   max-code      ,(+ #xE70000 8192)
544                   code-offset   #xE70000
545                   columns       2
546                   direction     l2r))
547
548   (make-charset '=jef-china3
549                 "JEF + CHINA3 private characters"
550                 '(long-name     "JEF + CHINA3"
551                   chars         256
552                   dimension     2
553                   columns       2
554                   graphic       2
555                   direction     l2r
556                   registry      "china3jef-0"
557                   min-code      #xE80000
558                   max-code      #xE8FFFF
559                   code-offset   #xE80000))
560   (define-charset-alias 'china3-jef '=jef-china3)
561
562   (make-charset '=ruimoku-v6
563                 "private characters used in RUIMOKU Version.6"
564                 `(long-name     "RUI6"
565                   chars         256
566                   dimension     2
567                   columns       2
568                   graphic       2
569                   direction     l2r
570                   registry      "rui6-0"
571                   ;; mother     ucs
572                   min-code      #xE90000 ; #xE000
573                   max-code      #xE908FF ; #xE8FF
574                   code-offset   ,(- #xE90000 #xE000)))
575
576   (make-charset '=ucs@iso
577                 "ISO/IEC 10646 for its representative glyphs"
578                 '(long-name     "UCS for ISO"
579                   chars         256
580                   dimension     3
581                   columns       2
582                   graphic       2
583                   direction     l2r
584                   mother        =ucs))
585   (make-charset '=ucs@unicode
586                 "Unicode for its representative glyphs"
587                 '(long-name     "UCS for Unicode"
588                   chars         256
589                   dimension     3
590                   columns       2
591                   graphic       2
592                   direction     l2r
593                   mother        =ucs@iso))
594   (make-charset '=ucs@gb
595                 "ISO/IEC 10646 for GB"
596                 '(long-name     "UCS for GB"
597                   chars         256
598                   dimension     3
599                   columns       2
600                   graphic       2
601                   direction     l2r
602                   mother        =ucs@unicode))
603   (define-charset-alias 'ucs-gb '=ucs@gb)
604   (make-charset '=ucs@gb/fw
605                 "ISO/IEC 10646 for GB with fullwidth"
606                 '(long-name     "UCS for GB-fullwidth"
607                   chars         256
608                   dimension     3
609                   columns       2
610                   graphic       2
611                   direction     l2r
612                   mother        =ucs@gb))
613   (make-charset '=ucs-bmp@gb
614                 "ISO/IEC 10646 BMP for GB"
615                 '(long-name     "BMP for GB"
616                   chars         256
617                   dimension     3
618                   columns       2
619                   graphic       2
620                   direction     l2r
621                   mother        =ucs@gb
622                   min-code      #x0000
623                   max-code      #xFFFF))
624   (make-charset '=ucs@cns
625                 "ISO/IEC 10646 for CNS 11643"
626                 '(long-name     "UCS for CNS"
627                   chars         256
628                   dimension     3
629                   columns       2
630                   graphic       2
631                   direction     l2r
632                   mother        =ucs@unicode))
633   (define-charset-alias 'ucs-cns '=ucs@cns)
634   (make-charset '=ucs@cns/fw
635                 "ISO/IEC 10646 for CNS 11643 with fullwidth"
636                 '(long-name     "UCS for CNS-fullwidth"
637                   chars         256
638                   dimension     3
639                   columns       2
640                   graphic       2
641                   direction     l2r
642                   mother        =ucs@cns))
643   (make-charset '=ucs-bmp@cns
644                 "ISO/IEC 10646 BMP for CNS"
645                 '(long-name     "BMP for CNS"
646                   chars         256
647                   dimension     3
648                   columns       2
649                   graphic       2
650                   direction     l2r
651                   mother        =ucs@cns
652                   min-code      #x0000
653                   max-code      #xFFFF))
654   (make-charset '=ucs@jis
655                 "ISO/IEC 10646 for JIS X0208/0212/0213"
656                 '(long-name     "UCS for JIS"
657                   chars         256
658                   dimension     3
659                   columns       2
660                   graphic       2
661                   direction     l2r
662                   mother        =ucs@unicode))
663   (define-charset-alias 'ucs-jis '=ucs@jis)
664   (make-charset '=ucs@jis/fw
665                 "ISO/IEC 10646 for JIS X0208/0212/0213 with fullwidth"
666                 '(long-name     "UCS for JIS-fullwidth"
667                   chars         256
668                   dimension     3
669                   columns       2
670                   graphic       2
671                   direction     l2r
672                   mother        =ucs@jis))
673   (make-charset '=ucs-bmp@jis
674                 "ISO/IEC 10646 BMP for JIS"
675                 '(long-name     "BMP for JIS"
676                   chars         256
677                   dimension     3
678                   columns       2
679                   graphic       2
680                   direction     l2r
681                   mother        =ucs@jis
682                   min-code      #x0000
683                   max-code      #xFFFF))
684   (make-charset '=ucs@jis/1990
685                 "ISO/IEC 10646 for JIS X 0208/0212:1990"
686                 '(long-name     "UCS for JIS:1990"
687                   chars         256
688                   dimension     3
689                   columns       2
690                   graphic       2
691                   direction     l2r
692                   mother        ucs-jis))
693   (define-charset-alias '=ucs@jis-1990 '=ucs@jis/1990)
694   (define-charset-alias '=ucs-jis-1990 '=ucs@jis/1990)
695   (make-charset '=ucs@jis/2000
696                 "ISO/IEC 10646 for JIS X 0213:2000"
697                 '(long-name     "UCS for JIS:2000"
698                   chars         256
699                   dimension     3
700                   columns       2
701                   graphic       2
702                   direction     l2r
703                   mother        ucs-jis))
704   (define-charset-alias '=ucs@jis-2000 '=ucs@jis/2000)
705   (define-charset-alias '=ucs-jis-2000 '=ucs@jis/2000)
706   (make-charset '=ucs@jis/2004
707                 "ISO/IEC 10646 for JIS X 0213:2004"
708                 '(long-name     "UCS for JIS:2004"
709                   chars         256
710                   dimension     3
711                   columns       2
712                   graphic       2
713                   direction     l2r
714                   mother        ucs-jis))
715   (make-charset '=ucs@JP
716                 "UCS for common glyphs used in Japan"
717                 '(long-name     "UCS for Japan"
718                   chars         256
719                   dimension     3
720                   columns       2
721                   graphic       2
722                   direction     l2r
723                   mother        =ucs@jis/2004))
724   (define-charset-alias '=ucs@jp '=ucs@JP)
725   (make-charset '=ucs@ks
726                 "ISO/IEC 10646 for Korean Standards"
727                 '(long-name     "UCS for KS"
728                   chars         256
729                   dimension     3
730                   columns       2
731                   graphic       2
732                   direction     l2r
733                   mother        =ucs@unicode))
734   (define-charset-alias 'ucs-ks '=ucs@ks)
735   (make-charset '=ucs-bmp@ks
736                 "ISO/IEC 10646 BMP for KS"
737                 '(long-name     "BMP for KS"
738                   chars         256
739                   dimension     3
740                   columns       2
741                   graphic       2
742                   direction     l2r
743                   mother        =ucs@ks
744                   min-code      #x0000
745                   max-code      #xFFFF))
746   (make-charset '=ucs@big5
747                 "ISO/IEC 10646 for Big5"
748                 '(long-name     "UCS for Big5"
749                   chars         256
750                   dimension     3
751                   columns       2
752                   graphic       2
753                   direction     l2r
754                   mother        =ucs@unicode))
755   (define-charset-alias 'ucs-big5 '=ucs@big5)
756   (make-charset '=ucs@big5/cns11643
757                 "ISO/IEC 10646 for Big5 based on www.cns11643.gov.tw"
758                 '(long-name     "UCS for Big5@CNS11643"
759                   chars         256
760                   dimension     3
761                   columns       2
762                   graphic       2
763                   direction     l2r
764                   mother        =ucs@big5))
765   (make-charset '=ucs@cns11643
766                 "ISO/IEC 10646 for CNS based on www.cns11643.gov.tw"
767                 '(long-name     "UCS for CNS11643"
768                   chars         256
769                   dimension     3
770                   columns       2
771                   graphic       2
772                   direction     l2r
773                   mother        =ucs@cns))
774   
775   (make-charset
776    '=ucs-radicals
777    "CJK Radicals of UCS"
778    '(long-name "UCS-Radicals"
779                chars 256
780                dimension 2
781                columns 2
782                graphic 2
783                direction l2r
784                registry "-zhRadicals-.*-ucs-0"
785                mother ucs-bmp
786                min-code #x2E00 max-code #x2FFF))
787   (make-charset
788    '=ucs-radicals@unicode
789    "CJK Radicals of UCS"
790    '(long-name "UCS-Radicals"
791                chars 256
792                dimension 2
793                columns 2
794                graphic 2
795                direction l2r
796                registry "-zhRadicals-.*-ucs-0"
797                mother =ucs@unicode
798                min-code #x2E00 max-code #x2FFF))
799   (make-charset
800    '=ucs-hangul
801    "Hangul Syllables of UCS"
802    '(long-name "UCS-Hangul-Syllables"
803                chars 256
804                dimension 2
805                columns 2
806                graphic 2
807                direction l2r
808                registry "-Hangul-.*-ucs-0"
809                mother =ucs
810                min-code #xAC00 max-code #xD7AF))
811   (make-charset
812    '=ucs-bmp-cjk
813    "CJK Characters in BMP of UCS"
814    '(long-name "UCS-BMP-CJK"
815                chars 256
816                dimension 2
817                columns 2
818                graphic 2
819                direction l2r
820                registry "-zh-.*-ucs-0"
821                mother ucs-bmp
822                min-code #x2E00
823                max-code #x9FA5
824                ;; max-code #xA4CF
825                ))
826   (make-charset
827    '=ucs-bmp-cjk@unicode
828    "CJK Characters in BMP of Unicode"
829    '(long-name "Unicode-BMP-CJK"
830                chars 256
831                dimension 2
832                columns 2
833                graphic 2
834                direction l2r
835                registry "-zh-.*-ucs-0"
836                mother =ucs@unicode
837                min-code #x2E00
838                max-code #x9FA5
839                ;; max-code #xA4CF
840                ))
841   (make-charset
842    '=ucs-sip-ext-b
843    "CJK Ideographs Extension B"
844    '(long-name "UCS CJK Ext-B"
845                chars 256
846                dimension 2
847                columns 2
848                graphic 2
849                direction l2r
850                registry "\\(iso10646\\|ucs02\\)-2$"
851                mother ucs
852                min-code #x20000 max-code #x2A6D6
853                code-offset #x20000))
854   (make-charset
855    '=ucs-sip-ext-b@iso
856    "CJK Ideographs Extension B (ISO/IEC 10646-2)"
857    '(long-name "UCS CJK Ext-B"
858                chars 256
859                dimension 2
860                columns 2
861                graphic 2
862                direction l2r
863                registry "\\(iso10646\\|ucs02\\)-2$"
864                mother =ucs@iso
865                min-code #x20000 max-code #x2A6D6
866                code-offset #x20000))
867
868   (make-charset
869    '=adobe-japan1-0
870    "Adobe-Japan1-0 Character Collection for CID-Keyed Fonts"
871    '(long-name "Adobe-Japan1-0"
872                chars 256
873                dimension 2
874                columns 2
875                graphic 2
876                direction l2r
877                registry "AdobeJapan1-0$"))
878   (make-charset
879    '=adobe-japan1-1
880    "Adobe-Japan1-1 Character Collection for CID-Keyed Fonts"
881    '(long-name "Adobe-Japan1-1"
882                chars 256
883                dimension 2
884                columns 2
885                graphic 2
886                direction l2r
887                mother =adobe-japan1-0
888                registry "AdobeJapan1-1$"))
889   (make-charset
890    '=adobe-japan1-2
891    "Adobe-Japan1-2 Character Collection for CID-Keyed Fonts"
892    '(long-name "Adobe-Japan1-2"
893                chars 256
894                dimension 2
895                columns 2
896                graphic 2
897                direction l2r
898                mother =adobe-japan1-1
899                registry "AdobeJapan1-2$"))
900   (make-charset
901    '=adobe-japan1-3
902    "Adobe-Japan1-3 Character Collection for CID-Keyed Fonts"
903    '(long-name "Adobe-Japan1-3"
904                chars 256
905                dimension 2
906                columns 2
907                graphic 2
908                direction l2r
909                mother =adobe-japan1-2
910                registry "AdobeJapan1-3$"))
911   (make-charset
912    '=adobe-japan1-4
913    "Adobe-Japan1-4 Character Collection for CID-Keyed Fonts"
914    '(long-name "Adobe-Japan1-4"
915                chars 256
916                dimension 2
917                columns 2
918                graphic 2
919                direction l2r
920                mother =adobe-japan1-3
921                registry "AdobeJapan1-4$"))
922   (make-charset
923    '=adobe-japan1-5
924    "Adobe-Japan1-5 Character Collection for CID-Keyed Fonts"
925    '(long-name "Adobe-Japan1-5"
926                chars 256
927                dimension 2
928                columns 2
929                graphic 2
930                direction l2r
931                mother =adobe-japan1-4
932                registry "AdobeJapan1-5$"))
933   (make-charset
934    '=adobe-japan1-6
935    "Adobe-Japan1-6 Character Collection for CID-Keyed Fonts"
936    '(long-name "Adobe-Japan1-6"
937                chars 256
938                dimension 2
939                columns 2
940                graphic 2
941                direction l2r
942                mother =adobe-japan1-5
943                registry "AdobeJapan1-6$"))
944   )
945
946 ;;; mule-conf.el ends here