(=cns11643-7): Renamed from `chinese-cns11643-7'.
[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 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 'japanese-jisx0208-1978   '=jis-x0208-1978)
29 (define-charset-alias 'chinese-gb2312           '=gb2312)
30 (define-charset-alias 'japanese-jisx0208        '=jis-x0208-1983)
31 (define-charset-alias 'korean-ksc5601           '=ks-x1001)
32 (define-charset-alias 'japanese-jisx0212        '=jis-x0212)
33 (define-charset-alias 'chinese-cns11643-1       '=cns11643-1)
34 (define-charset-alias 'chinese-cns11643-2       '=cns11643-2)
35 (define-charset-alias 'chinese-gb12345          '=gb12345)
36 (define-charset-alias 'chinese-big5             '=big5)
37
38 ;; PinYin-ZhuYin
39 (make-charset 'sisheng "PinYin-ZhuYin"
40               '(registry "sisheng_cwnn\\|OMRON_UDC_ZH"
41                 dimension 1
42                 chars 94
43                 final ?0
44                 graphic 0
45                 ))
46
47 ;; Lao script.
48 ;; ISO10646's 0x0E80..0x0EDF are mapped to 0x20..0x7F.
49 (make-charset 'lao "Lao script"
50               '(registry "MuleLao-1"
51                 dimension 1
52                 chars 94
53                 final ?1
54                 graphic 1))
55
56 ;; IPA (International Phonetic Alphabet)
57 (make-charset 'ipa "International Phonetic Alphabet"
58               '(registry "MuleIPA"
59                 dimension 1
60                 chars 96
61                 final ?0
62                 graphic 1))
63
64 ;; Ethiopic
65 (make-charset 'ethiopic "Ethiopic"
66               '(registry "Ethio"
67                 dimension 2
68                 chars 94
69                 final ?3
70                 graphic 0
71                 ))
72
73 ;; ISO-IR-165 (CCITT Extended GB)
74 ;;    It is based on CCITT Recommendation T.101, includes GB 2312-80 +
75 ;;    GB 8565-88 table A4 + 293 characters.
76 (make-charset '=iso-ir165
77               "ISO-IR-165 (CCITT Extended GB; Chinese simplified)"
78               '(iso-ir 165
79                        dimension 2
80                        chars 94
81                        final ?E
82                        registry "isoir165"
83                        graphic 0))
84 (define-charset-alias 'chinese-isoir165 '=iso-ir165)
85
86 ;; CNS11643 Plane3 thru Plane7
87 ;; These represent more and more obscure Chinese characters.
88 ;; By the time you get to Plane 7, we're talking about characters
89 ;; that appear once in some ancient manuscript and whose meaning
90 ;; is unknown.
91
92 (flet
93     ((make-chinese-cns11643-charset
94       (name iso-ir plane final)
95       (make-charset
96        name (concat "CNS 11643 Plane " plane " (Chinese traditional)")
97        `(iso-ir ,iso-ir
98          registry 
99          ,(concat "CNS11643[.-]\\(.*[.-]\\)?" plane "$")
100          dimension 2
101          chars 94
102          final ,final
103          graphic 0))
104       ))
105   (make-chinese-cns11643-charset '=cns11643-3 183 "3" ?I)
106   (make-chinese-cns11643-charset '=cns11643-4 184 "4" ?J)
107   (make-chinese-cns11643-charset '=cns11643-5 185 "5" ?K)
108   (make-chinese-cns11643-charset '=cns11643-6 186 "6" ?L)
109   (make-chinese-cns11643-charset '=cns11643-7 187 "7" ?M)
110   (define-charset-alias 'chinese-cns11643-3     '=cns11643-3)
111   (define-charset-alias 'chinese-cns11643-4     '=cns11643-4)
112   (define-charset-alias 'chinese-cns11643-5     '=cns11643-5)
113   (define-charset-alias 'chinese-cns11643-6     '=cns11643-6)
114   (define-charset-alias 'chinese-cns11643-7     '=cns11643-7)
115   )
116
117 ;; JIS X 0213:2000
118 (if (featurep 'utf-2000)
119     (progn
120       (make-charset
121        '=jis-x0213-1-2000
122        "JIS X 0213:2000 Plain 1"
123        '(iso-ir 228
124                 registry "jisx0213\\(\\.2000\\)-1"
125                 dimension 2
126                 chars 94
127                 mother =jis-x0208-1990
128                 final ?O
129                 graphic 0))
130       (make-charset
131        '=jis-x0213-2-2000
132        "JIS X 0213:2000 Plain 2"
133        '(iso-ir 229
134                 registry "jisx0213\\(\\.2000\\)-2"
135                 dimension 2
136                 chars 94
137                 final ?P
138                 graphic 0))
139       (define-charset-alias 'japanese-jisx0213-1 '=jis-x0213-1-2000)
140       (define-charset-alias 'japanese-jisx0213-2 '=jis-x0213-2-2000)
141       )
142   (make-charset
143    'japanese-jisx0213-1
144    "JIS X 0213:2000 Plain 1"
145    '(registry "jisx0213\\(\\.2000\\)-1"
146               dimension 2
147               chars 94
148               final ?O
149               graphic 0))
150   (make-charset
151    'japanese-jisx0213-2
152    "JIS X 0213:2000 Plain 2"
153    '(registry "jisx0213\\(\\.2000\\)-2"
154               dimension 2
155               chars 94
156               final ?P
157               graphic 0))
158   )
159
160 (when (featurep 'utf-2000)
161   (define-charset-alias 'ucs '=ucs)
162   (define-charset-alias 'japanese-jisx0208-1990 '=jis-x0208-1990)
163   (make-charset '=ucs@gb
164                 "UCS for GB"
165                 `(long-name     "ISO/IEC 10646 for GB"
166                   chars         256
167                   dimension     3
168                   columns       2
169                   graphic       2
170                   direction     l2r
171                   mother        =ucs))
172   (define-charset-alias 'ucs-gb '=ucs@gb)
173   (make-charset '=ucs@cns
174                 "UCS for CNS"
175                 `(long-name     "ISO/IEC 10646 for CNS 11643"
176                   chars         256
177                   dimension     3
178                   columns       2
179                   graphic       2
180                   direction     l2r
181                   mother        =ucs))
182   (define-charset-alias 'ucs-cns '=ucs@cns)
183   (make-charset '=ucs@jis
184                 "UCS for JIS"
185                 `(long-name     "ISO/IEC 10646 for JIS X0208/0212/0213"
186                   chars         256
187                   dimension     3
188                   columns       2
189                   graphic       2
190                   direction     l2r
191                   mother        =ucs))
192   (define-charset-alias 'ucs-jis '=ucs@jis)
193   (make-charset '=ucs@jis-1990
194                 "UCS for JIS:1990"
195                 `(long-name     "ISO/IEC 10646 for JIS X 0208/0212:1990"
196                   chars         256
197                   dimension     3
198                   columns       2
199                   graphic       2
200                   direction     l2r
201                   mother        ucs-jis))
202   (define-charset-alias '=ucs-jis-1990 '=ucs@jis-1990)
203   (make-charset '=ucs@jis-2000
204                 "UCS for JIS:2000"
205                 `(long-name     "ISO/IEC 10646 for JIS X 0213:2000"
206                   chars         256
207                   dimension     3
208                   columns       2
209                   graphic       2
210                   direction     l2r
211                   mother        ucs-jis))
212   (define-charset-alias '=ucs-jis-2000 '=ucs@jis-2000)
213   (make-charset '=ucs@ks
214                 "UCS for KS"
215                 `(long-name     "ISO/IEC 10646 for Korean Standards"
216                   chars         256
217                   dimension     3
218                   columns       2
219                   graphic       2
220                   direction     l2r
221                   mother        =ucs))
222   (define-charset-alias 'ucs-ks '=ucs@ks)
223   (make-charset '=ucs@big5
224                 "UCS for Big5"
225                 `(long-name     "ISO/IEC 10646 for Big5"
226                   chars         256
227                   dimension     3
228                   columns       2
229                   graphic       2
230                   direction     l2r
231                   mother        =ucs))
232   (define-charset-alias 'ucs-big5 '=ucs@big5)
233
234   (make-charset 'ideograph-daikanwa
235                 "Daikanwa"
236                 `(long-name     "Daikanwa dictionary (revised version 2)"
237                   chars         256
238                   dimension     2
239                   columns       2
240                   graphic       2
241                   direction     l2r
242                   registry      "Daikanwa\\(\\.[0-9]+\\)?-3"
243                   min-code      #xE00000
244                   max-code      ,(+ #xE00000 50100)
245                   code-offset   #xE00000))
246
247   (make-charset '=daikanwa-rev1
248                 "Daikanwa Rev."
249                 `(long-name     "Daikanwa dictionary (revised version)"
250                   chars         256
251                   dimension     2
252                   columns       2
253                   graphic       2
254                   direction     l2r
255                   registry      "Daikanwa\\(\\.[0-9]+\\)?-2"))
256   (define-charset-alias 'ideograph-daikanwa-2 '=daikanwa-rev1)
257
258   (make-charset '=daikanwa-rev2
259                 "Daikanwa"
260                 `(long-name     "Daikanwa dictionary (revised version 2)"
261                   chars         256
262                   dimension     2
263                   columns       2
264                   graphic       2
265                   direction     l2r
266                   registry      "Daikanwa\\(\\.[0-9]+\\)?-3"
267                   min-code      #xE00000
268                   max-code      ,(+ #xE00000 50100)
269                   code-offset   #xE00000))
270
271   (make-charset '=big5-pua
272                 "Big5-PUA"
273                 `(long-name     "Big5 with private used area"
274                   chars         256
275                   dimension     2
276                   columns       2
277                   graphic       2
278                   direction     l2r
279                   mother        chinese-big5
280                   registry      "Big5\\.ETEN"))
281   (define-charset-alias 'chinese-big5-pua '=big5-pua)
282   (make-charset '=big5-eten
283                 "Big5-ETEN"
284                 `(long-name     "Big5 ETEN"
285                   chars         256
286                   dimension     2
287                   columns       2
288                   graphic       2
289                   direction     l2r
290                   mother        chinese-big5
291                   min-code      #x8140
292                   max-code      #xFEFE
293                   registry      "Big5\\.ETEN"))
294   (define-charset-alias 'chinese-big5-eten '=big5-eten)
295   (make-charset 'chinese-big5-eten-a
296                 "Big5-ETEN-a"
297                 `(long-name     "Big5 ETEN (#xF9D6 .. #xF9FE)"
298                   chars         256
299                   dimension     2
300                   columns       2
301                   graphic       2
302                   direction     l2r
303                   mother        chinese-big5
304                   min-code      #xF9D6
305                   max-code      #xF9FE
306                   registry      "Big5\\.ETEN"))
307   (make-charset 'chinese-big5-eten-b
308                 "Big5-ETEN-b"
309                 `(long-name     "Big5 ETEN (#xC6A1 .. #xC8FE)"
310                   chars         256
311                   dimension     2
312                   columns       2
313                   graphic       2
314                   direction     l2r
315                   mother        chinese-big5
316                   min-code      #xC6A1
317                   max-code      #xC8FE
318                   registry      "Big5\\.ETEN"))
319   (make-charset '=big5-cdp
320                 "Big5-CDP"
321                 `(long-name     "Big5 with CDP extension"
322                   chars         256
323                   dimension     2
324                   columns       2
325                   graphic       2
326                   direction     l2r
327                   registry      "big5\\.cdp-0"
328                   mother        chinese-big5
329                   min-code      #x8140
330                   max-code      #x8DFE))
331   (define-charset-alias 'chinese-big5-cdp '=big5-cdp)
332   (let* ((i 1)
333          (hzk-min (+ (lsh #x6200 16) 65536))
334          (hzk-max (+ hzk-min 65535)))
335     (while (<= i 12)
336       (make-charset
337        (intern (format "=hanziku-%d" i))
338        (format "HANZIKU-%d" i)
339        `(long-name ,(format "HANZIKU (pseudo BIG5 encoding) part %d" i)
340                    chars 256
341                    dimension 2
342                    columns 2
343                    graphic 2
344                    direction l2r
345                    registry ,(format "hanziku-%d$" i i)
346                    min-code ,hzk-min
347                    max-code ,hzk-max
348                    code-offset ,hzk-min))
349       (define-charset-alias
350         (intern (format "ideograph-hanziku-%d" i))
351         (intern (format "=hanziku-%d" i)))
352       (setq hzk-min (1+ hzk-max)
353             hzk-max (+ hzk-min 65535))
354       (setq i (1+ i))))
355
356   (make-charset '=gt
357                 "GT"
358                 `(long-name     "GT 2000"
359                   chars         256
360                   dimension     3
361                   columns       2
362                   graphic       2
363                   direction     l2r
364                   registry      ""
365                   min-code      ,(lsh #x6100 16)
366                   max-code      ,(+ (lsh #x6100 16) 67547)
367                   code-offset   ,(lsh #x6100 16)))
368   (define-charset-alias 'ideograph-gt '=gt)
369   (make-charset '=gt-k
370                 "GT parts"
371                 `(long-name     "Ideographic parts of GT"
372                   chars         256
373                   dimension     2
374                   columns       2
375                   graphic       2
376                   direction     l2r
377                   registry      ""
378                   min-code      ,(lsh #x6110 16)
379                   max-code      ,(+ (lsh #x6110 16) 17090)
380                   code-offset   ,(lsh #x6110 16)))
381   (define-charset-alias 'ideograph-gt-k '=gt-k)
382   (let ((i 1))
383     (while (<= i 11)
384       (make-charset
385        (intern (format "=gt-pj-%d" i))
386        (format "GT PJ %d" i)
387        `(long-name ,(format "GT 2000 (pseudo JIS encoding) part %d" i)
388                    chars 94
389                    dimension 2
390                    columns 2
391                    graphic 0
392                    direction l2r
393                    registry ,(format "\\(GTpj-%d\\|jisx0208\\.GT-%d\\)$" i i)))
394       (define-charset-alias
395         (intern (format "ideograph-gt-pj-%d" i))
396         (intern (format "=gt-pj-%d" i)))
397       (setq i (1+ i))))
398   (make-charset
399    '=gt-pj-k1
400    "GT K1"
401    `(long-name "Ideographic parts of GT (pseudo JIS encoding) part 1"
402                chars 94
403                dimension 2
404                columns 2
405                graphic 0
406                direction l2r
407                registry "\\(GTKpj-1\\|jisx0208\\.GTK-1\\)$"))
408   (define-charset-alias 'ideograph-gt-pj-k1 '=gt-pj-k1)
409   (make-charset
410    '=gt-pj-k2
411    "GT K2"
412    `(long-name "Ideographic parts of GT (pseudo JIS encoding) part 2"
413                chars 94
414                dimension 2
415                columns 2
416                graphic 0
417                direction l2r
418                registry "\\(GTKpj-2\\|jisx0208\\.GTK-2\\)$"))
419   (define-charset-alias 'ideograph-gt-pj-k2 '=gt-pj-k2)
420   (make-charset '=cbeta "CBETA PUA"
421                 '(long-name     "CBETA private characters"
422                   chars         256
423                   dimension     2
424                   registry      "cbeta-0"
425                   graphic       2
426                   min-code      #xE20000
427                   max-code      #xE2FFFF
428                   code-offset   #xE20000
429                   columns       2
430                   direction     l2r))
431   (define-charset-alias 'ideograph-cbeta '=cbeta)
432   (make-charset '=jef-china3
433                 "JEF + CHINA3"
434                 `(long-name     "JEF + CHINA3 private characters"
435                   chars         256
436                   dimension     2
437                   columns       2
438                   graphic       2
439                   direction     l2r
440                   registry      "china3jef-0"
441                   min-code      #xE80000
442                   max-code      #xE8FFFF
443                   code-offset   #xE80000))
444   (define-charset-alias 'china3-jef '=jef-china3)
445   )
446
447 ;;; mule-conf.el ends here