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