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