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