Mercurial > emacs
annotate lisp/language/vietnamese.el @ 28341:f89c8f185c0d
*** empty log message ***
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Sun, 26 Mar 2000 23:05:27 +0000 |
parents | 3d24b22e739b |
children | fd56586afd85 |
rev | line source |
---|---|
23158
5c0a4ed13900
Add coding: local variable, to avoid bootstrapping problem
Paul Eggert <eggert@twinsun.com>
parents:
23069
diff
changeset
|
1 ;;; vietnamese.el --- Support for Vietnamese -*- 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, Vietnamese | |
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 Vietnames, the character sets VISCII and VSCII are supported. | |
28 | |
29 ;;; Code: | |
30 | |
22879
33987189baf3
(viet-viscii-decode-table): Docstring
Kenichi Handa <handa@m17n.org>
parents:
21663
diff
changeset
|
31 (eval-and-compile |
17052 | 32 |
33 (defvar viet-viscii-decode-table | |
34 [;; VISCII is a full 8-bit code. | |
35 0 1 ?,2F(B 3 4 ?,2G(B ?,2g(B 7 8 9 10 11 12 13 14 15 | |
36 16 17 18 19 ?,2V(B 21 22 23 24 ?,2[(B 26 27 28 29 ?,2\(B 31 | |
37 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | |
38 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | |
39 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | |
40 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | |
41 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | |
42 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | |
43 ?,2U(B ?,2!(B ?,2"(B ?,2#(B ?,2$(B ?,2%(B ?,2&(B ?,2'(B ?,2((B ?,2)(B ?,2*(B ?,2+(B ?,2,(B ?,2-(B ?,2.(B ?,2/(B | |
44 ?,20(B ?,21(B ?,22(B ?,25(B ?,2~(B ?,2>(B ?,26(B ?,27(B ?,28(B ?,2v(B ?,2w(B ?,2o(B ?,2|(B ?,2{(B ?,2x(B ?,2O(B | |
45 ?,2u(B ?,1!(B ?,1"(B ?,1#(B ?,1$(B ?,1%(B ?,1&(B ?,1'(B ?,1((B ?,1)(B ?,1*(B ?,1+(B ?,1,(B ?,1-(B ?,1.(B ?,1/(B | |
46 ?,10(B ?,11(B ?,12(B ?,2^(B ?,2=(B ?,15(B ?,16(B ?,17(B ?,18(B ?,2q(B ?,2Q(B ?,2W(B ?,2X(B ?,1=(B ?,1>(B ?,2_(B | |
47 ?,2`(B ?,2a(B ?,2b(B ?,2c(B ?,2d(B ?,2e(B ?,1F(B ?,1G(B ?,2h(B ?,2i(B ?,2j(B ?,2k(B ?,2l(B ?,2m(B ?,2n(B ?,1O(B | |
48 ?,2p(B ?,1Q(B ?,2r(B ?,2s(B ?,2t(B ?,1U(B ?,1V(B ?,1W(B ?,1X(B ?,2y(B ?,2z(B ?,1[(B ?,1\(B ?,2}(B ?,1^(B ?,1_(B | |
49 ?,1`(B ?,1a(B ?,1b(B ?,1c(B ?,1d(B ?,1e(B ?,1f(B ?,1g(B ?,1h(B ?,1i(B ?,1j(B ?,1k(B ?,1l(B ?,1m(B ?,1n(B ?,1o(B | |
50 ?,1p(B ?,1q(B ?,1r(B ?,1s(B ?,1t(B ?,1u(B ?,1v(B ?,1w(B ?,1x(B ?,1y(B ?,1z(B ?,1{(B ?,1|(B ?,1}(B ?,1~(B ?,2f(B ] | |
22879
33987189baf3
(viet-viscii-decode-table): Docstring
Kenichi Handa <handa@m17n.org>
parents:
21663
diff
changeset
|
51 "Vietnamese VISCII decoding table.") |
17052 | 52 |
53 (defvar viet-viscii-encode-table | |
54 (let ((table-lower (make-vector 128 0)) | |
55 (table-upper (make-vector 128 0)) | |
56 (i 0) | |
57 char-component) | |
58 (while (< i 256) | |
59 (setq char-component (split-char (aref viet-viscii-decode-table i))) | |
60 (cond ((eq (car char-component) 'vietnamese-viscii-lower) | |
61 (aset table-lower (nth 1 char-component) i)) | |
62 ((eq (car char-component) 'vietnamese-viscii-upper) | |
63 (aset table-upper (nth 1 char-component) i))) | |
64 (setq i (1+ i))) | |
65 (cons table-lower table-upper)) | |
22879
33987189baf3
(viet-viscii-decode-table): Docstring
Kenichi Handa <handa@m17n.org>
parents:
21663
diff
changeset
|
66 "Vietnamese VISCII encoding table. |
33987189baf3
(viet-viscii-decode-table): Docstring
Kenichi Handa <handa@m17n.org>
parents:
21663
diff
changeset
|
67 Cons of tables for encoding lower-case chars and upper-case characters. |
17052 | 68 Both tables are indexed by the position code of Vietnamese characters.") |
69 | |
70 (defvar viet-vscii-decode-table | |
71 [;; VSCII is a full 8-bit code. | |
72 0 ?,2z(B ?,2x(B 3 ?,2W(B ?,2X(B ?,2f(B 7 8 9 10 11 12 13 14 15 | |
73 16 ?,2Q(B ?,2_(B ?,2O(B ?,2V(B ?,2[(B ?,2}(B ?,2\(B 24 25 26 27 28 29 30 31 | |
74 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | |
75 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | |
76 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | |
77 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | |
78 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | |
79 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | |
80 ?,2`(B ?,2d(B ?,2c(B ?,2a(B ?,2U(B ?,2#(B ?,2'(B ?,2h(B ?,2k(B ?,2((B ?,2i(B ?,2)(B ?,2.(B ?,2l(B ?,2o(B ?,2n(B | |
81 ?,2m(B ?,28(B ?,2r(B ?,2v(B ?,2u(B ?,2s(B ?,2w(B ?,25(B ?,26(B ?,27(B ?,2^(B ?,2>(B ?,2~(B ?,2y(B ?,2|(B ?,2{(B | |
82 160 ?,2e(B ?,2b(B ?,2j(B ?,2t(B ?,2=(B ?,2_(B ?,2p(B ?,1e(B ?,1b(B ?,1j(B ?,1t(B ?,1>(B ?,1y(B ?,1p(B ?,2"(B | |
83 192 193 194 195 196 ?,1`(B ?,1d(B ?,1c(B ?,1a(B ?,1U(B ?,2F(B ?,1"(B ?,1F(B ?,1G(B ?,1!(B ?,2G(B | |
84 ?,2!(B ?,2%(B ?,2&(B ?,2g(B ?,2%(B ?,2+(B ?,1#(B ?,1%(B ?,1&(B ?,1g(B ?,1$(B ?,1'(B ?,1h(B ?,2,(B ?,1k(B ?,1((B | |
85 ?,1i(B ?,1)(B ?,1+(B ?,1,(B ?,1-(B ?,1*(B ?,1.(B ?,1l(B ?,1o(B ?,2-(B ?,2*(B ?,20(B ?,1n(B ?,1m(B ?,18(B ?,1r(B | |
86 ?,21(B ?,1v(B ?,1u(B ?,1s(B ?,1w(B ?,10(B ?,11(B ?,12(B ?,1/(B ?,15(B ?,16(B ?,17(B ?,1^(B ?,1>(B ?,1~(B ?,1y(B | |
87 ?,22(B ?,1|(B ?,1{(B ?,1z(B ?,1x(B ?,1W(B ?,1X(B ?,1f(B ?,1Q(B ?,1q(B ?,1O(B ?,1V(B ?,1[(B ?,1}(B ?,1\(B ?,2/(B] | |
22879
33987189baf3
(viet-viscii-decode-table): Docstring
Kenichi Handa <handa@m17n.org>
parents:
21663
diff
changeset
|
88 "Vietnamese VSCII decoding table.") |
17052 | 89 |
90 (defvar viet-vscii-encode-table | |
91 (let ((table-lower (make-vector 128 0)) | |
92 (table-upper (make-vector 128 0)) | |
93 (i 0) | |
94 char-component) | |
95 (while (< i 256) | |
96 (setq char-component (split-char (aref viet-vscii-decode-table i))) | |
97 (cond ((eq (car char-component) 'vietnamese-viscii-lower) | |
98 (aset table-lower (nth 1 char-component) i)) | |
99 ((eq (car char-component) 'vietnamese-viscii-upper) | |
100 (aset table-upper (nth 1 char-component) i))) | |
101 (setq i (1+ i))) | |
102 (cons table-lower table-upper)) | |
22879
33987189baf3
(viet-viscii-decode-table): Docstring
Kenichi Handa <handa@m17n.org>
parents:
21663
diff
changeset
|
103 "Vietnamese VSCII encoding table. |
33987189baf3
(viet-viscii-decode-table): Docstring
Kenichi Handa <handa@m17n.org>
parents:
21663
diff
changeset
|
104 Cons of tables for encoding lower-case chars and upper-case characters. |
17052 | 105 Both tables are indexed by the position code of Vietnamese characters.") |
106 | |
107 ) | |
108 | |
109 (define-ccl-program ccl-decode-viscii | |
110 `(3 | |
111 ((read r0) | |
112 (loop | |
113 (write-read-repeat r0 ,viet-viscii-decode-table)) | |
114 )) | |
115 "CCL program to decode VISCII 1.1") | |
116 | |
117 ;; Multibyte form of a Vietnamese character is as follows (3-byte): | |
118 ;; LEADING-CODE-PRIVATE-11 LEADING-CODE-EXTENDED-11 POSITION-CODE | |
119 ;; where LEADING-CODE-EXTENDED-11 for Vietnamese is | |
120 ;; `vietnamese-viscii-lower' or `vietnamese-viscii-upper'. | |
121 | |
122 (define-ccl-program ccl-encode-viscii | |
123 `(1 | |
124 ((read r0) | |
125 (loop | |
126 (if (r0 < 128) | |
127 ;; ASCII | |
128 (write-read-repeat r0) | |
129 ;; not ASCII | |
130 (if (r0 != ,leading-code-private-11) | |
131 ;; not Vietnamese | |
132 (write-read-repeat r0) | |
133 ((read-if (r0 == ,(charset-id 'vietnamese-viscii-lower)) | |
134 (;; Vietnamese lower | |
135 (read r0) | |
136 (r0 -= 128) | |
137 (write-read-repeat r0 ,(car viet-viscii-encode-table))) | |
138 (if (r0 == ,(charset-id 'vietnamese-viscii-upper)) | |
139 (;; Vietnamese upper | |
140 (read r0) | |
141 (r0 -= 128) | |
142 (write-read-repeat r0 ,(cdr viet-viscii-encode-table))) | |
143 ;; not Vietnamese | |
144 (write-read-repeat r0))))))))) | |
145 "CCL program to encode VISCII 1.1") | |
146 | |
147 (define-ccl-program ccl-encode-viscii-font | |
148 `(0 | |
149 ;; In: R0:vietnamese-viscii-lower/vietnamese-viscii-upper | |
150 ;; R1:position code | |
151 ;; Out: R1:font code point | |
152 (if (r0 == ,(charset-id 'vietnamese-viscii-lower)) | |
153 (r1 = r1 ,(car viet-viscii-encode-table)) | |
154 (r1 = r1 ,(cdr viet-viscii-encode-table))) | |
155 ) | |
156 "CCL program to encode Vietnamese chars to VISCII 1.1 font") | |
157 | |
158 (define-ccl-program ccl-decode-vscii | |
159 `(3 | |
160 ((read r0) | |
161 (loop | |
162 (write-read-repeat r0 ,viet-vscii-decode-table)) | |
163 )) | |
164 "CCL program to decode VSCII-1.") | |
165 | |
166 (define-ccl-program ccl-encode-vscii | |
167 `(1 | |
168 ((read r0) | |
169 (loop | |
170 (if (r0 < 128) | |
171 ;; ASCII | |
172 (write-read-repeat r0) | |
173 ;; not ASCII | |
174 (if (r0 != ,leading-code-private-11) | |
175 ;; not Vietnamese | |
176 (write-read-repeat r0) | |
177 (read-if (r0 == ,(charset-id 'vietnamese-viscii-lower)) | |
178 (;; Vietnamese lower | |
179 (read r0) | |
180 (r0 -= 128) | |
181 (write-read-repeat r0 ,(car viet-vscii-encode-table))) | |
182 (if (r0 == ,(charset-id 'vietnamese-viscii-upper)) | |
183 (;; Vietnamese upper | |
184 (read r0) | |
185 (r0 -= 128) | |
24808
3d24b22e739b
(ccl-encode-vscii): Typo fixed
Kenichi Handa <handa@m17n.org>
parents:
24296
diff
changeset
|
186 (write-read-repeat r0 ,(cdr viet-vscii-encode-table))) |
17052 | 187 ;; not Vietnamese |
188 (write-read-repeat r0)))))))) | |
189 "CCL program to encode VSCII-1.") | |
190 | |
191 (define-ccl-program ccl-encode-vscii-font | |
192 `(0 | |
193 ;; In: R0:vietnamese-viscii-lower/vietnamese-viscii-upper | |
194 ;; R1:position code | |
195 ;; Out: R1:font code point | |
196 (if (r0 == ,(charset-id 'vietnamese-viscii-lower)) | |
197 (r1 = r1 ,(car viet-vscii-encode-table)) | |
198 (r1 = r1 ,(cdr viet-vscii-encode-table))) | |
199 ) | |
200 "CCL program to encode Vietnamese chars to VSCII-1 font.") | |
201 | |
202 | |
203 (make-coding-system | |
18203
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
17993
diff
changeset
|
204 'vietnamese-viscii 4 ?V |
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
17993
diff
changeset
|
205 "8-bit encoding for Vietnamese VISCII 1.1 (MIME:VISCII)" |
21663
a03ddc4a728b
FLAGS arguments for make-coding-system changed.
Kenichi Handa <handa@m17n.org>
parents:
20739
diff
changeset
|
206 '(ccl-decode-viscii . ccl-encode-viscii) |
20739
5f2c7f919bbf
Adjusted for the change of make-coding-system. Register
Kenichi Handa <handa@m17n.org>
parents:
20155
diff
changeset
|
207 '((safe-charsets ascii vietnamese-viscii-lower vietnamese-viscii-upper) |
22879
33987189baf3
(viet-viscii-decode-table): Docstring
Kenichi Handa <handa@m17n.org>
parents:
21663
diff
changeset
|
208 (mime-charset . viscii) |
23069
96139be23b05
(vietnamese-viscii): Fix the value of
Kenichi Handa <handa@m17n.org>
parents:
22983
diff
changeset
|
209 (valid-codes (0 . 255)))) |
17052 | 210 |
18519
b6badf3614ea
Fix calls to define-coding-system-alias.
Richard M. Stallman <rms@gnu.org>
parents:
18377
diff
changeset
|
211 (define-coding-system-alias 'viscii 'vietnamese-viscii) |
18203
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
17993
diff
changeset
|
212 |
17052 | 213 (make-coding-system |
18203
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
17993
diff
changeset
|
214 'vietnamese-vscii 4 ?v |
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
17993
diff
changeset
|
215 "8-bit encoding for Vietnamese VSCII-1" |
21663
a03ddc4a728b
FLAGS arguments for make-coding-system changed.
Kenichi Handa <handa@m17n.org>
parents:
20739
diff
changeset
|
216 '(ccl-decode-vscii . ccl-encode-vscii) |
22879
33987189baf3
(viet-viscii-decode-table): Docstring
Kenichi Handa <handa@m17n.org>
parents:
21663
diff
changeset
|
217 '((safe-charsets ascii vietnamese-viscii-lower vietnamese-viscii-upper) |
23069
96139be23b05
(vietnamese-viscii): Fix the value of
Kenichi Handa <handa@m17n.org>
parents:
22983
diff
changeset
|
218 (valid-codes (0 . 255)))) |
17052 | 219 |
18519
b6badf3614ea
Fix calls to define-coding-system-alias.
Richard M. Stallman <rms@gnu.org>
parents:
18377
diff
changeset
|
220 (define-coding-system-alias 'vscii 'vietnamese-vscii) |
18203
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
17993
diff
changeset
|
221 |
17052 | 222 (make-coding-system |
18203
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
17993
diff
changeset
|
223 'vietnamese-viqr 0 ?q |
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
17993
diff
changeset
|
224 "Vietnamese latin transcription (VIQR)" |
20155
d74c1bd094a2
Give proper SAFE-CHARSET argument in
Kenichi Handa <handa@m17n.org>
parents:
20108
diff
changeset
|
225 nil |
20739
5f2c7f919bbf
Adjusted for the change of make-coding-system. Register
Kenichi Handa <handa@m17n.org>
parents:
20155
diff
changeset
|
226 '((safe-charsets ascii vietnamese-viscii-lower vietnamese-viscii-upper) |
5f2c7f919bbf
Adjusted for the change of make-coding-system. Register
Kenichi Handa <handa@m17n.org>
parents:
20155
diff
changeset
|
227 (post-read-conversion . viqr-post-read-conversion) |
24296
28d942c5d967
(vietnamese-viqr): Add charset-origin-alist property.
Kenichi Handa <handa@m17n.org>
parents:
23158
diff
changeset
|
228 (pre-write-conversion . viqr-pre-write-conversion) |
28d942c5d967
(vietnamese-viqr): Add charset-origin-alist property.
Kenichi Handa <handa@m17n.org>
parents:
23158
diff
changeset
|
229 (charset-origin-alist |
28d942c5d967
(vietnamese-viqr): Add charset-origin-alist property.
Kenichi Handa <handa@m17n.org>
parents:
23158
diff
changeset
|
230 (vietnamese-viscii-lower "VISCII" viet-encode-viscii-char) |
28d942c5d967
(vietnamese-viqr): Add charset-origin-alist property.
Kenichi Handa <handa@m17n.org>
parents:
23158
diff
changeset
|
231 (vietnamese-viscii-upper "VISCII" viet-encode-viscii-char)))) |
28d942c5d967
(vietnamese-viqr): Add charset-origin-alist property.
Kenichi Handa <handa@m17n.org>
parents:
23158
diff
changeset
|
232 |
18203
0745f30aec66
Adjusted for coding system name change.
Kenichi Handa <handa@m17n.org>
parents:
17993
diff
changeset
|
233 |
18519
b6badf3614ea
Fix calls to define-coding-system-alias.
Richard M. Stallman <rms@gnu.org>
parents:
18377
diff
changeset
|
234 (define-coding-system-alias 'viqr 'vietnamese-viqr) |
17052 | 235 |
236 (setq font-ccl-encoder-alist | |
237 (cons (cons "viscii" ccl-encode-viscii-font) font-ccl-encoder-alist)) | |
238 | |
239 (setq font-ccl-encoder-alist | |
240 (cons (cons "vscii" ccl-encode-vscii-font) font-ccl-encoder-alist)) | |
241 | |
22879
33987189baf3
(viet-viscii-decode-table): Docstring
Kenichi Handa <handa@m17n.org>
parents:
21663
diff
changeset
|
242 (defvar viet-viscii-nonascii-translation-table |
33987189baf3
(viet-viscii-decode-table): Docstring
Kenichi Handa <handa@m17n.org>
parents:
21663
diff
changeset
|
243 (make-translation-table-from-vector viet-viscii-decode-table) |
33987189baf3
(viet-viscii-decode-table): Docstring
Kenichi Handa <handa@m17n.org>
parents:
21663
diff
changeset
|
244 "Value of `nonascii-translation-table' in Vietnamese language environment.") |
33987189baf3
(viet-viscii-decode-table): Docstring
Kenichi Handa <handa@m17n.org>
parents:
21663
diff
changeset
|
245 |
17052 | 246 (set-language-info-alist |
22983
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
22879
diff
changeset
|
247 "Vietnamese" `((charset vietnamese-viscii-lower vietnamese-viscii-upper) |
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
22879
diff
changeset
|
248 (nonascii-translation |
22879
33987189baf3
(viet-viscii-decode-table): Docstring
Kenichi Handa <handa@m17n.org>
parents:
21663
diff
changeset
|
249 . ,viet-viscii-nonascii-translation-table) |
20739
5f2c7f919bbf
Adjusted for the change of make-coding-system. Register
Kenichi Handa <handa@m17n.org>
parents:
20155
diff
changeset
|
250 (coding-system vietnamese-viscii vietnamese-vscii |
5f2c7f919bbf
Adjusted for the change of make-coding-system. Register
Kenichi Handa <handa@m17n.org>
parents:
20155
diff
changeset
|
251 vietnamese-viqr) |
5f2c7f919bbf
Adjusted for the change of make-coding-system. Register
Kenichi Handa <handa@m17n.org>
parents:
20155
diff
changeset
|
252 (coding-priority vietnamese-viscii) |
22983
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
22879
diff
changeset
|
253 (input-method . "vietnamese-viqr") |
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
22879
diff
changeset
|
254 (unibyte-display . vietnamese-viscii) |
7a010b8c0d99
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
Kenichi Handa <handa@m17n.org>
parents:
22879
diff
changeset
|
255 (features viet-util) |
17772
550afdbb31d8
Make functions setup-LANGUAGE-environment
Kenichi Handa <handa@m17n.org>
parents:
17170
diff
changeset
|
256 (sample-text . "Vietnamese (Ti,1*(Bng Vi,1.(Bt) Ch,1`(Bo b,1U(Bn") |
17993
73869115ae0a
Most of setup-LANGUAGE-environment functions are
Kenichi Handa <handa@m17n.org>
parents:
17841
diff
changeset
|
257 (documentation . "\ |
17841
084d922fcd78
Coding system names changed as follows:
Kenichi Handa <handa@m17n.org>
parents:
17772
diff
changeset
|
258 For Vietnamese, Emacs uses special charasets internally. |
20739
5f2c7f919bbf
Adjusted for the change of make-coding-system. Register
Kenichi Handa <handa@m17n.org>
parents:
20155
diff
changeset
|
259 They can be decoded from and encoded to VISCC, VSCII, and VIQR. |
5f2c7f919bbf
Adjusted for the change of make-coding-system. Register
Kenichi Handa <handa@m17n.org>
parents:
20155
diff
changeset
|
260 Current setting put higher priority to the coding system VISCII than VSCII. |
5f2c7f919bbf
Adjusted for the change of make-coding-system. Register
Kenichi Handa <handa@m17n.org>
parents:
20155
diff
changeset
|
261 If you prefer VSCII, please do: (prefer-coding-system 'vietnamese-vscii)") |
17841
084d922fcd78
Coding system names changed as follows:
Kenichi Handa <handa@m17n.org>
parents:
17772
diff
changeset
|
262 )) |
17052 | 263 |
264 ;;; vietnamese.el ends here |