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