Mercurial > emacs
annotate lisp/language/chinese.el @ 37678:ebec0594dece
(compile-files): Redirect output of chmod to
/dev/null.
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Fri, 11 May 2001 10:53:56 +0000 |
| parents | a4aec237e886 |
| children | 67b464da13ec |
| rev | line source |
|---|---|
|
23158
5c0a4ed13900
Add coding: local variable, to avoid bootstrapping problem
Paul Eggert <eggert@twinsun.com>
parents:
22983
diff
changeset
|
1 ;;; chinese.el --- Support for Chinese -*- coding: iso-2022-7bit; -*- |
| 17052 | 2 |
| 3 ;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN. | |
|
18377
8b4a66c66dd6
Change copyright notice.
Richard M. Stallman <rms@gnu.org>
parents:
18309
diff
changeset
|
4 ;; Licensed to the Free Software Foundation. |
| 17052 | 5 |
| 6 ;; Keywords: multilingual, Chinese | |
| 7 | |
| 8 ;; This file is part of GNU Emacs. | |
| 9 | |
| 10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
| 11 ;; it under the terms of the GNU General Public License as published by | |
| 12 ;; the Free Software Foundation; either version 2, or (at your option) | |
| 13 ;; any later version. | |
| 14 | |
| 15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
| 16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 18 ;; GNU General Public License for more details. | |
| 19 | |
| 20 ;; You should have received a copy of the GNU General Public License | |
| 17071 | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
| 22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| 23 ;; Boston, MA 02111-1307, USA. | |
| 17052 | 24 |
| 25 ;;; Commentary: | |
| 26 | |
| 27 ;; For Chinese, three character sets GB2312, BIG5, and CNS11643 are | |
| 28 ;; supported. | |
| 29 | |
| 30 ;;; Code: | |
| 31 | |
| 32 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 33 ;;; Chinese (general) | |
| 34 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 35 | |
| 36 (make-coding-system | |
| 20746 | 37 'iso-2022-cn 2 ?C |
|
18203
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
18156
diff
changeset
|
38 "ISO 2022 based 7bit encoding for Chinese GB and CNS (MIME:ISO-2022-CN)" |
| 17052 | 39 '(ascii |
| 40 (nil chinese-gb2312 chinese-cns11643-1) | |
| 41 (nil chinese-cns11643-2) | |
| 20746 | 42 nil |
| 43 nil ascii-eol ascii-cntl seven locking-shift single-shift nil nil nil | |
| 44 init-bol) | |
| 45 '((safe-charsets ascii chinese-gb2312 chinese-cns11643-1 chinese-cns11643-2) | |
| 46 (mime-charset . iso-2022-cn))) | |
| 47 | |
| 48 (define-coding-system-alias 'chinese-iso-7bit 'iso-2022-cn) | |
| 49 | |
| 50 (make-coding-system | |
| 51 'iso-2022-cn-ext 2 ?C | |
| 52 "ISO 2022 based 7bit encoding for Chinese GB and CNS (MIME:ISO-2022-CN-EXT)" | |
| 53 '(ascii | |
| 54 (nil chinese-gb2312 chinese-cns11643-1) | |
| 55 (nil chinese-cns11643-2) | |
| 17052 | 56 (nil chinese-cns11643-3 chinese-cns11643-4 chinese-cns11643-5 |
| 57 chinese-cns11643-6 chinese-cns11643-7) | |
|
17084
07f0a1e07d1e
Add INIT-BOL to coding system iso-2022-cn.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
58 nil ascii-eol ascii-cntl seven locking-shift single-shift nil nil nil |
|
20158
36eb3e583396
Give proper SAFE-CHARSET argument in each
Kenichi Handa <handa@m17n.org>
parents:
20109
diff
changeset
|
59 init-bol) |
| 20746 | 60 '((safe-charsets ascii chinese-gb2312 chinese-cns11643-1 chinese-cns11643-2 |
| 61 chinese-cns11643-3 chinese-cns11643-4 chinese-cns11643-5 | |
| 62 chinese-cns11643-6 chinese-cns11643-7) | |
| 63 (mime-charset . iso-2022-cn-ext))) | |
|
17084
07f0a1e07d1e
Add INIT-BOL to coding system iso-2022-cn.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
64 |
|
17993
73869115ae0a
Most of setup-LANGUAGE-environment functions are
Kenichi Handa <handa@m17n.org>
parents:
17841
diff
changeset
|
65 |
| 17052 | 66 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
| 67 ;;; Chinese GB2312 (simplified) | |
| 68 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 69 | |
| 70 (make-coding-system | |
|
18203
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
18156
diff
changeset
|
71 'chinese-iso-8bit 2 ?c |
|
35509
a4aec237e886
* language/chinese.el (chinese-iso-8bit): MIME:GB2312.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
34195
diff
changeset
|
72 "ISO 2022 based EUC encoding for Chinese GB2312 (MIME:GB2312)" |
| 20746 | 73 '(ascii chinese-gb2312 nil nil |
| 74 nil ascii-eol ascii-cntl nil nil nil nil) | |
| 75 '((safe-charsets ascii chinese-gb2312) | |
|
35509
a4aec237e886
* language/chinese.el (chinese-iso-8bit): MIME:GB2312.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
34195
diff
changeset
|
76 (mime-charset . gb2312))) |
| 17052 | 77 |
|
18520
383d11185239
Swap args to define-coding-system-alias.
Richard M. Stallman <rms@gnu.org>
parents:
18377
diff
changeset
|
78 (define-coding-system-alias 'cn-gb-2312 'chinese-iso-8bit) |
|
383d11185239
Swap args to define-coding-system-alias.
Richard M. Stallman <rms@gnu.org>
parents:
18377
diff
changeset
|
79 (define-coding-system-alias 'euc-china 'chinese-iso-8bit) |
|
20158
36eb3e583396
Give proper SAFE-CHARSET argument in each
Kenichi Handa <handa@m17n.org>
parents:
20109
diff
changeset
|
80 (define-coding-system-alias 'euc-cn 'chinese-iso-8bit) |
|
34195
c43ab8c93b07
(chinese-iso-8bit): Change mime-charset name to cn-gb.
Kenichi Handa <handa@m17n.org>
parents:
33778
diff
changeset
|
81 (define-coding-system-alias 'cn-gb 'chinese-iso-8bit) |
|
c43ab8c93b07
(chinese-iso-8bit): Change mime-charset name to cn-gb.
Kenichi Handa <handa@m17n.org>
parents:
33778
diff
changeset
|
82 (define-coding-system-alias 'gb2312 'chinese-iso-8bit) |
|
17084
07f0a1e07d1e
Add INIT-BOL to coding system iso-2022-cn.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
83 |
| 17052 | 84 (make-coding-system |
|
18203
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
18156
diff
changeset
|
85 'chinese-hz 0 ?z |
|
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
18156
diff
changeset
|
86 "Hz/ZW 7-bit encoding for Chinese GB2312 (MIME:HZ-GB-2312)" |
|
20158
36eb3e583396
Give proper SAFE-CHARSET argument in each
Kenichi Handa <handa@m17n.org>
parents:
20109
diff
changeset
|
87 nil |
| 20746 | 88 '((safe-charsets ascii chinese-gb2312) |
| 89 (mime-charset . hz-gb-2312) | |
| 90 (post-read-conversion . post-read-decode-hz) | |
| 91 (pre-write-conversion . pre-write-encode-hz))) | |
|
17084
07f0a1e07d1e
Add INIT-BOL to coding system iso-2022-cn.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
92 |
|
18520
383d11185239
Swap args to define-coding-system-alias.
Richard M. Stallman <rms@gnu.org>
parents:
18377
diff
changeset
|
93 (define-coding-system-alias 'hz-gb-2312 'chinese-hz) |
|
383d11185239
Swap args to define-coding-system-alias.
Richard M. Stallman <rms@gnu.org>
parents:
18377
diff
changeset
|
94 (define-coding-system-alias 'hz 'chinese-hz) |
| 17052 | 95 |
| 96 (defun post-read-decode-hz (len) | |
|
20109
b68cac3f8e3a
Use coding-system-put to set coding system
Kenichi Handa <handa@m17n.org>
parents:
18520
diff
changeset
|
97 (let ((pos (point)) |
|
b68cac3f8e3a
Use coding-system-put to set coding system
Kenichi Handa <handa@m17n.org>
parents:
18520
diff
changeset
|
98 (buffer-modified-p (buffer-modified-p)) |
|
b68cac3f8e3a
Use coding-system-put to set coding system
Kenichi Handa <handa@m17n.org>
parents:
18520
diff
changeset
|
99 last-coding-system-used) |
|
b68cac3f8e3a
Use coding-system-put to set coding system
Kenichi Handa <handa@m17n.org>
parents:
18520
diff
changeset
|
100 (prog1 |
|
b68cac3f8e3a
Use coding-system-put to set coding system
Kenichi Handa <handa@m17n.org>
parents:
18520
diff
changeset
|
101 (decode-hz-region pos (+ pos len)) |
|
b68cac3f8e3a
Use coding-system-put to set coding system
Kenichi Handa <handa@m17n.org>
parents:
18520
diff
changeset
|
102 (set-buffer-modified-p buffer-modified-p)))) |
| 17052 | 103 |
| 104 (defun pre-write-encode-hz (from to) | |
|
23524
05c942de9202
(pre-write-encode-hz): Use with-temp-buffer.
Kenichi Handa <handa@m17n.org>
parents:
23158
diff
changeset
|
105 (let ((buf (current-buffer))) |
|
23547
77c967512714
(pre-write-encode-hz): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23524
diff
changeset
|
106 (set-buffer (generate-new-buffer " *temp*")) |
|
77c967512714
(pre-write-encode-hz): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23524
diff
changeset
|
107 (if (stringp from) |
|
77c967512714
(pre-write-encode-hz): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23524
diff
changeset
|
108 (insert from) |
|
77c967512714
(pre-write-encode-hz): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23524
diff
changeset
|
109 (insert-buffer-substring buf from to)) |
|
77c967512714
(pre-write-encode-hz): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23524
diff
changeset
|
110 (let (last-coding-system-used) |
|
77c967512714
(pre-write-encode-hz): Cancel previous
Kenichi Handa <handa@m17n.org>
parents:
23524
diff
changeset
|
111 (encode-hz-region 1 (point-max))) |
| 17052 | 112 nil)) |
| 113 | |
| 114 (set-language-info-alist | |
|
22983
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20746
diff
changeset
|
115 "Chinese-GB" '((charset chinese-gb2312 chinese-sisheng) |
| 20746 | 116 (coding-system chinese-iso-8bit iso-2022-cn chinese-hz) |
| 117 (coding-priority chinese-iso-8bit chinese-big5 iso-2022-cn) | |
|
22983
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20746
diff
changeset
|
118 (input-method . "chinese-py-punct") |
|
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20746
diff
changeset
|
119 (features china-util) |
|
17765
9c4845e8101d
Make functions setup-LANGUAGE-environment
Kenichi Handa <handa@m17n.org>
parents:
17084
diff
changeset
|
120 (sample-text . "Chinese ($AVPND(B,$AFUM(;0(B,$A::So(B) $ADc:C(B") |
| 20746 | 121 (documentation . "Support for Chinese GB2312 character set.")) |
| 122 '("Chinese")) | |
| 17052 | 123 |
| 124 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 125 ;; Chinese BIG5 (traditional) | |
| 126 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 127 | |
| 128 (make-coding-system | |
|
35509
a4aec237e886
* language/chinese.el (chinese-iso-8bit): MIME:GB2312.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
34195
diff
changeset
|
129 'chinese-big5 3 ?B "BIG5 8-bit encoding for Chinese (MIME:Big5)" |
| 20746 | 130 nil |
| 131 '((safe-charsets ascii chinese-big5-1 chinese-big5-2) | |
|
35509
a4aec237e886
* language/chinese.el (chinese-iso-8bit): MIME:GB2312.
ShengHuo ZHU <zsh@cs.rochester.edu>
parents:
34195
diff
changeset
|
132 (mime-charset . big5) |
|
24298
c10e64cb7fb1
(chinese-big5): Add charset-origin-alist property.
Kenichi Handa <handa@m17n.org>
parents:
23769
diff
changeset
|
133 (charset-origin-alist (chinese-big5-1 "BIG5" encode-big5-char) |
|
c10e64cb7fb1
(chinese-big5): Add charset-origin-alist property.
Kenichi Handa <handa@m17n.org>
parents:
23769
diff
changeset
|
134 (chinese-big5-2 "BIG5" encode-big5-char)))) |
| 17052 | 135 |
|
18520
383d11185239
Swap args to define-coding-system-alias.
Richard M. Stallman <rms@gnu.org>
parents:
18377
diff
changeset
|
136 (define-coding-system-alias 'big5 'chinese-big5) |
|
383d11185239
Swap args to define-coding-system-alias.
Richard M. Stallman <rms@gnu.org>
parents:
18377
diff
changeset
|
137 (define-coding-system-alias 'cn-big5 'chinese-big5) |
|
17084
07f0a1e07d1e
Add INIT-BOL to coding system iso-2022-cn.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
138 |
| 17052 | 139 ;; Big5 font requires special encoding. |
| 140 (define-ccl-program ccl-encode-big5-font | |
| 141 `(0 | |
| 142 ;; In: R0:chinese-big5-1 or chinese-big5-2 | |
| 143 ;; R1:position code 1 | |
| 144 ;; R2:position code 2 | |
| 145 ;; Out: R1:font code point 1 | |
| 146 ;; R2:font code point 2 | |
| 147 ((r2 = ((((r1 - ?\x21) * 94) + r2) - ?\x21)) | |
| 148 (if (r0 == ,(charset-id 'chinese-big5-2)) (r2 += 6280)) | |
| 149 (r1 = ((r2 / 157) + ?\xA1)) | |
| 150 (r2 %= 157) | |
| 151 (if (r2 < ?\x3F) (r2 += ?\x40) (r2 += ?\x62)))) | |
| 152 "CCL program to encode a Big5 code to code point of Big5 font.") | |
| 153 | |
| 154 (setq font-ccl-encoder-alist | |
| 155 (cons (cons "big5" ccl-encode-big5-font) font-ccl-encoder-alist)) | |
| 156 | |
| 157 (set-language-info-alist | |
|
22983
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20746
diff
changeset
|
158 "Chinese-BIG5" '((charset chinese-big5-1 chinese-big5-2) |
| 20746 | 159 (coding-system chinese-big5 chinese-iso-7bit) |
| 160 (coding-priority chinese-big5 iso-2022-cn chinese-iso-8bit) | |
|
22983
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20746
diff
changeset
|
161 (input-method . "chinese-py-punct-b5") |
|
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20746
diff
changeset
|
162 (features china-util) |
|
17765
9c4845e8101d
Make functions setup-LANGUAGE-environment
Kenichi Handa <handa@m17n.org>
parents:
17084
diff
changeset
|
163 (sample-text . "Cantonese ($(0GnM$(B,$(0N]0*Hd(B) $(0*/=((B, $(0+$)p(B") |
| 20746 | 164 (documentation . "Support for Chinese Big5 character set.")) |
| 165 '("Chinese")) | |
| 17052 | 166 |
| 167 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 168 ;; Chinese CNS11643 (traditional) | |
| 169 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| 170 | |
| 171 (set-language-info-alist | |
|
22983
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20746
diff
changeset
|
172 "Chinese-CNS" '((charset chinese-cns11643-1 chinese-cns11643-2 |
| 20746 | 173 chinese-cns11643-3 chinese-cns11643-4 |
| 174 chinese-cns11643-5 chinese-cns11643-6 | |
| 175 chinese-cns11643-7) | |
| 176 (coding-system iso-2022-cn) | |
| 177 (coding-priority iso-2022-cn chinese-big5 chinese-iso-8bit) | |
|
22983
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20746
diff
changeset
|
178 (features china-util) |
|
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
20746
diff
changeset
|
179 (input-method . "chinese-cns-quick") |
| 20746 | 180 (documentation . "Support for Chinese CNS character sets.")) |
| 181 '("Chinese")) | |
| 17052 | 182 |
| 33778 | 183 (provide 'chinese) |
| 184 | |
| 17052 | 185 ;;; chinese.el ends here |
