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