Sync up with r21-4-17-chise-0_23-release.
[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 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 '=big5-pua
331                 "Big5 with private used area"
332                 '(long-name     "Big5-PUA"
333                   chars         256
334                   dimension     2
335                   columns       2
336                   graphic       2
337                   direction     l2r
338                   mother        chinese-big5
339                   registry      "Big5\\.ETEN"))
340   (define-charset-alias 'chinese-big5-pua '=big5-pua)
341   (make-charset '=big5-eten
342                 "Big5 ETEN"
343                 '(long-name     "Big5-ETEN"
344                   chars         256
345                   dimension     2
346                   columns       2
347                   graphic       2
348                   direction     l2r
349                   mother        chinese-big5
350                   min-code      #x8140
351                   max-code      #xFEFE
352                   registry      "Big5\\.ETEN"))
353   (define-charset-alias 'chinese-big5-eten '=big5-eten)
354   (make-charset 'chinese-big5-eten-a
355                 "Big5 ETEN (#xF9D6 .. #xF9FE)"
356                 '(long-name     "Big5-ETEN-a"
357                   chars         256
358                   dimension     2
359                   columns       2
360                   graphic       2
361                   direction     l2r
362                   mother        chinese-big5
363                   min-code      #xF9D6
364                   max-code      #xF9FE
365                   registry      "Big5\\.ETEN"))
366   (make-charset 'chinese-big5-eten-b
367                 "Big5 ETEN (#xC6A1 .. #xC8FE)"
368                 '(long-name     "Big5-ETEN-b"
369                   chars         256
370                   dimension     2
371                   columns       2
372                   graphic       2
373                   direction     l2r
374                   mother        chinese-big5
375                   min-code      #xC6A1
376                   max-code      #xC8FE
377                   registry      "Big5\\.ETEN"))
378
379   (let* ((i 1)
380          (hzk-min (+ (lsh #x6200 16) 65536))
381          (hzk-max (+ hzk-min 65535)))
382     (while (<= i 12)
383       (make-charset
384        (intern (format "=hanziku-%d" i))
385        (format "HANZIKU (pseudo BIG5 encoding) part %d" i)
386        `(long-name ,(format "HANZIKU-%d" i)
387                    chars 256
388                    dimension 2
389                    columns 2
390                    graphic 2
391                    direction l2r
392                    registry ,(format "hanziku-%d$" i i)
393                    min-code ,hzk-min
394                    max-code ,hzk-max
395                    code-offset ,hzk-min))
396       (define-charset-alias
397         (intern (format "ideograph-hanziku-%d" i))
398         (intern (format "=hanziku-%d" i)))
399       (setq hzk-min (1+ hzk-max)
400             hzk-max (+ hzk-min 65535))
401       (setq i (1+ i))))
402
403   (make-charset '=cbeta "CBETA private characters"
404                 '(long-name     "CBETA PUA"
405                   chars         256
406                   dimension     2
407                   registry      "cbeta-0"
408                   graphic       2
409                   min-code      #xE20000
410                   max-code      #xE2FFFF
411                   code-offset   #xE20000
412                   columns       2
413                   direction     l2r))
414   (define-charset-alias 'ideograph-cbeta '=cbeta)
415
416   (make-charset '=zinbun-oracle
417                 "Oracle Bones Script"
418                 `(long-name     "Oracle Bones Script in Zinbun, Kyoto Univ."
419                   chars         256
420                   dimension     2
421                   registry      "zob1968-0"
422                   graphic       2
423                   min-code      #xE70000
424                   max-code      ,(+ #xE70000 8192)
425                   code-offset   #xE70000
426                   columns       2
427                   direction     l2r))
428
429   (make-charset '=jef-china3
430                 "JEF + CHINA3 private characters"
431                 '(long-name     "JEF + CHINA3"
432                   chars         256
433                   dimension     2
434                   columns       2
435                   graphic       2
436                   direction     l2r
437                   registry      "china3jef-0"
438                   min-code      #xE80000
439                   max-code      #xE8FFFF
440                   code-offset   #xE80000))
441   (define-charset-alias 'china3-jef '=jef-china3)
442
443   (make-charset '=ruimoku-v6
444                 "private characters used in RUIMOKU Version.6"
445                 `(long-name     "RUI6"
446                   chars         256
447                   dimension     2
448                   columns       2
449                   graphic       2
450                   direction     l2r
451                   registry      "rui6-0"
452                   ;; mother     ucs
453                   min-code      #xE90000 ; #xE000
454                   max-code      #xE908FF ; #xE8FF
455                   code-offset   ,(- #xE90000 #xE000)))
456
457   (make-charset '=ucs@iso
458                 "ISO/IEC 10646 for its representative glyphs"
459                 '(long-name     "UCS for ISO"
460                   chars         256
461                   dimension     3
462                   columns       2
463                   graphic       2
464                   direction     l2r
465                   mother        =ucs))
466   (make-charset '=ucs@unicode
467                 "Unicode for its representative glyphs"
468                 '(long-name     "UCS for Unicode"
469                   chars         256
470                   dimension     3
471                   columns       2
472                   graphic       2
473                   direction     l2r
474                   mother        =ucs@iso))
475   (make-charset '=ucs@gb
476                 "ISO/IEC 10646 for GB"
477                 '(long-name     "UCS for GB"
478                   chars         256
479                   dimension     3
480                   columns       2
481                   graphic       2
482                   direction     l2r
483                   mother        =ucs@unicode))
484   (define-charset-alias 'ucs-gb '=ucs@gb)
485   (make-charset '=ucs@gb/fw
486                 "ISO/IEC 10646 for GB with fullwidth"
487                 '(long-name     "UCS for GB-fullwidth"
488                   chars         256
489                   dimension     3
490                   columns       2
491                   graphic       2
492                   direction     l2r
493                   mother        =ucs@gb))
494   (make-charset '=ucs-bmp@gb
495                 "ISO/IEC 10646 BMP for GB"
496                 '(long-name     "BMP for GB"
497                   chars         256
498                   dimension     3
499                   columns       2
500                   graphic       2
501                   direction     l2r
502                   mother        =ucs@gb
503                   min-code      #x0000
504                   max-code      #xFFFF))
505   (make-charset '=ucs@cns
506                 "ISO/IEC 10646 for CNS 11643"
507                 '(long-name     "UCS for CNS"
508                   chars         256
509                   dimension     3
510                   columns       2
511                   graphic       2
512                   direction     l2r
513                   mother        =ucs@unicode))
514   (define-charset-alias 'ucs-cns '=ucs@cns)
515   (make-charset '=ucs@cns/fw
516                 "ISO/IEC 10646 for CNS 11643 with fullwidth"
517                 '(long-name     "UCS for CNS-fullwidth"
518                   chars         256
519                   dimension     3
520                   columns       2
521                   graphic       2
522                   direction     l2r
523                   mother        =ucs@cns))
524   (make-charset '=ucs-bmp@cns
525                 "ISO/IEC 10646 BMP for CNS"
526                 '(long-name     "BMP for CNS"
527                   chars         256
528                   dimension     3
529                   columns       2
530                   graphic       2
531                   direction     l2r
532                   mother        =ucs@cns
533                   min-code      #x0000
534                   max-code      #xFFFF))
535   (make-charset '=ucs@jis
536                 "ISO/IEC 10646 for JIS X0208/0212/0213"
537                 '(long-name     "UCS for JIS"
538                   chars         256
539                   dimension     3
540                   columns       2
541                   graphic       2
542                   direction     l2r
543                   mother        =ucs@unicode))
544   (define-charset-alias 'ucs-jis '=ucs@jis)
545   (make-charset '=ucs@jis/fw
546                 "ISO/IEC 10646 for JIS X0208/0212/0213 with fullwidth"
547                 '(long-name     "UCS for JIS-fullwidth"
548                   chars         256
549                   dimension     3
550                   columns       2
551                   graphic       2
552                   direction     l2r
553                   mother        =ucs@jis))
554   (make-charset '=ucs-bmp@jis
555                 "ISO/IEC 10646 BMP for JIS"
556                 '(long-name     "BMP for JIS"
557                   chars         256
558                   dimension     3
559                   columns       2
560                   graphic       2
561                   direction     l2r
562                   mother        =ucs@jis
563                   min-code      #x0000
564                   max-code      #xFFFF))
565   (make-charset '=ucs@jis/1990
566                 "ISO/IEC 10646 for JIS X 0208/0212:1990"
567                 '(long-name     "UCS for JIS:1990"
568                   chars         256
569                   dimension     3
570                   columns       2
571                   graphic       2
572                   direction     l2r
573                   mother        ucs-jis))
574   (define-charset-alias '=ucs@jis-1990 '=ucs@jis/1990)
575   (define-charset-alias '=ucs-jis-1990 '=ucs@jis/1990)
576   (make-charset '=ucs@jis/2000
577                 "ISO/IEC 10646 for JIS X 0213:2000"
578                 '(long-name     "UCS for JIS:2000"
579                   chars         256
580                   dimension     3
581                   columns       2
582                   graphic       2
583                   direction     l2r
584                   mother        ucs-jis))
585   (define-charset-alias '=ucs@jis-2000 '=ucs@jis/2000)
586   (define-charset-alias '=ucs-jis-2000 '=ucs@jis/2000)
587   (make-charset '=ucs@JP
588                 "UCS for common glyphs used in Japan"
589                 '(long-name     "UCS for Japan"
590                   chars         256
591                   dimension     3
592                   columns       2
593                   graphic       2
594                   direction     l2r
595                   mother        =ucs@jis/2000))
596   (define-charset-alias '=ucs@jp '=ucs@JP)
597   (make-charset '=ucs@ks
598                 "ISO/IEC 10646 for Korean Standards"
599                 '(long-name     "UCS for KS"
600                   chars         256
601                   dimension     3
602                   columns       2
603                   graphic       2
604                   direction     l2r
605                   mother        =ucs@unicode))
606   (define-charset-alias 'ucs-ks '=ucs@ks)
607   (make-charset '=ucs-bmp@ks
608                 "ISO/IEC 10646 BMP for KS"
609                 '(long-name     "BMP for KS"
610                   chars         256
611                   dimension     3
612                   columns       2
613                   graphic       2
614                   direction     l2r
615                   mother        =ucs@ks
616                   min-code      #x0000
617                   max-code      #xFFFF))
618   (make-charset '=ucs@big5
619                 "ISO/IEC 10646 for Big5"
620                 '(long-name     "UCS for Big5"
621                   chars         256
622                   dimension     3
623                   columns       2
624                   graphic       2
625                   direction     l2r
626                   mother        =ucs@unicode))
627   (define-charset-alias 'ucs-big5 '=ucs@big5)
628   (make-charset '=ucs@big5/cns11643
629                 "ISO/IEC 10646 for Big5 based on www.cns11643.gov.tw"
630                 '(long-name     "UCS for Big5@CNS11643"
631                   chars         256
632                   dimension     3
633                   columns       2
634                   graphic       2
635                   direction     l2r
636                   mother        =ucs@big5))
637   (make-charset '=ucs@cns11643
638                 "ISO/IEC 10646 for CNS based on www.cns11643.gov.tw"
639                 '(long-name     "UCS for CNS11643"
640                   chars         256
641                   dimension     3
642                   columns       2
643                   graphic       2
644                   direction     l2r
645                   mother        =ucs@cns))
646   
647   (make-charset
648    '=ucs-radicals
649    "CJK Radicals of UCS"
650    '(long-name "UCS-Radicals"
651                chars 256
652                dimension 2
653                columns 2
654                graphic 2
655                direction l2r
656                registry "-zhRadicals-.*-ucs-0"
657                mother ucs-bmp
658                min-code #x2E00 max-code #x2FFF))
659   (make-charset
660    '=ucs-radicals@unicode
661    "CJK Radicals of UCS"
662    '(long-name "UCS-Radicals"
663                chars 256
664                dimension 2
665                columns 2
666                graphic 2
667                direction l2r
668                registry "-zhRadicals-.*-ucs-0"
669                mother =ucs@unicode
670                min-code #x2E00 max-code #x2FFF))
671   (make-charset
672    '=ucs-hangul
673    "Hangul Syllables of UCS"
674    '(long-name "UCS-Hangul-Syllables"
675                chars 256
676                dimension 2
677                columns 2
678                graphic 2
679                direction l2r
680                registry "-Hangul-.*-ucs-0"
681                mother =ucs
682                min-code #xAC00 max-code #xD7AF))
683   (make-charset
684    '=ucs-bmp-cjk
685    "CJK Characters in BMP of UCS"
686    '(long-name "UCS-BMP-CJK"
687                chars 256
688                dimension 2
689                columns 2
690                graphic 2
691                direction l2r
692                registry "-zh-.*-ucs-0"
693                mother ucs-bmp
694                min-code #x2E00
695                max-code #x9FA5
696                ;; max-code #xA4CF
697                ))
698   (make-charset
699    '=ucs-bmp-cjk@unicode
700    "CJK Characters in BMP of Unicode"
701    '(long-name "Unicode-BMP-CJK"
702                chars 256
703                dimension 2
704                columns 2
705                graphic 2
706                direction l2r
707                registry "-zh-.*-ucs-0"
708                mother =ucs@unicode
709                min-code #x2E00
710                max-code #x9FA5
711                ;; max-code #xA4CF
712                ))
713   (make-charset
714    '=ucs-sip-ext-b
715    "CJK Ideographs Extension B"
716    '(long-name "UCS CJK Ext-B"
717                chars 256
718                dimension 2
719                columns 2
720                graphic 2
721                direction l2r
722                registry "\\(iso10646\\|ucs02\\)-2$"
723                mother ucs
724                min-code #x20000 max-code #x2A6D6
725                code-offset #x20000))
726   (make-charset
727    '=ucs-sip-ext-b@iso
728    "CJK Ideographs Extension B (ISO/IEC 10646-2)"
729    '(long-name "UCS CJK Ext-B"
730                chars 256
731                dimension 2
732                columns 2
733                graphic 2
734                direction l2r
735                registry "\\(iso10646\\|ucs02\\)-2$"
736                mother =ucs@iso
737                min-code #x20000 max-code #x2A6D6
738                code-offset #x20000))
739
740   (make-charset
741    '=adobe-japan1-0
742    "Adobe-Japan1-0 Character Collection for CID-Keyed Fonts"
743    '(long-name "Adobe-Japan1-0"
744                chars 256
745                dimension 2
746                columns 2
747                graphic 2
748                direction l2r
749                registry "AdobeJapan1-0$"))
750   (make-charset
751    '=adobe-japan1-1
752    "Adobe-Japan1-1 Character Collection for CID-Keyed Fonts"
753    '(long-name "Adobe-Japan1-1"
754                chars 256
755                dimension 2
756                columns 2
757                graphic 2
758                direction l2r
759                mother =adobe-japan1-0
760                registry "AdobeJapan1-1$"))
761   (make-charset
762    '=adobe-japan1-2
763    "Adobe-Japan1-2 Character Collection for CID-Keyed Fonts"
764    '(long-name "Adobe-Japan1-2"
765                chars 256
766                dimension 2
767                columns 2
768                graphic 2
769                direction l2r
770                mother =adobe-japan1-1
771                registry "AdobeJapan1-2$"))
772   (make-charset
773    '=adobe-japan1-3
774    "Adobe-Japan1-3 Character Collection for CID-Keyed Fonts"
775    '(long-name "Adobe-Japan1-3"
776                chars 256
777                dimension 2
778                columns 2
779                graphic 2
780                direction l2r
781                mother =adobe-japan1-2
782                registry "AdobeJapan1-3$"))
783   (make-charset
784    '=adobe-japan1-4
785    "Adobe-Japan1-4 Character Collection for CID-Keyed Fonts"
786    '(long-name "Adobe-Japan1-4"
787                chars 256
788                dimension 2
789                columns 2
790                graphic 2
791                direction l2r
792                mother =adobe-japan1-3
793                registry "AdobeJapan1-4$"))
794   (make-charset
795    '=adobe-japan1-5
796    "Adobe-Japan1-5 Character Collection for CID-Keyed Fonts"
797    '(long-name "Adobe-Japan1-5"
798                chars 256
799                dimension 2
800                columns 2
801                graphic 2
802                direction l2r
803                mother =adobe-japan1-4
804                registry "AdobeJapan1-5$"))
805   (make-charset
806    '=adobe-japan1-6
807    "Adobe-Japan1-6 Character Collection for CID-Keyed Fonts"
808    '(long-name "Adobe-Japan1-6"
809                chars 256
810                dimension 2
811                columns 2
812                graphic 2
813                direction l2r
814                mother =adobe-japan1-5
815                registry "AdobeJapan1-6$"))
816   )
817
818 ;;; mule-conf.el ends here