Mercurial > emacs
annotate lisp/international/mule-conf.el @ 109758:6fb5db53272f
Fix typo.
author | Jan D <jan.h.d@swipnet.se> |
---|---|
date | Fri, 13 Aug 2010 08:57:12 +0200 |
parents | cd3f51128c38 |
children | 376148b31b5e |
rev | line source |
---|---|
17070 | 1 ;;; mule-conf.el --- configure multilingual environment |
2 | |
74544 | 3 ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, |
106815 | 4 ;; 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. |
5 ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 | |
62274 | 6 ;; National Institute of Advanced Industrial Science and Technology (AIST) |
7 ;; Registration Number H14PRO021 | |
89483 | 8 ;; Copyright (C) 2003 |
88411 | 9 ;; National Institute of Advanced Industrial Science and Technology (AIST) |
10 ;; Registration Number H13PRO009 | |
17070 | 11 |
88486 | 12 ;; Keywords: i18n, mule, multilingual, character set, coding system |
17070 | 13 |
14 ;; This file is part of GNU Emacs. | |
15 | |
94664
889bc336b89b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93286
diff
changeset
|
16 ;; GNU Emacs is free software: you can redistribute it and/or modify |
17070 | 17 ;; it under the terms of the GNU General Public License as published by |
94664
889bc336b89b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93286
diff
changeset
|
18 ;; the Free Software Foundation, either version 3 of the License, or |
889bc336b89b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93286
diff
changeset
|
19 ;; (at your option) any later version. |
17070 | 20 |
21 ;; GNU Emacs is distributed in the hope that it will be useful, | |
22 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
23 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
24 ;; GNU General Public License for more details. | |
25 | |
26 ;; You should have received a copy of the GNU General Public License | |
94664
889bc336b89b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93286
diff
changeset
|
27 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
17070 | 28 |
29 ;;; Commentary: | |
30 | |
88575 | 31 ;; This file defines the Emacs charsets and some basic coding systems. |
32 ;; Other coding systems are defined in the files in directory | |
33 ;; lisp/language. | |
17070 | 34 |
35 ;;; Code: | |
36 | |
88666 | 37 ;;; Remarks |
38 | |
88575 | 39 ;; The ISO-IR registry is at http://www.itscj.ipsj.or.jp/ISO-IR/. |
40 ;; Standards docs equivalent to iso-2022 and iso-8859 are at | |
41 ;; http://www.ecma.ch/. | |
42 | |
88717 | 43 ;; FWIW, http://www.microsoft.com/globaldev/ lists the following for |
44 ;; MS Windows, which are presumably the only charsets we really need | |
45 ;; to worry about on such systems: | |
88666 | 46 ;; `OEM codepages': 437, 720, 737, 775, 850, 852, 855, 857, 858, 862, 866 |
47 ;; `Windows codepages': 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, | |
48 ;; 1258, 874, 932, 936, 949, 950 | |
49 | |
17070 | 50 ;;; Definitions of character sets. |
51 | |
89089 | 52 ;; The charsets `ascii', `unicode' and `eight-bit' are already defined |
53 ;; in charset.c as below: | |
88411 | 54 ;; |
55 ;; (define-charset 'ascii | |
56 ;; "" | |
57 ;; :dimension 1 | |
58 ;; :code-space [0 127] | |
89089 | 59 ;; :iso-final-char ?B |
88411 | 60 ;; :ascii-compatible-p t |
61 ;; :emacs-mule-id 0 | |
62 ;; :code-offset 0) | |
63 ;; | |
64 ;; (define-charset 'unicode | |
65 ;; "" | |
66 ;; :dimension 3 | |
67 ;; :code-space [0 255 0 255 0 16] | |
68 ;; :ascii-compatible-p t | |
69 ;; :code-offset 0) | |
70 ;; | |
95262
1e646032185f
Don't define the charset `emacs'
Kenichi Handa <handa@m17n.org>
parents:
94664
diff
changeset
|
71 ;; (define-charset 'emacs |
1e646032185f
Don't define the charset `emacs'
Kenichi Handa <handa@m17n.org>
parents:
94664
diff
changeset
|
72 ;; "" |
1e646032185f
Don't define the charset `emacs'
Kenichi Handa <handa@m17n.org>
parents:
94664
diff
changeset
|
73 ;; :dimension 3 |
1e646032185f
Don't define the charset `emacs'
Kenichi Handa <handa@m17n.org>
parents:
94664
diff
changeset
|
74 ;; :code-space [0 255 0 255 0 63] |
1e646032185f
Don't define the charset `emacs'
Kenichi Handa <handa@m17n.org>
parents:
94664
diff
changeset
|
75 ;; :ascii-compatible-p t |
1e646032185f
Don't define the charset `emacs'
Kenichi Handa <handa@m17n.org>
parents:
94664
diff
changeset
|
76 ;; :supplementary-p t |
1e646032185f
Don't define the charset `emacs'
Kenichi Handa <handa@m17n.org>
parents:
94664
diff
changeset
|
77 ;; :code-offset 0) |
1e646032185f
Don't define the charset `emacs'
Kenichi Handa <handa@m17n.org>
parents:
94664
diff
changeset
|
78 ;; |
89089 | 79 ;; (define-charset 'eight-bit |
80 ;; "" | |
81 ;; :dimension 1 | |
82 ;; :code-space [128 255] | |
83 ;; :code-offset #x3FFF80) | |
84 ;; | |
88411 | 85 ;; We now set :docstring, :short-name, and :long-name properties. |
86 | |
87 (put-charset-property | |
88 'ascii :docstring "ASCII (ISO646 IRV)") | |
89 (put-charset-property | |
90 'ascii :short-name "ASCII") | |
91 (put-charset-property | |
92 'ascii :long-name "ASCII (ISO646 IRV)") | |
93 (put-charset-property | |
89050
c00be25be9ad
Don't define the charset iso-8859-1 here, just setup its properties.
Kenichi Handa <handa@m17n.org>
parents:
89041
diff
changeset
|
94 'iso-8859-1 :docstring "Latin-1 (ISO/IEC 8859-1)") |
c00be25be9ad
Don't define the charset iso-8859-1 here, just setup its properties.
Kenichi Handa <handa@m17n.org>
parents:
89041
diff
changeset
|
95 (put-charset-property |
c00be25be9ad
Don't define the charset iso-8859-1 here, just setup its properties.
Kenichi Handa <handa@m17n.org>
parents:
89041
diff
changeset
|
96 'iso-8859-1 :short-name "Latin-1") |
c00be25be9ad
Don't define the charset iso-8859-1 here, just setup its properties.
Kenichi Handa <handa@m17n.org>
parents:
89041
diff
changeset
|
97 (put-charset-property |
c00be25be9ad
Don't define the charset iso-8859-1 here, just setup its properties.
Kenichi Handa <handa@m17n.org>
parents:
89041
diff
changeset
|
98 'iso-8859-1 :long-name "Latin-1") |
c00be25be9ad
Don't define the charset iso-8859-1 here, just setup its properties.
Kenichi Handa <handa@m17n.org>
parents:
89041
diff
changeset
|
99 (put-charset-property |
88411 | 100 'unicode :docstring "Unicode (ISO10646)") |
101 (put-charset-property | |
102 'unicode :short-name "Unicode") | |
103 (put-charset-property | |
104 'unicode :long-name "Unicode (ISO10646)") | |
95262
1e646032185f
Don't define the charset `emacs'
Kenichi Handa <handa@m17n.org>
parents:
94664
diff
changeset
|
105 (put-charset-property |
1e646032185f
Don't define the charset `emacs'
Kenichi Handa <handa@m17n.org>
parents:
94664
diff
changeset
|
106 'emacs :docstring "Full Emacs charset (excluding eight bit chars)") |
1e646032185f
Don't define the charset `emacs'
Kenichi Handa <handa@m17n.org>
parents:
94664
diff
changeset
|
107 (put-charset-property |
1e646032185f
Don't define the charset `emacs'
Kenichi Handa <handa@m17n.org>
parents:
94664
diff
changeset
|
108 'emacs :short-name "Emacs") |
1e646032185f
Don't define the charset `emacs'
Kenichi Handa <handa@m17n.org>
parents:
94664
diff
changeset
|
109 (put-charset-property |
1e646032185f
Don't define the charset `emacs'
Kenichi Handa <handa@m17n.org>
parents:
94664
diff
changeset
|
110 'emacs :long-name "Emacs") |
1e646032185f
Don't define the charset `emacs'
Kenichi Handa <handa@m17n.org>
parents:
94664
diff
changeset
|
111 |
105870
26baacb565b0
* textmodes/tex-mode.el (tex-alt-dvi-print-command)
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105798
diff
changeset
|
112 (put-charset-property 'eight-bit :docstring "Raw bytes 128-255") |
26baacb565b0
* textmodes/tex-mode.el (tex-alt-dvi-print-command)
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105798
diff
changeset
|
113 (put-charset-property 'eight-bit :short-name "Raw bytes") |
17070 | 114 |
88411 | 115 (define-charset-alias 'ucs 'unicode) |
116 | |
117 (define-charset 'latin-iso8859-1 | |
118 "Right-Hand Part of ISO/IEC 8859/1 (Latin-1): ISO-IR-100" | |
119 :short-name "RHP of Latin-1" | |
120 :long-name "RHP of ISO/IEC 8859/1 (Latin-1): ISO-IR-100" | |
121 :iso-final-char ?A | |
122 :emacs-mule-id 129 | |
123 :code-space [32 127] | |
124 :code-offset 160) | |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
125 |
88735 | 126 ;; Name perhaps not ideal, but is XEmacs-compatible. |
127 (define-charset 'control-1 | |
88411 | 128 "8-bit control code (0x80..0x9F)" |
129 :short-name "8-bit control code" | |
130 :code-space [128 159] | |
131 :code-offset 128) | |
132 | |
88735 | 133 (define-charset 'eight-bit-control |
134 "Raw bytes in the range 0x80..0x9F (usually produced from invalid encodings)" | |
135 :short-name "Raw bytes 0x80..0x9F" | |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
136 :supplementary-p t |
88735 | 137 :code-space [128 159] |
138 :code-offset #x3FFF80) ; see character.h | |
139 | |
88411 | 140 (define-charset 'eight-bit-graphic |
88735 | 141 "Raw bytes in the range 0xA0..0xFF (usually produced from invalid encodings)" |
142 :short-name "Raw bytes 0xA0..0xFF" | |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
143 :supplementary-p t |
88411 | 144 :code-space [160 255] |
88735 | 145 :code-offset #x3FFFA0) ; see character.h |
17070 | 146 |
88411 | 147 (defmacro define-iso-single-byte-charset (symbol iso-symbol name nickname |
148 iso-ir iso-final | |
149 emacs-mule-id map) | |
150 `(progn | |
151 (define-charset ,symbol | |
152 ,name | |
153 :short-name ,nickname | |
154 :long-name ,name | |
155 :ascii-compatible-p t | |
156 :code-space [0 255] | |
157 :map ,map) | |
158 (if ,iso-symbol | |
159 (define-charset ,iso-symbol | |
160 (if ,iso-ir | |
161 (format "Right-Hand Part of %s (%s): ISO-IR-%d" | |
162 ,name ,nickname ,iso-ir) | |
163 (format "Right-Hand Part of %s (%s)" ,name ,nickname)) | |
164 :short-name (format "RHP of %s" ,name) | |
165 :long-name (format "RHP of %s (%s)" ,name ,nickname) | |
166 :iso-final-char ,iso-final | |
88486 | 167 :emacs-mule-id ,emacs-mule-id |
88411 | 168 :code-space [32 127] |
88751
809b6bfe4dfa
Adjusted for the change of define-charset (:parent -> :subset or
Kenichi Handa <handa@m17n.org>
parents:
88735
diff
changeset
|
169 :subset (list ,symbol 160 255 -128))))) |
88411 | 170 |
171 (define-iso-single-byte-charset 'iso-8859-2 'latin-iso8859-2 | |
172 "ISO/IEC 8859/2" "Latin-2" 101 ?B 130 "8859-2") | |
173 | |
174 (define-iso-single-byte-charset 'iso-8859-3 'latin-iso8859-3 | |
175 "ISO/IEC 8859/3" "Latin-3" 109 ?C 131 "8859-3") | |
176 | |
177 (define-iso-single-byte-charset 'iso-8859-4 'latin-iso8859-4 | |
178 "ISO/IEC 8859/4" "Latin-4" 110 ?D 132 "8859-4") | |
179 | |
180 (define-iso-single-byte-charset 'iso-8859-5 'cyrillic-iso8859-5 | |
181 "ISO/IEC 8859/5" "Latin/Cyrillic" 144 ?L 140 "8859-5") | |
182 | |
183 (define-iso-single-byte-charset 'iso-8859-6 'arabic-iso8859-6 | |
184 "ISO/IEC 8859/6" "Latin/Arabic" 127 ?G 135 "8859-6") | |
185 | |
186 (define-iso-single-byte-charset 'iso-8859-7 'greek-iso8859-7 | |
187 "ISO/IEC 8859/7" "Latin/Greek" 126 ?F 134 "8859-7") | |
188 | |
189 (define-iso-single-byte-charset 'iso-8859-8 'hebrew-iso8859-8 | |
190 "ISO/IEC 8859/8" "Latin/Hebrew" 138 ?H 136 "8859-8") | |
191 | |
192 (define-iso-single-byte-charset 'iso-8859-9 'latin-iso8859-9 | |
193 "ISO/IEC 8859/9" "Latin-5" 148 ?M 141 "8859-9") | |
17070 | 194 |
88575 | 195 (define-iso-single-byte-charset 'iso-8859-10 'latin-iso8859-10 |
88671 | 196 "ISO/IEC 8859/10" "Latin-6" 157 ?V nil "8859-10") |
88575 | 197 |
88671 | 198 ;; http://www.nectec.or.th/it-standards/iso8859-11/ |
199 ;; http://www.cwi.nl/~dik/english/codes/8859.html says this is tis-620 | |
200 ;; plus nbsp | |
201 (define-iso-single-byte-charset 'iso-8859-11 'thai-iso8859-11 | |
202 "ISO/IEC 8859/11" "Latin/Thai" 166 ?T nil "8859-11") | |
203 | |
204 ;; 8859-12 doesn't (yet?) exist. | |
88575 | 205 |
88411 | 206 (define-iso-single-byte-charset 'iso-8859-13 'latin-iso8859-13 |
88575 | 207 "ISO/IEC 8859/13" "Latin-7" 179 ?Y nil "8859-13") |
88411 | 208 |
209 (define-iso-single-byte-charset 'iso-8859-14 'latin-iso8859-14 | |
210 "ISO/IEC 8859/14" "Latin-8" 199 ?_ 143 "8859-14") | |
211 | |
212 (define-iso-single-byte-charset 'iso-8859-15 'latin-iso8859-15 | |
213 "ISO/IEC 8859/15" "Latin-9" 203 ?b 142 "8859-15") | |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
214 |
88565 | 215 (define-iso-single-byte-charset 'iso-8859-16 'latin-iso8859-16 |
88638 | 216 "ISO/IEC 8859/16" "Latin-10" 226 ?f nil "8859-16") |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
217 |
88647 | 218 ;; No point in keeping it around. |
219 (fmakunbound 'define-iso-single-byte-charset) | |
220 | |
88671 | 221 ;; Can this be shared with 8859-11? |
89089 | 222 ;; N.b. not all of these are defined unicodes. |
88411 | 223 (define-charset 'thai-tis620 |
224 "TIS620.2533" | |
225 :short-name "TIS620.2533" | |
226 :iso-final-char ?T | |
227 :emacs-mule-id 133 | |
228 :code-space [32 127] | |
229 :code-offset #x0E00) | |
230 | |
88671 | 231 ;; Fixme: doc for this, c.f. above |
88411 | 232 (define-charset 'tis620-2533 |
233 "TIS620.2533" | |
234 :short-name "TIS620.2533" | |
235 :ascii-compatible-p t | |
236 :code-space [0 255] | |
88751
809b6bfe4dfa
Adjusted for the change of define-charset (:parent -> :subset or
Kenichi Handa <handa@m17n.org>
parents:
88735
diff
changeset
|
237 :superset '(ascii eight-bit-control (thai-tis620 . 128))) |
88411 | 238 |
239 (define-charset 'jisx0201 | |
240 "JISX0201" | |
241 :short-name "JISX0201" | |
89483 | 242 :code-space [0 #xDF] |
243 :map "JISX0201") | |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
244 |
88411 | 245 (define-charset 'latin-jisx0201 |
246 "Roman Part of JISX0201.1976" | |
247 :short-name "JISX0201 Roman" | |
248 :long-name "Japanese Roman (JISX0201.1976)" | |
249 :iso-final-char ?J | |
250 :emacs-mule-id 138 | |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
251 :supplementary-p t |
88411 | 252 :code-space [33 126] |
88751
809b6bfe4dfa
Adjusted for the change of define-charset (:parent -> :subset or
Kenichi Handa <handa@m17n.org>
parents:
88735
diff
changeset
|
253 :subset '(jisx0201 33 126 0)) |
88411 | 254 |
255 (define-charset 'katakana-jisx0201 | |
256 "Katakana Part of JISX0201.1976" | |
257 :short-name "JISX0201 Katakana" | |
258 :long-name "Japanese Katakana (JISX0201.1976)" | |
259 :iso-final-char ?I | |
260 :emacs-mule-id 137 | |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
261 :supplementary-p t |
88411 | 262 :code-space [33 126] |
88751
809b6bfe4dfa
Adjusted for the change of define-charset (:parent -> :subset or
Kenichi Handa <handa@m17n.org>
parents:
88735
diff
changeset
|
263 :subset '(jisx0201 161 254 -128)) |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
264 |
88411 | 265 (define-charset 'chinese-gb2312 |
266 "GB2312 Chinese simplified: ISO-IR-58" | |
267 :short-name "GB2312" | |
268 :long-name "GB2312: ISO-IR-58" | |
269 :iso-final-char ?A | |
270 :emacs-mule-id 145 | |
271 :code-space [33 126 33 126] | |
272 :code-offset #x110000 | |
89483 | 273 :unify-map "GB2312") |
88411 | 274 |
88451
33d9bd9d6aa7
(chinese-gbk): New charset.
Kenichi Handa <handa@m17n.org>
parents:
88440
diff
changeset
|
275 (define-charset 'chinese-gbk |
88486 | 276 "GBK Chinese simplified." |
88451
33d9bd9d6aa7
(chinese-gbk): New charset.
Kenichi Handa <handa@m17n.org>
parents:
88440
diff
changeset
|
277 :short-name "GBK" |
33d9bd9d6aa7
(chinese-gbk): New charset.
Kenichi Handa <handa@m17n.org>
parents:
88440
diff
changeset
|
278 :code-space [#x40 #xFE #x81 #xFE] |
88675
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
279 :code-offset #x160000 |
89483 | 280 :unify-map "GBK") |
88666 | 281 (define-charset-alias 'cp936 'chinese-gbk) |
88717 | 282 (define-charset-alias 'windows-936 'chinese-gbk) |
88451
33d9bd9d6aa7
(chinese-gbk): New charset.
Kenichi Handa <handa@m17n.org>
parents:
88440
diff
changeset
|
283 |
88411 | 284 (define-charset 'chinese-cns11643-1 |
285 "CNS11643 Plane 1 Chinese traditional: ISO-IR-171" | |
286 :short-name "CNS11643-1" | |
287 :long-name "CNS11643-1 (Chinese traditional): ISO-IR-171" | |
288 :iso-final-char ?G | |
289 :emacs-mule-id 149 | |
290 :code-space [33 126 33 126] | |
291 :code-offset #x114000 | |
89483 | 292 :unify-map "CNS-1") |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
293 |
88411 | 294 (define-charset 'chinese-cns11643-2 |
295 "CNS11643 Plane 2 Chinese traditional: ISO-IR-172" | |
296 :short-name "CNS11643-2" | |
297 :long-name "CNS11643-2 (Chinese traditional): ISO-IR-172" | |
298 :iso-final-char ?H | |
299 :emacs-mule-id 150 | |
300 :code-space [33 126 33 126] | |
301 :code-offset #x118000 | |
89483 | 302 :unify-map "CNS-2") |
88411 | 303 |
304 (define-charset 'chinese-cns11643-3 | |
305 "CNS11643 Plane 3 Chinese Traditional: ISO-IR-183" | |
306 :short-name "CNS11643-3" | |
307 :long-name "CNS11643-3 (Chinese traditional): ISO-IR-183" | |
308 :iso-final-char ?I | |
309 :code-space [33 126 33 126] | |
310 :emacs-mule-id 246 | |
89483 | 311 :code-offset #x11C000 |
312 :unify-map "CNS-3") | |
88411 | 313 |
314 (define-charset 'chinese-cns11643-4 | |
315 "CNS11643 Plane 4 Chinese Traditional: ISO-IR-184" | |
316 :short-name "CNS11643-4" | |
317 :long-name "CNS11643-4 (Chinese traditional): ISO-IR-184" | |
318 :iso-final-char ?J | |
319 :emacs-mule-id 247 | |
320 :code-space [33 126 33 126] | |
89483 | 321 :code-offset #x120000 |
322 :unify-map "CNS-4") | |
88411 | 323 |
324 (define-charset 'chinese-cns11643-5 | |
325 "CNS11643 Plane 5 Chinese Traditional: ISO-IR-185" | |
326 :short-name "CNS11643-5" | |
327 :long-name "CNS11643-5 (Chinese traditional): ISO-IR-185" | |
328 :iso-final-char ?K | |
329 :emacs-mule-id 248 | |
330 :code-space [33 126 33 126] | |
89483 | 331 :code-offset #x124000 |
332 :unify-map "CNS-5") | |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
333 |
88411 | 334 (define-charset 'chinese-cns11643-6 |
335 "CNS11643 Plane 6 Chinese Traditional: ISO-IR-186" | |
336 :short-name "CNS11643-6" | |
337 :long-name "CNS11643-6 (Chinese traditional): ISO-IR-186" | |
338 :iso-final-char ?L | |
339 :emacs-mule-id 249 | |
340 :code-space [33 126 33 126] | |
89483 | 341 :code-offset #x128000 |
342 :unify-map "CNS-6") | |
88411 | 343 |
344 (define-charset 'chinese-cns11643-7 | |
345 "CNS11643 Plane 7 Chinese Traditional: ISO-IR-187" | |
346 :short-name "CNS11643-7" | |
347 :long-name "CNS11643-7 (Chinese traditional): ISO-IR-187" | |
348 :iso-final-char ?M | |
349 :emacs-mule-id 250 | |
350 :code-space [33 126 33 126] | |
89483 | 351 :code-offset #x12C000 |
352 :unify-map "CNS-7") | |
88411 | 353 |
354 (define-charset 'big5 | |
355 "Big5 (Chinese traditional)" | |
356 :short-name "Big5" | |
357 :code-space [#x40 #xFE #xA1 #xFE] | |
358 :code-offset #x130000 | |
89483 | 359 :unify-map "BIG5") |
88666 | 360 ;; Fixme: AKA cp950 according to |
361 ;; <URL:http://www.microsoft.com/globaldev/reference/WinCP.asp>. Is | |
362 ;; that correct? | |
88411 | 363 |
364 (define-charset 'chinese-big5-1 | |
88486 | 365 "Frequently used part (A141-C67E) of Big5 (Chinese traditional)" |
88411 | 366 :short-name "Big5 (Level-1)" |
367 :long-name "Big5 (Level-1) A141-C67F" | |
368 :iso-final-char ?0 | |
369 :emacs-mule-id 152 | |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
370 :supplementary-p t |
88411 | 371 :code-space [#x21 #x7E #x21 #x7E] |
88451
33d9bd9d6aa7
(chinese-gbk): New charset.
Kenichi Handa <handa@m17n.org>
parents:
88440
diff
changeset
|
372 :code-offset #x135000 |
89483 | 373 :unify-map "BIG5-1") |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
374 |
88411 | 375 (define-charset 'chinese-big5-2 |
88486 | 376 "Less frequently used part (C940-FEFE) of Big5 (Chinese traditional)" |
88411 | 377 :short-name "Big5 (Level-2)" |
378 :long-name "Big5 (Level-2) C940-FEFE" | |
379 :iso-final-char ?1 | |
380 :emacs-mule-id 153 | |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
381 :supplementary-p t |
88411 | 382 :code-space [#x21 #x7E #x21 #x7E] |
88451
33d9bd9d6aa7
(chinese-gbk): New charset.
Kenichi Handa <handa@m17n.org>
parents:
88440
diff
changeset
|
383 :code-offset #x137800 |
89483 | 384 :unify-map "BIG5-2") |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
385 |
88411 | 386 (define-charset 'japanese-jisx0208 |
387 "JISX0208.1983/1990 Japanese Kanji: ISO-IR-87" | |
388 :short-name "JISX0208" | |
389 :long-name "JISX0208.1983/1990 (Japanese): ISO-IR-87" | |
390 :iso-final-char ?B | |
391 :emacs-mule-id 146 | |
392 :code-space [33 126 33 126] | |
393 :code-offset #x140000 | |
89483 | 394 :unify-map "JISX0208") |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
395 |
88411 | 396 (define-charset 'japanese-jisx0208-1978 |
397 "JISX0208.1978 Japanese Kanji (so called \"old JIS\"): ISO-IR-42" | |
398 :short-name "JISX0208.1978" | |
89483 | 399 :long-name "JISX0208.1978 (JISC6226.1978): ISO-IR-42" |
88411 | 400 :iso-final-char ?@ |
401 :emacs-mule-id 144 | |
402 :code-space [33 126 33 126] | |
403 :code-offset #x144000 | |
89483 | 404 :unify-map "JISC6226") |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
405 |
88411 | 406 (define-charset 'japanese-jisx0212 |
407 "JISX0212 Japanese supplement: ISO-IR-159" | |
408 :short-name "JISX0212" | |
409 :long-name "JISX0212 (Japanese): ISO-IR-159" | |
410 :iso-final-char ?D | |
411 :emacs-mule-id 148 | |
412 :code-space [33 126 33 126] | |
413 :code-offset #x148000 | |
89483 | 414 :unify-map "JISX0212") |
88411 | 415 |
89426 | 416 ;; Note that jisx0213 contains characters not in Unicode (3.2?). It's |
417 ;; arguable whether it should have a unify-map. | |
88411 | 418 (define-charset 'japanese-jisx0213-1 |
89766
c7813ec27ad7
(japanese-jisx0213-a): New supplementary charset.
Kenichi Handa <handa@m17n.org>
parents:
89753
diff
changeset
|
419 "JISX0213.2000 Plane 1 (Japanese)" |
88411 | 420 :short-name "JISX0213-1" |
421 :iso-final-char ?O | |
422 :emacs-mule-id 151 | |
89483 | 423 :unify-map "JISX2131" |
88411 | 424 :code-space [33 126 33 126] |
425 :code-offset #x14C000) | |
17070 | 426 |
88411 | 427 (define-charset 'japanese-jisx0213-2 |
89766
c7813ec27ad7
(japanese-jisx0213-a): New supplementary charset.
Kenichi Handa <handa@m17n.org>
parents:
89753
diff
changeset
|
428 "JISX0213.2000 Plane 2 (Japanese)" |
88411 | 429 :short-name "JISX0213-2" |
430 :iso-final-char ?P | |
431 :emacs-mule-id 254 | |
89483 | 432 :unify-map "JISX2132" |
88411 | 433 :code-space [33 126 33 126] |
434 :code-offset #x150000) | |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
435 |
89766
c7813ec27ad7
(japanese-jisx0213-a): New supplementary charset.
Kenichi Handa <handa@m17n.org>
parents:
89753
diff
changeset
|
436 (define-charset 'japanese-jisx0213-a |
c7813ec27ad7
(japanese-jisx0213-a): New supplementary charset.
Kenichi Handa <handa@m17n.org>
parents:
89753
diff
changeset
|
437 "JISX0213.2004 adds these characters to JISX0213.2000." |
c7813ec27ad7
(japanese-jisx0213-a): New supplementary charset.
Kenichi Handa <handa@m17n.org>
parents:
89753
diff
changeset
|
438 :short-name "JISX0213A" |
c7813ec27ad7
(japanese-jisx0213-a): New supplementary charset.
Kenichi Handa <handa@m17n.org>
parents:
89753
diff
changeset
|
439 :dimension 2 |
c7813ec27ad7
(japanese-jisx0213-a): New supplementary charset.
Kenichi Handa <handa@m17n.org>
parents:
89753
diff
changeset
|
440 :code-space [33 126 33 126] |
c7813ec27ad7
(japanese-jisx0213-a): New supplementary charset.
Kenichi Handa <handa@m17n.org>
parents:
89753
diff
changeset
|
441 :supplementary-p t |
c7813ec27ad7
(japanese-jisx0213-a): New supplementary charset.
Kenichi Handa <handa@m17n.org>
parents:
89753
diff
changeset
|
442 :map "JISX213A") |
c7813ec27ad7
(japanese-jisx0213-a): New supplementary charset.
Kenichi Handa <handa@m17n.org>
parents:
89753
diff
changeset
|
443 |
c7813ec27ad7
(japanese-jisx0213-a): New supplementary charset.
Kenichi Handa <handa@m17n.org>
parents:
89753
diff
changeset
|
444 (define-charset 'japanese-jisx0213.2004-1 |
c7813ec27ad7
(japanese-jisx0213-a): New supplementary charset.
Kenichi Handa <handa@m17n.org>
parents:
89753
diff
changeset
|
445 "JISX0213.2004 Plane1 (Japanese)" |
c7813ec27ad7
(japanese-jisx0213-a): New supplementary charset.
Kenichi Handa <handa@m17n.org>
parents:
89753
diff
changeset
|
446 :short-name "JISX0213.2004-1" |
89793
cdb516af172d
(japanese-jisx0213.2004-1): Specify :dimension 2.
Kenichi Handa <handa@m17n.org>
parents:
89766
diff
changeset
|
447 :dimension 2 |
89797
fdc51e185411
(japanese-jisx0213.2004-1): Specify :code-space.
Kenichi Handa <handa@m17n.org>
parents:
89793
diff
changeset
|
448 :code-space [33 126 33 126] |
89766
c7813ec27ad7
(japanese-jisx0213-a): New supplementary charset.
Kenichi Handa <handa@m17n.org>
parents:
89753
diff
changeset
|
449 :iso-final-char ?Q |
c7813ec27ad7
(japanese-jisx0213-a): New supplementary charset.
Kenichi Handa <handa@m17n.org>
parents:
89753
diff
changeset
|
450 :superset '(japanese-jisx0213-a japanese-jisx0213-1)) |
c7813ec27ad7
(japanese-jisx0213-a): New supplementary charset.
Kenichi Handa <handa@m17n.org>
parents:
89753
diff
changeset
|
451 |
89734
bb0fde79c866
(katakana-sjis, cp932-2-byte, cp932): New charsets.
Kenichi Handa <handa@m17n.org>
parents:
89647
diff
changeset
|
452 (define-charset 'katakana-sjis |
bb0fde79c866
(katakana-sjis, cp932-2-byte, cp932): New charsets.
Kenichi Handa <handa@m17n.org>
parents:
89647
diff
changeset
|
453 "Katakana part of Shift-JIS" |
bb0fde79c866
(katakana-sjis, cp932-2-byte, cp932): New charsets.
Kenichi Handa <handa@m17n.org>
parents:
89647
diff
changeset
|
454 :dimension 1 |
89753
d91d2d88af05
(katakana-sjis): Fix :superset to :subset.
Kenichi Handa <handa@m17n.org>
parents:
89741
diff
changeset
|
455 :code-space [#xA1 #xDF] |
d91d2d88af05
(katakana-sjis): Fix :superset to :subset.
Kenichi Handa <handa@m17n.org>
parents:
89741
diff
changeset
|
456 :subset '(jisx0201 #xA1 #xDF 0) |
89734
bb0fde79c866
(katakana-sjis, cp932-2-byte, cp932): New charsets.
Kenichi Handa <handa@m17n.org>
parents:
89647
diff
changeset
|
457 :supplementary-p t) |
bb0fde79c866
(katakana-sjis, cp932-2-byte, cp932): New charsets.
Kenichi Handa <handa@m17n.org>
parents:
89647
diff
changeset
|
458 |
bb0fde79c866
(katakana-sjis, cp932-2-byte, cp932): New charsets.
Kenichi Handa <handa@m17n.org>
parents:
89647
diff
changeset
|
459 (define-charset 'cp932-2-byte |
bb0fde79c866
(katakana-sjis, cp932-2-byte, cp932): New charsets.
Kenichi Handa <handa@m17n.org>
parents:
89647
diff
changeset
|
460 "2-byte part of CP932" |
89741
fb91cfc5ed37
(cp932-2-byte): Specify :dimension.
Kenichi Handa <handa@m17n.org>
parents:
89734
diff
changeset
|
461 :dimension 2 |
89734
bb0fde79c866
(katakana-sjis, cp932-2-byte, cp932): New charsets.
Kenichi Handa <handa@m17n.org>
parents:
89647
diff
changeset
|
462 :map "CP932-2BYTE" |
89926
c452bfea1458
(cp932-2-byte): Fix :code-space.
Kenichi Handa <handa@m17n.org>
parents:
89909
diff
changeset
|
463 :code-space [#x40 #xFC #x81 #xFC] |
89734
bb0fde79c866
(katakana-sjis, cp932-2-byte, cp932): New charsets.
Kenichi Handa <handa@m17n.org>
parents:
89647
diff
changeset
|
464 :supplementary-p t) |
bb0fde79c866
(katakana-sjis, cp932-2-byte, cp932): New charsets.
Kenichi Handa <handa@m17n.org>
parents:
89647
diff
changeset
|
465 |
bb0fde79c866
(katakana-sjis, cp932-2-byte, cp932): New charsets.
Kenichi Handa <handa@m17n.org>
parents:
89647
diff
changeset
|
466 (define-charset 'cp932 |
bb0fde79c866
(katakana-sjis, cp932-2-byte, cp932): New charsets.
Kenichi Handa <handa@m17n.org>
parents:
89647
diff
changeset
|
467 "CP932 (Microsoft shift-jis)" |
bb0fde79c866
(katakana-sjis, cp932-2-byte, cp932): New charsets.
Kenichi Handa <handa@m17n.org>
parents:
89647
diff
changeset
|
468 :code-space [#x00 #xFF #x00 #xFE] |
bb0fde79c866
(katakana-sjis, cp932-2-byte, cp932): New charsets.
Kenichi Handa <handa@m17n.org>
parents:
89647
diff
changeset
|
469 :short-name "CP932" |
bb0fde79c866
(katakana-sjis, cp932-2-byte, cp932): New charsets.
Kenichi Handa <handa@m17n.org>
parents:
89647
diff
changeset
|
470 :superset '(ascii katakana-sjis cp932-2-byte)) |
bb0fde79c866
(katakana-sjis, cp932-2-byte, cp932): New charsets.
Kenichi Handa <handa@m17n.org>
parents:
89647
diff
changeset
|
471 |
88411 | 472 (define-charset 'korean-ksc5601 |
473 "KSC5601 Korean Hangul and Hanja: ISO-IR-149" | |
474 :short-name "KSC5601" | |
475 :long-name "KSC5601 (Korean): ISO-IR-149" | |
476 :iso-final-char ?C | |
477 :emacs-mule-id 147 | |
478 :code-space [33 126 33 126] | |
89389
b6e224aa7da6
(big5-hkscs, georgian-academy): New
Dave Love <fx@gnu.org>
parents:
89356
diff
changeset
|
479 :code-offset #x279f94 ; ... #x27c217 |
89483 | 480 :unify-map "KSC5601") |
17070 | 481 |
89389
b6e224aa7da6
(big5-hkscs, georgian-academy): New
Dave Love <fx@gnu.org>
parents:
89356
diff
changeset
|
482 (define-charset 'big5-hkscs |
b6e224aa7da6
(big5-hkscs, georgian-academy): New
Dave Love <fx@gnu.org>
parents:
89356
diff
changeset
|
483 "Big5-HKSCS (Chinese traditional, Hong Kong supplement)" |
b6e224aa7da6
(big5-hkscs, georgian-academy): New
Dave Love <fx@gnu.org>
parents:
89356
diff
changeset
|
484 :short-name "Big5" |
b6e224aa7da6
(big5-hkscs, georgian-academy): New
Dave Love <fx@gnu.org>
parents:
89356
diff
changeset
|
485 :code-space [#x40 #xFE #xA1 #xFE] |
b6e224aa7da6
(big5-hkscs, georgian-academy): New
Dave Love <fx@gnu.org>
parents:
89356
diff
changeset
|
486 :code-offset #x27c218 ; ... #x280839 |
89483 | 487 :unify-map "BIG5-HKSCS") |
89389
b6e224aa7da6
(big5-hkscs, georgian-academy): New
Dave Love <fx@gnu.org>
parents:
89356
diff
changeset
|
488 |
103439 | 489 (define-charset 'cp949-2-byte |
490 "2-byte part of CP949" | |
491 :dimension 2 | |
492 :map "CP949-2BYTE" | |
493 :code-space [#x41 #xFE #x81 #xFD] | |
494 :supplementary-p t) | |
495 | |
496 (define-charset 'cp949 | |
497 "CP949 (Korean)" | |
498 :short-name "CP949" | |
499 :long-name "CP949 (Korean)" | |
500 :code-space [#x00 #xFE #x00 #xFD] | |
501 :superset '(ascii cp949-2-byte)) | |
88666 | 502 |
88411 | 503 (define-charset 'chinese-sisheng |
504 "SiSheng characters for PinYin/ZhuYin" | |
505 :short-name "SiSheng" | |
506 :long-name "SiSheng (PinYin/ZhuYin)" | |
507 :iso-final-char ?0 | |
508 :emacs-mule-id 160 | |
509 :code-space [33 126] | |
89483 | 510 :unify-map "MULE-sisheng" |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
511 :supplementary-p t |
88411 | 512 :code-offset #x200000) |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
513 |
88735 | 514 ;; A subset of the 1989 version of IPA. It consists of the consonant |
515 ;; signs used in English, French, German and Italian, and all vowels | |
516 ;; signs in the table. [says old MULE doc] | |
88411 | 517 (define-charset 'ipa |
518 "IPA (International Phonetic Association)" | |
519 :short-name "IPA" | |
520 :iso-final-char ?0 | |
521 :emacs-mule-id 161 | |
89483 | 522 :unify-map "MULE-ipa" |
88411 | 523 :code-space [32 127] |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
524 :supplementary-p t |
88411 | 525 :code-offset #x200080) |
17070 | 526 |
88411 | 527 (define-charset 'viscii |
528 "VISCII1.1" | |
529 :short-name "VISCII" | |
530 :long-name "VISCII 1.1" | |
531 :code-space [0 255] | |
89483 | 532 :map "VISCII") |
88411 | 533 |
534 (define-charset 'vietnamese-viscii-lower | |
535 "VISCII1.1 lower-case" | |
536 :short-name "VISCII lower" | |
537 :long-name "VISCII lower-case" | |
538 :iso-final-char ?1 | |
539 :emacs-mule-id 162 | |
540 :code-space [32 127] | |
88588
2516c98d56d2
(vietnamese-viscii-lower, vietnamese-viscii-upper): Supply them
Kenichi Handa <handa@m17n.org>
parents:
88575
diff
changeset
|
541 :code-offset #x200200 |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
542 :supplementary-p t |
89483 | 543 :unify-map "MULE-lviscii") |
17070 | 544 |
88411 | 545 (define-charset 'vietnamese-viscii-upper |
546 "VISCII1.1 upper-case" | |
547 :short-name "VISCII upper" | |
548 :long-name "VISCII upper-case" | |
549 :iso-final-char ?2 | |
550 :emacs-mule-id 163 | |
551 :code-space [32 127] | |
88588
2516c98d56d2
(vietnamese-viscii-lower, vietnamese-viscii-upper): Supply them
Kenichi Handa <handa@m17n.org>
parents:
88575
diff
changeset
|
552 :code-offset #x200280 |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
553 :supplementary-p t |
89483 | 554 :unify-map "MULE-uviscii") |
88411 | 555 |
556 (define-charset 'vscii | |
89483 | 557 "VSCII1.1 (TCVN-5712 VN1)" |
88411 | 558 :short-name "VSCII" |
559 :code-space [0 255] | |
89483 | 560 :map "VSCII") |
561 | |
562 (define-charset-alias 'tcvn-5712 'vscii) | |
88411 | 563 |
88727 | 564 ;; Fixme: see note in tcvn.map about combining characters |
89483 | 565 (define-charset 'vscii-2 |
566 "VSCII-2 (TCVN-5712 VN2)" | |
88727 | 567 :code-space [0 255] |
89483 | 568 :map "VSCII-2") |
88727 | 569 |
88411 | 570 (define-charset 'koi8-r |
571 "KOI8-R" | |
572 :short-name "KOI8-R" | |
573 :ascii-compatible-p t | |
574 :code-space [0 255] | |
89483 | 575 :map "KOI8-R") |
88411 | 576 |
577 (define-charset-alias 'koi8 'koi8-r) | |
578 | |
579 (define-charset 'alternativnyj | |
580 "ALTERNATIVNYJ" | |
581 :short-name "alternativnyj" | |
582 :ascii-compatible-p t | |
583 :code-space [0 255] | |
89483 | 584 :map "ALTERNATIVNYJ") |
89200 | 585 |
586 (define-charset 'cp866 | |
587 "CP866" | |
588 :short-name "cp866" | |
589 :ascii-compatible-p t | |
590 :code-space [0 255] | |
89483 | 591 :map "IBM866") |
89200 | 592 (define-charset-alias 'ibm866 'cp866) |
17070 | 593 |
88533 | 594 (define-charset 'koi8-u |
595 "KOI8-U" | |
596 :short-name "KOI8-U" | |
597 :ascii-compatible-p t | |
598 :code-space [0 255] | |
89483 | 599 :map "KOI8-U") |
88533 | 600 |
601 (define-charset 'koi8-t | |
602 "KOI8-T" | |
603 :short-name "KOI8-T" | |
604 :ascii-compatible-p t | |
605 :code-space [0 255] | |
89483 | 606 :map "KOI8-T") |
88533 | 607 |
608 (define-charset 'georgian-ps | |
609 "GEORGIAN-PS" | |
610 :short-name "GEORGIAN-PS" | |
611 :ascii-compatible-p t | |
612 :code-space [0 255] | |
89483 | 613 :map "KA-PS") |
88533 | 614 |
89389
b6e224aa7da6
(big5-hkscs, georgian-academy): New
Dave Love <fx@gnu.org>
parents:
89356
diff
changeset
|
615 (define-charset 'georgian-academy |
b6e224aa7da6
(big5-hkscs, georgian-academy): New
Dave Love <fx@gnu.org>
parents:
89356
diff
changeset
|
616 "GEORGIAN-ACADEMY" |
b6e224aa7da6
(big5-hkscs, georgian-academy): New
Dave Love <fx@gnu.org>
parents:
89356
diff
changeset
|
617 :short-name "GEORGIAN-ACADEMY" |
b6e224aa7da6
(big5-hkscs, georgian-academy): New
Dave Love <fx@gnu.org>
parents:
89356
diff
changeset
|
618 :ascii-compatible-p t |
b6e224aa7da6
(big5-hkscs, georgian-academy): New
Dave Love <fx@gnu.org>
parents:
89356
diff
changeset
|
619 :code-space [0 255] |
89483 | 620 :map "KA-ACADEMY") |
89389
b6e224aa7da6
(big5-hkscs, georgian-academy): New
Dave Love <fx@gnu.org>
parents:
89356
diff
changeset
|
621 |
88533 | 622 (define-charset 'windows-1250 |
88555
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
623 "WINDOWS-1250 (Central Europe)" |
88533 | 624 :short-name "WINDOWS-1250" |
625 :ascii-compatible-p t | |
626 :code-space [0 255] | |
89483 | 627 :map "CP1250") |
88533 | 628 (define-charset-alias 'cp1250 'windows-1250) |
629 | |
630 (define-charset 'windows-1251 | |
88666 | 631 "WINDOWS-1251 (Cyrillic)" |
88533 | 632 :short-name "WINDOWS-1251" |
633 :ascii-compatible-p t | |
634 :code-space [0 255] | |
89483 | 635 :map "CP1251") |
88533 | 636 (define-charset-alias 'cp1251 'windows-1251) |
17070 | 637 |
88533 | 638 (define-charset 'windows-1252 |
88666 | 639 "WINDOWS-1252 (Latin I)" |
88533 | 640 :short-name "WINDOWS-1252" |
641 :ascii-compatible-p t | |
642 :code-space [0 255] | |
89483 | 643 :map "CP1252") |
88533 | 644 (define-charset-alias 'cp1252 'windows-1252) |
645 | |
88555
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
646 (define-charset 'windows-1253 |
88666 | 647 "WINDOWS-1253 (Greek)" |
88555
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
648 :short-name "WINDOWS-1253" |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
649 :ascii-compatible-p t |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
650 :code-space [0 255] |
89483 | 651 :map "CP1253") |
88555
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
652 (define-charset-alias 'cp1253 'windows-1253) |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
653 |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
654 (define-charset 'windows-1254 |
88666 | 655 "WINDOWS-1254 (Turkish)" |
88555
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
656 :short-name "WINDOWS-1254" |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
657 :ascii-compatible-p t |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
658 :code-space [0 255] |
89483 | 659 :map "CP1254") |
88555
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
660 (define-charset-alias 'cp1254 'windows-1254) |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
661 |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
662 (define-charset 'windows-1255 |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
663 "WINDOWS-1255 (Hebrew)" |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
664 :short-name "WINDOWS-1255" |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
665 :ascii-compatible-p t |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
666 :code-space [0 255] |
89483 | 667 :map "CP1255") |
88555
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
668 (define-charset-alias 'cp1255 'windows-1255) |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
669 |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
670 (define-charset 'windows-1256 |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
671 "WINDOWS-1256 (Arabic)" |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
672 :short-name "WINDOWS-1256" |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
673 :ascii-compatible-p t |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
674 :code-space [0 255] |
89483 | 675 :map "CP1256") |
88555
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
676 (define-charset-alias 'cp1256 'windows-1256) |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
677 |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
678 (define-charset 'windows-1257 |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
679 "WINDOWS-1257 (Baltic)" |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
680 :short-name "WINDOWS-1257" |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
681 :ascii-compatible-p t |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
682 :code-space [0 255] |
89483 | 683 :map "CP1257") |
88555
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
684 (define-charset-alias 'cp1257 'windows-1257) |
17070 | 685 |
88555
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
686 (define-charset 'windows-1258 |
88666 | 687 "WINDOWS-1258 (Viet Nam)" |
88555
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
688 :short-name "WINDOWS-1258" |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
689 :ascii-compatible-p t |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
690 :code-space [0 255] |
89483 | 691 :map "CP1258") |
88555
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
692 (define-charset-alias 'cp1258 'windows-1258) |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
693 |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
694 (define-charset 'next |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
695 "NEXT" |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
696 :short-name "NEXT" |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
697 :ascii-compatible-p t |
e52f0de0d5d1
(ebcdic-us, ebcdic-uk): Change map
Dave Love <fx@gnu.org>
parents:
88533
diff
changeset
|
698 :code-space [0 255] |
89483 | 699 :map "NEXTSTEP") |
17070 | 700 |
88533 | 701 (define-charset 'cp1125 |
702 "CP1125" | |
703 :short-name "CP1125" | |
704 :code-space [0 255] | |
90217
4e5457cf7dc7
(cp1125): Set :ascii-compatible-p property to t.
Kenichi Handa <handa@m17n.org>
parents:
90200
diff
changeset
|
705 :ascii-compatible-p t |
89483 | 706 :map "CP1125") |
88533 | 707 (define-charset-alias 'ruscii 'cp1125) |
708 ;; Original name for cp1125, says Serhii Hlodin <hlodin@lutsk.bank.gov.ua> | |
709 (define-charset-alias 'cp866u 'cp1125) | |
17070 | 710 |
88671 | 711 ;; Fixme: C.f. iconv, http://czyborra.com/charsets/codepages.html |
712 ;; shows this as not ASCII comptaible, with various graphics in | |
713 ;; 0x01-0x1F. | |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
714 (define-charset 'cp437 |
88671 | 715 "CP437 (MS-DOS United States, Australia, New Zealand, South Africa)" |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
716 :short-name "CP437" |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
717 :code-space [0 255] |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
718 :ascii-compatible-p t |
89483 | 719 :map "IBM437") |
17070 | 720 |
88666 | 721 (define-charset 'cp720 |
722 "CP720 (Arabic)" | |
723 :short-name "CP720" | |
724 :code-space [0 255] | |
725 :ascii-compatible-p t | |
89483 | 726 :map "CP720") |
88666 | 727 |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
728 (define-charset 'cp737 |
88671 | 729 "CP737 (PC Greek)" |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
730 :short-name "CP737" |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
731 :code-space [0 255] |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
732 :ascii-compatible-p t |
89483 | 733 :map "CP737") |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
734 |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
735 (define-charset 'cp775 |
88671 | 736 "CP775 (PC Baltic)" |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
737 :short-name "CP775" |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
738 :code-space [0 255] |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
739 :ascii-compatible-p t |
89483 | 740 :map "CP775") |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
741 |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
742 (define-charset 'cp851 |
89089 | 743 "CP851 (Greek)" |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
744 :short-name "CP851" |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
745 :code-space [0 255] |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
746 :ascii-compatible-p t |
89483 | 747 :map "IBM851") |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
748 |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
749 (define-charset 'cp852 |
88671 | 750 "CP852 (MS-DOS Latin-2)" |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
751 :short-name "CP852" |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
752 :code-space [0 255] |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
753 :ascii-compatible-p t |
89483 | 754 :map "IBM852") |
17070 | 755 |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
756 (define-charset 'cp855 |
88671 | 757 "CP855 (IBM Cyrillic)" |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
758 :short-name "CP855" |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
759 :code-space [0 255] |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
760 :ascii-compatible-p t |
89483 | 761 :map "IBM855") |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
762 |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
763 (define-charset 'cp857 |
88671 | 764 "CP857 (IBM Turkish)" |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
765 :short-name "CP857" |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
766 :code-space [0 255] |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
767 :ascii-compatible-p t |
89483 | 768 :map "IBM857") |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
769 |
88666 | 770 (define-charset 'cp858 |
771 "CP858 (Multilingual Latin I + Euro)" | |
772 :short-name "CP858" | |
773 :code-space [0 255] | |
774 :ascii-compatible-p t | |
89483 | 775 :map "CP858") |
88671 | 776 (define-charset-alias 'cp00858 'cp858) ; IANA has IBM00858/CP00858 |
17070 | 777 |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
778 (define-charset 'cp860 |
88671 | 779 "CP860 (MS-DOS Portuguese)" |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
780 :short-name "CP860" |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
781 :code-space [0 255] |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
782 :ascii-compatible-p t |
89483 | 783 :map "IBM860") |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
784 |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
785 (define-charset 'cp861 |
88671 | 786 "CP861 (MS-DOS Icelandic)" |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
787 :short-name "CP861" |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
788 :code-space [0 255] |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
789 :ascii-compatible-p t |
89483 | 790 :map "IBM861") |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
791 |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
792 (define-charset 'cp862 |
88671 | 793 "CP862 (PC Hebrew)" |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
794 :short-name "CP862" |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
795 :code-space [0 255] |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
796 :ascii-compatible-p t |
89483 | 797 :map "IBM862") |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
798 |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
799 (define-charset 'cp863 |
88671 | 800 "CP863 (MS-DOS Canadian French)" |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
801 :short-name "CP863" |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
802 :code-space [0 255] |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
803 :ascii-compatible-p t |
89483 | 804 :map "IBM863") |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
805 |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
806 (define-charset 'cp864 |
88671 | 807 "CP864 (PC Arabic)" |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
808 :short-name "CP864" |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
809 :code-space [0 255] |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
810 :ascii-compatible-p t |
89483 | 811 :map "IBM864") |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
812 |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
813 (define-charset 'cp865 |
88671 | 814 "CP865 (MS-DOS Nordic)" |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
815 :short-name "CP865" |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
816 :code-space [0 255] |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
817 :ascii-compatible-p t |
89483 | 818 :map "IBM865") |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
819 |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
820 (define-charset 'cp869 |
88671 | 821 "CP869 (IBM Modern Greek)" |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
822 :short-name "CP869" |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
823 :code-space [0 255] |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
824 :ascii-compatible-p t |
89483 | 825 :map "IBM869") |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
826 |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
827 (define-charset 'cp874 |
88671 | 828 "CP874 (IBM Thai)" |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
829 :short-name "CP874" |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
830 :code-space [0 255] |
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
831 :ascii-compatible-p t |
89483 | 832 :map "IBM874") |
17070 | 833 |
834 ;; For Arabic, we need three different types of character sets. | |
835 ;; Digits are of direction left-to-right and of width 1-column. | |
836 ;; Others are of direction right-to-left and of width 1-column or | |
837 ;; 2-column. | |
88411 | 838 (define-charset 'arabic-digit |
839 "Arabic digit" | |
840 :short-name "Arabic digit" | |
841 :iso-final-char ?2 | |
842 :emacs-mule-id 164 | |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
843 :supplementary-p t |
88411 | 844 :code-space [34 42] |
845 :code-offset #x0600) | |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
846 |
88411 | 847 (define-charset 'arabic-1-column |
848 "Arabic 1-column" | |
849 :short-name "Arabic 1-col" | |
850 :long-name "Arabic 1-column" | |
851 :iso-final-char ?3 | |
852 :emacs-mule-id 165 | |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
853 :supplementary-p t |
88411 | 854 :code-space [33 126] |
855 :code-offset #x200100) | |
856 | |
857 (define-charset 'arabic-2-column | |
858 "Arabic 2-column" | |
859 :short-name "Arabic 2-col" | |
860 :long-name "Arabic 2-column" | |
861 :iso-final-char ?4 | |
862 :emacs-mule-id 224 | |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
863 :supplementary-p t |
88411 | 864 :code-space [33 126] |
865 :code-offset #x200180) | |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
866 |
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
867 ;; Lao script. |
88411 | 868 ;; Codes 0x21..0x7E are mapped to Unicode U+0E81..U+0EDF. |
89089 | 869 ;; Not all of them are defined unicodes. |
88411 | 870 (define-charset 'lao |
871 "Lao characters (ISO10646 0E81..0EDF)" | |
872 :short-name "Lao" | |
873 :iso-final-char ?1 | |
874 :emacs-mule-id 167 | |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
875 :supplementary-p t |
88411 | 876 :code-space [33 126] |
877 :code-offset #x0E81) | |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
878 |
88411 | 879 (define-charset 'mule-lao |
880 "Lao characters (ISO10646 0E81..0EDF)" | |
881 :short-name "Lao" | |
882 :code-space [0 255] | |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
883 :supplementary-p t |
88751
809b6bfe4dfa
Adjusted for the change of define-charset (:parent -> :subset or
Kenichi Handa <handa@m17n.org>
parents:
88735
diff
changeset
|
884 :superset '(ascii eight-bit-control (lao . 128))) |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
885 |
17070 | 886 |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
887 ;; Indian scripts. Symbolic charset for data exchange. Glyphs are |
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
888 ;; not assigned. They are automatically converted to each Indian |
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
889 ;; script which IS-13194 supports. |
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
890 |
88411 | 891 (define-charset 'indian-is13194 |
892 "Generic Indian charset for data exchange with IS 13194" | |
893 :short-name "IS 13194" | |
894 :long-name "Indian IS 13194" | |
895 :iso-final-char ?5 | |
896 :emacs-mule-id 225 | |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
897 :supplementary-p t |
88411 | 898 :code-space [33 126] |
899 :code-offset #x180000) | |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
900 |
89483 | 901 (let ((code-offset #x180100)) |
902 (dolist (script '(devanagari sanskrit bengali tamil telugu assamese | |
903 oriya kannada malayalam gujarati punjabi)) | |
904 (define-charset (intern (format "%s-cdac" script)) | |
905 (format "Glyphs of %s script for CDAC font. Subset of `indian-glyph'." | |
906 (capitalize (symbol-name script))) | |
907 :short-name (format "CDAC %s glyphs" (capitalize (symbol-name script))) | |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
908 :supplementary-p t |
89483 | 909 :code-space [0 255] |
910 :code-offset code-offset) | |
911 (setq code-offset (+ code-offset #x100))) | |
41468
d566b1e9a5bb
Change indian-1-column charset to indian-glyph charset.
Richard M. Stallman <rms@gnu.org>
parents:
36686
diff
changeset
|
912 |
89483 | 913 (dolist (script '(devanagari bengali punjabi gujarati |
914 oriya tamil telugu kannada malayalam)) | |
915 (define-charset (intern (format "%s-akruti" script)) | |
916 (format "Glyphs of %s script for AKRUTI font. Subset of `indian-glyph'." | |
917 (capitalize (symbol-name script))) | |
918 :short-name (format "AKRUTI %s glyphs" (capitalize (symbol-name script))) | |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
919 :supplementary-p t |
89483 | 920 :code-space [0 255] |
921 :code-offset code-offset) | |
922 (setq code-offset (+ code-offset #x100)))) | |
89091 | 923 |
88894
9eb791116de8
Unify these charses: korean-ksc5601, ipa, tibetan, ethiopic,
Kenichi Handa <handa@m17n.org>
parents:
88843
diff
changeset
|
924 (define-charset 'indian-glyph |
88411 | 925 "Glyphs for Indian characters." |
926 :short-name "Indian glyph" | |
927 :iso-final-char ?4 | |
928 :emacs-mule-id 240 | |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
929 :supplementary-p t |
88411 | 930 :code-space [32 127 32 127] |
931 :code-offset #x180100) | |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
932 |
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
933 ;; Actual Glyph for 1-column width. |
88411 | 934 (define-charset 'indian-1-column |
89267
a9df91935aa0
(indian-is13194): Delete :unify-map
Kenichi Handa <handa@m17n.org>
parents:
89257
diff
changeset
|
935 "Indian charset for 1-column width glyphs." |
88411 | 936 :short-name "Indian 1-col" |
937 :long-name "Indian 1 Column" | |
938 :iso-final-char ?6 | |
89890
f3047b4ebf04
(indian-1-column): Fix :emacs-mule-id.
Kenichi Handa <handa@m17n.org>
parents:
89822
diff
changeset
|
939 :emacs-mule-id 251 |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
940 :supplementary-p t |
88411 | 941 :code-space [33 126 33 126] |
942 :code-offset #x184000) | |
943 | |
944 ;; Actual Glyph for 2-column width. | |
945 (define-charset 'indian-2-column | |
89267
a9df91935aa0
(indian-is13194): Delete :unify-map
Kenichi Handa <handa@m17n.org>
parents:
89257
diff
changeset
|
946 "Indian charset for 2-column width glyphs." |
88411 | 947 :short-name "Indian 2-col" |
948 :long-name "Indian 2 Column" | |
949 :iso-final-char ?5 | |
950 :emacs-mule-id 251 | |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
951 :supplementary-p t |
88411 | 952 :code-space [33 126 33 126] |
89267
a9df91935aa0
(indian-is13194): Delete :unify-map
Kenichi Handa <handa@m17n.org>
parents:
89257
diff
changeset
|
953 :code-offset #x184000) |
88411 | 954 |
955 (define-charset 'tibetan | |
956 "Tibetan characters" | |
957 :iso-final-char ?7 | |
958 :short-name "Tibetan 2-col" | |
88486 | 959 :long-name "Tibetan 2 column" |
88411 | 960 :iso-final-char ?7 |
961 :emacs-mule-id 252 | |
89483 | 962 :unify-map "MULE-tibetan" |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
963 :supplementary-p t |
89292
1bc1e30ea8d5
(tibetan): Fix :code-space property.
Kenichi Handa <handa@m17n.org>
parents:
89267
diff
changeset
|
964 :code-space [33 126 33 37] |
88411 | 965 :code-offset #x190000) |
966 | |
967 (define-charset 'tibetan-1-column | |
968 "Tibetan 1 column glyph" | |
969 :short-name "Tibetan 1-col" | |
970 :long-name "Tibetan 1 column" | |
971 :iso-final-char ?8 | |
972 :emacs-mule-id 241 | |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
973 :supplementary-p t |
88411 | 974 :code-space [33 126 33 37] |
89292
1bc1e30ea8d5
(tibetan): Fix :code-space property.
Kenichi Handa <handa@m17n.org>
parents:
89267
diff
changeset
|
975 :code-offset #x190000) |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
976 |
33044
7878d85aef6d
New charsets mule-unicode-2500-33ff and mule-unicode-e000-ffff.
Kenichi Handa <handa@m17n.org>
parents:
32786
diff
changeset
|
977 ;; Subsets of Unicode. |
88411 | 978 (define-charset 'mule-unicode-2500-33ff |
979 "Unicode characters of the range U+2500..U+33FF." | |
980 :short-name "Unicode subset 2" | |
981 :long-name "Unicode subset (U+2500..U+33FF)" | |
982 :iso-final-char ?2 | |
983 :emacs-mule-id 242 | |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
984 :supplementary-p t |
88411 | 985 :code-space [#x20 #x7f #x20 #x47] |
986 :code-offset #x2500) | |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
987 |
88411 | 988 (define-charset 'mule-unicode-e000-ffff |
989 "Unicode characters of the range U+E000..U+FFFF." | |
990 :short-name "Unicode subset 3" | |
991 :long-name "Unicode subset (U+E000+FFFF)" | |
992 :iso-final-char ?3 | |
993 :emacs-mule-id 243 | |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
994 :supplementary-p t |
88411 | 995 :code-space [#x20 #x7F #x20 #x75] |
88843 | 996 :code-offset #xE000 |
997 :max-code 30015) ; U+FFFF | |
33044
7878d85aef6d
New charsets mule-unicode-2500-33ff and mule-unicode-e000-ffff.
Kenichi Handa <handa@m17n.org>
parents:
32786
diff
changeset
|
998 |
88411 | 999 (define-charset 'mule-unicode-0100-24ff |
1000 "Unicode characters of the range U+0100..U+24FF." | |
1001 :short-name "Unicode subset" | |
1002 :long-name "Unicode subset (U+0100..U+24FF)" | |
1003 :iso-final-char ?1 | |
1004 :emacs-mule-id 244 | |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
1005 :supplementary-p t |
88411 | 1006 :code-space [#x20 #x7F #x20 #x7F] |
1007 :code-offset #x100) | |
33044
7878d85aef6d
New charsets mule-unicode-2500-33ff and mule-unicode-e000-ffff.
Kenichi Handa <handa@m17n.org>
parents:
32786
diff
changeset
|
1008 |
89089 | 1009 (define-charset 'unicode-bmp |
89797
fdc51e185411
(japanese-jisx0213.2004-1): Specify :code-space.
Kenichi Handa <handa@m17n.org>
parents:
89793
diff
changeset
|
1010 "Unicode Basic Multilingual Plane (U+0000..U+FFFF)" |
89089 | 1011 :short-name "Unicode BMP" |
1012 :code-space [0 255 0 255] | |
89356
d2e1c7e5ab1a
(unicode-bmp): Delete duplicated definition. Give it :code-offset 0.
Kenichi Handa <handa@m17n.org>
parents:
89318
diff
changeset
|
1013 :code-offset 0) |
89091 | 1014 |
89797
fdc51e185411
(japanese-jisx0213.2004-1): Specify :code-space.
Kenichi Handa <handa@m17n.org>
parents:
89793
diff
changeset
|
1015 (define-charset 'unicode-smp |
fdc51e185411
(japanese-jisx0213.2004-1): Specify :code-space.
Kenichi Handa <handa@m17n.org>
parents:
89793
diff
changeset
|
1016 "Unicode Supplementary Multilingual Plane (U+10000..U+1FFFF)" |
fdc51e185411
(japanese-jisx0213.2004-1): Specify :code-space.
Kenichi Handa <handa@m17n.org>
parents:
89793
diff
changeset
|
1017 :short-name "Unicode SMP " |
fdc51e185411
(japanese-jisx0213.2004-1): Specify :code-space.
Kenichi Handa <handa@m17n.org>
parents:
89793
diff
changeset
|
1018 :code-space [0 255 0 255] |
fdc51e185411
(japanese-jisx0213.2004-1): Specify :code-space.
Kenichi Handa <handa@m17n.org>
parents:
89793
diff
changeset
|
1019 :code-offset #x10000) |
fdc51e185411
(japanese-jisx0213.2004-1): Specify :code-space.
Kenichi Handa <handa@m17n.org>
parents:
89793
diff
changeset
|
1020 |
fdc51e185411
(japanese-jisx0213.2004-1): Specify :code-space.
Kenichi Handa <handa@m17n.org>
parents:
89793
diff
changeset
|
1021 (define-charset 'unicode-sip |
fdc51e185411
(japanese-jisx0213.2004-1): Specify :code-space.
Kenichi Handa <handa@m17n.org>
parents:
89793
diff
changeset
|
1022 "Unicode Supplementary Ideographic Plane (U+20000..U+2FFFF)" |
fdc51e185411
(japanese-jisx0213.2004-1): Specify :code-space.
Kenichi Handa <handa@m17n.org>
parents:
89793
diff
changeset
|
1023 :short-name "Unicode SIP" |
fdc51e185411
(japanese-jisx0213.2004-1): Specify :code-space.
Kenichi Handa <handa@m17n.org>
parents:
89793
diff
changeset
|
1024 :code-space [0 255 0 255] |
fdc51e185411
(japanese-jisx0213.2004-1): Specify :code-space.
Kenichi Handa <handa@m17n.org>
parents:
89793
diff
changeset
|
1025 :code-offset #x20000) |
33044
7878d85aef6d
New charsets mule-unicode-2500-33ff and mule-unicode-e000-ffff.
Kenichi Handa <handa@m17n.org>
parents:
32786
diff
changeset
|
1026 |
89797
fdc51e185411
(japanese-jisx0213.2004-1): Specify :code-space.
Kenichi Handa <handa@m17n.org>
parents:
89793
diff
changeset
|
1027 (define-charset 'unicode-ssp |
fdc51e185411
(japanese-jisx0213.2004-1): Specify :code-space.
Kenichi Handa <handa@m17n.org>
parents:
89793
diff
changeset
|
1028 "Unicode Supplementary Special-purpose Plane (U+E0000..U+EFFFF)" |
fdc51e185411
(japanese-jisx0213.2004-1): Specify :code-space.
Kenichi Handa <handa@m17n.org>
parents:
89793
diff
changeset
|
1029 :short-name "Unicode SSP" |
fdc51e185411
(japanese-jisx0213.2004-1): Specify :code-space.
Kenichi Handa <handa@m17n.org>
parents:
89793
diff
changeset
|
1030 :code-space [0 255 0 255] |
fdc51e185411
(japanese-jisx0213.2004-1): Specify :code-space.
Kenichi Handa <handa@m17n.org>
parents:
89793
diff
changeset
|
1031 :code-offset #xE0000) |
33044
7878d85aef6d
New charsets mule-unicode-2500-33ff and mule-unicode-e000-ffff.
Kenichi Handa <handa@m17n.org>
parents:
32786
diff
changeset
|
1032 |
88411 | 1033 (define-charset 'ethiopic |
88486 | 1034 "Ethiopic characters for Amharic and Tigrigna." |
88411 | 1035 :short-name "Ethiopic" |
1036 :long-name "Ethiopic characters" | |
1037 :iso-final-char ?3 | |
1038 :emacs-mule-id 245 | |
91197
a7ee91d853bc
Flag many charsets as supplementary.
Kenichi Handa <handa@m17n.org>
parents:
91116
diff
changeset
|
1039 :supplementary-p t |
89483 | 1040 :unify-map "MULE-ethiopic" |
88411 | 1041 :code-space [33 126 33 126] |
1042 :code-offset #x1A0000) | |
17070 | 1043 |
88411 | 1044 (define-charset 'mac-roman |
1045 "Mac Roman charset" | |
1046 :short-name "Mac Roman" | |
1047 :ascii-compatible-p t | |
1048 :code-space [0 255] | |
89483 | 1049 :map "MACINTOSH") |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
1050 |
88533 | 1051 ;; Fixme: modern EBCDIC variants, e.g. IBM00924? |
1052 (define-charset 'ebcdic-us | |
1053 "US version of EBCDIC" | |
1054 :short-name "EBCDIC-US" | |
1055 :code-space [0 255] | |
1056 :mime-charset 'ebcdic-us | |
89483 | 1057 :map "EBCDICUS") |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
1058 |
88533 | 1059 (define-charset 'ebcdic-uk |
1060 "UK version of EBCDIC" | |
1061 :short-name "EBCDIC-UK" | |
1062 :code-space [0 255] | |
1063 :mime-charset 'ebcdic-uk | |
89483 | 1064 :map "EBCDICUK") |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
1065 |
89200 | 1066 (define-charset 'ibm1047 |
1067 ;; Says groff: | |
89389
b6e224aa7da6
(big5-hkscs, georgian-academy): New
Dave Love <fx@gnu.org>
parents:
89356
diff
changeset
|
1068 "IBM1047, `EBCDIC Latin 1/Open Systems' used by OS/390 Unix." |
89200 | 1069 :short-name "IBM1047" |
1070 :code-space [0 255] | |
1071 :mime-charset 'ibm1047 | |
89483 | 1072 :map "IBM1047") |
89200 | 1073 (define-charset-alias 'cp1047 'ibm1047) |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
1074 |
88575 | 1075 (define-charset 'hp-roman8 |
1076 "Encoding used by Hewlet-Packard printer software" | |
1077 :short-name "HP-ROMAN8" | |
1078 :ascii-compatible-p t | |
1079 :code-space [0 255] | |
89483 | 1080 :map "HP-ROMAN8") |
17070 | 1081 |
88671 | 1082 ;; To make a coding system with this, a pre-write-conversion should |
1083 ;; account for the commented-out multi-valued code points in | |
1084 ;; stdenc.map. | |
88575 | 1085 (define-charset 'adobe-standard-encoding |
1086 "Adobe `standard encoding' used in PostScript" | |
1087 :short-name "ADOBE-STANDARD-ENCODING" | |
88591
b8eb49355bfe
(adobe-standard-encoding, symbol):
Dave Love <fx@gnu.org>
parents:
88588
diff
changeset
|
1088 :code-space [#x20 255] |
88575 | 1089 :map "stdenc") |
17070 | 1090 |
88575 | 1091 (define-charset 'symbol |
1092 "Adobe symbol encoding used in PostScript" | |
1093 :short-name "ADOBE-SYMBOL" | |
88591
b8eb49355bfe
(adobe-standard-encoding, symbol):
Dave Love <fx@gnu.org>
parents:
88588
diff
changeset
|
1094 :code-space [#x20 255] |
88575 | 1095 :map "symbol") |
1096 | |
1097 (define-charset 'ibm850 | |
88671 | 1098 "DOS codepage 850 (Latin-1)" |
88575 | 1099 :short-name "IBM850" |
88591
b8eb49355bfe
(adobe-standard-encoding, symbol):
Dave Love <fx@gnu.org>
parents:
88588
diff
changeset
|
1100 :ascii-compatible-p t |
88575 | 1101 :code-space [0 255] |
89483 | 1102 :map "IBM850") |
88575 | 1103 (define-charset-alias 'cp850 'ibm850) |
1104 | |
89318 | 1105 (define-charset 'mik |
1106 "Bulgarian DOS codepage" | |
1107 :short-name "MIK" | |
1108 :ascii-compatible-p t | |
1109 :code-space [0 255] | |
89483 | 1110 :map "MIK") |
89318 | 1111 |
89483 | 1112 (define-charset 'ptcp154 |
89318 | 1113 "`Paratype' codepage (Asian Cyrillic)" |
1114 :short-name "PT154" | |
1115 :ascii-compatible-p t | |
1116 :code-space [0 255] | |
89389
b6e224aa7da6
(big5-hkscs, georgian-academy): New
Dave Love <fx@gnu.org>
parents:
89356
diff
changeset
|
1117 :mime-charset 'pt154 |
89483 | 1118 :map "PTCP154") |
1119 (define-charset-alias 'pt154 'ptcp154) | |
1120 (define-charset-alias 'cp154 'ptcp154) | |
89318 | 1121 |
88675
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1122 (define-charset 'gb18030-2-byte |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1123 "GB18030 2-byte (0x814E..0xFEFE)" |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1124 :code-space [#x40 #xFE #x81 #xFE] |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1125 :supplementary-p t |
89483 | 1126 :map "GB180302") |
88675
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1127 |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1128 (define-charset 'gb18030-4-byte-bmp |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1129 "GB18030 4-byte for BMP (0x81308130-0x8431A439)" |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1130 :code-space [#x30 #x39 #x81 #xFE #x30 #x39 #x81 #x84] |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1131 :supplementary-p t |
89483 | 1132 :map "GB180304") |
88675
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1133 |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1134 (define-charset 'gb18030-4-byte-smp |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1135 "GB18030 4-byte for SMP (0x90308130-0xE3329A35)" |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1136 :code-space [#x30 #x39 #x81 #xFE #x30 #x39 #x90 #xE3] |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1137 :min-code '(#x9030 . #x8130) |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1138 :max-code '(#xE332 . #x9A35) |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1139 :supplementary-p t |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1140 :code-offset #x10000) |
17070 | 1141 |
88675
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1142 (define-charset 'gb18030-4-byte-ext-1 |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1143 "GB18030 4-byte (0x8431A530-0x8F39FE39)" |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1144 :code-space [#x30 #x39 #x81 #xFE #x30 #x39 #x84 #x8F] |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1145 :min-code '(#x8431 . #xA530) |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1146 :max-code '(#x8F39 . #xFE39) |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1147 :supplementary-p t |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1148 :code-offset #x200000 ; ... #x22484B |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1149 ) |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1150 |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1151 (define-charset 'gb18030-4-byte-ext-2 |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1152 "GB18030 4-byte (0xE3329A36-0xFE39FE39)" |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1153 :code-space [#x30 #x39 #x81 #xFE #x30 #x39 #xE3 #xFE] |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1154 :min-code '(#xE332 . #x9A36) |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1155 :max-code '(#xFE39 . #xFE39) |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1156 :supplementary-p t |
89822
c6d196788a1c
(chinese-cns11643-15): New charset.
Kenichi Handa <handa@m17n.org>
parents:
89797
diff
changeset
|
1157 :code-offset #x22484C ; ... #x279f93 |
88675
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1158 ) |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1159 |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1160 (define-charset 'gb18030 |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1161 "GB18030" |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1162 :code-space [#x00 #xFF #x00 #xFE #x00 #xFE #x00 #xFE] |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1163 :min-code 0 |
20cca396a8ee
(chinese-gbk): Change :code-offset to
Kenichi Handa <handa@m17n.org>
parents:
88671
diff
changeset
|
1164 :max-code '(#xFE39 . #xFE39) |
88751
809b6bfe4dfa
Adjusted for the change of define-charset (:parent -> :subset or
Kenichi Handa <handa@m17n.org>
parents:
88735
diff
changeset
|
1165 :superset '(ascii gb18030-2-byte |
809b6bfe4dfa
Adjusted for the change of define-charset (:parent -> :subset or
Kenichi Handa <handa@m17n.org>
parents:
88735
diff
changeset
|
1166 gb18030-4-byte-bmp gb18030-4-byte-smp |
809b6bfe4dfa
Adjusted for the change of define-charset (:parent -> :subset or
Kenichi Handa <handa@m17n.org>
parents:
88735
diff
changeset
|
1167 gb18030-4-byte-ext-1 gb18030-4-byte-ext-2)) |
17070 | 1168 |
89822
c6d196788a1c
(chinese-cns11643-15): New charset.
Kenichi Handa <handa@m17n.org>
parents:
89797
diff
changeset
|
1169 (define-charset 'chinese-cns11643-15 |
c6d196788a1c
(chinese-cns11643-15): New charset.
Kenichi Handa <handa@m17n.org>
parents:
89797
diff
changeset
|
1170 "CNS11643 Plane 15 Chinese Traditional" |
c6d196788a1c
(chinese-cns11643-15): New charset.
Kenichi Handa <handa@m17n.org>
parents:
89797
diff
changeset
|
1171 :short-name "CNS11643-15" |
c6d196788a1c
(chinese-cns11643-15): New charset.
Kenichi Handa <handa@m17n.org>
parents:
89797
diff
changeset
|
1172 :long-name "CNS11643-15 (Chinese traditional)" |
c6d196788a1c
(chinese-cns11643-15): New charset.
Kenichi Handa <handa@m17n.org>
parents:
89797
diff
changeset
|
1173 :code-space [33 126 33 126] |
c6d196788a1c
(chinese-cns11643-15): New charset.
Kenichi Handa <handa@m17n.org>
parents:
89797
diff
changeset
|
1174 :code-offset #x27A000) |
29167
7b645b883dcb
Specify CHARSET-ID explicitely for private charsets.
Kenichi Handa <handa@m17n.org>
parents:
28951
diff
changeset
|
1175 |
88411 | 1176 (unify-charset 'chinese-gb2312) |
88451
33d9bd9d6aa7
(chinese-gbk): New charset.
Kenichi Handa <handa@m17n.org>
parents:
88440
diff
changeset
|
1177 (unify-charset 'chinese-gbk) |
88411 | 1178 (unify-charset 'chinese-cns11643-1) |
1179 (unify-charset 'chinese-cns11643-2) | |
89483 | 1180 (unify-charset 'chinese-cns11643-3) |
1181 (unify-charset 'chinese-cns11643-4) | |
1182 (unify-charset 'chinese-cns11643-5) | |
1183 (unify-charset 'chinese-cns11643-6) | |
1184 (unify-charset 'chinese-cns11643-7) | |
88411 | 1185 (unify-charset 'big5) |
1186 (unify-charset 'chinese-big5-1) | |
1187 (unify-charset 'chinese-big5-2) | |
89483 | 1188 (unify-charset 'big5-hkscs) |
1189 (unify-charset 'korean-ksc5601) | |
88588
2516c98d56d2
(vietnamese-viscii-lower, vietnamese-viscii-upper): Supply them
Kenichi Handa <handa@m17n.org>
parents:
88575
diff
changeset
|
1190 (unify-charset 'vietnamese-viscii-lower) |
2516c98d56d2
(vietnamese-viscii-lower, vietnamese-viscii-upper): Supply them
Kenichi Handa <handa@m17n.org>
parents:
88575
diff
changeset
|
1191 (unify-charset 'vietnamese-viscii-upper) |
88760 | 1192 (unify-charset 'chinese-sisheng) |
88894
9eb791116de8
Unify these charses: korean-ksc5601, ipa, tibetan, ethiopic,
Kenichi Handa <handa@m17n.org>
parents:
88843
diff
changeset
|
1193 (unify-charset 'ipa) |
9eb791116de8
Unify these charses: korean-ksc5601, ipa, tibetan, ethiopic,
Kenichi Handa <handa@m17n.org>
parents:
88843
diff
changeset
|
1194 (unify-charset 'tibetan) |
9eb791116de8
Unify these charses: korean-ksc5601, ipa, tibetan, ethiopic,
Kenichi Handa <handa@m17n.org>
parents:
88843
diff
changeset
|
1195 (unify-charset 'ethiopic) |
89483 | 1196 (unify-charset 'japanese-jisx0208-1978) |
88894
9eb791116de8
Unify these charses: korean-ksc5601, ipa, tibetan, ethiopic,
Kenichi Handa <handa@m17n.org>
parents:
88843
diff
changeset
|
1197 (unify-charset 'japanese-jisx0208) |
9eb791116de8
Unify these charses: korean-ksc5601, ipa, tibetan, ethiopic,
Kenichi Handa <handa@m17n.org>
parents:
88843
diff
changeset
|
1198 (unify-charset 'japanese-jisx0212) |
9eb791116de8
Unify these charses: korean-ksc5601, ipa, tibetan, ethiopic,
Kenichi Handa <handa@m17n.org>
parents:
88843
diff
changeset
|
1199 (unify-charset 'japanese-jisx0213-1) |
9eb791116de8
Unify these charses: korean-ksc5601, ipa, tibetan, ethiopic,
Kenichi Handa <handa@m17n.org>
parents:
88843
diff
changeset
|
1200 (unify-charset 'japanese-jisx0213-2) |
17070 | 1201 |
1202 | |
22126
97cf1cae1971
Change term unification to
Kenichi Handa <handa@m17n.org>
parents:
21713
diff
changeset
|
1203 ;; These are tables for translating characters on decoding and |
97cf1cae1971
Change term unification to
Kenichi Handa <handa@m17n.org>
parents:
21713
diff
changeset
|
1204 ;; encoding. |
88760 | 1205 ;; Fixme: these aren't used now -- should they be? |
88411 | 1206 (setq standard-translation-table-for-decode nil) |
17760
b3d62674b210
Delete code for alternate-charset-table.
Kenichi Handa <handa@m17n.org>
parents:
17541
diff
changeset
|
1207 |
22186
fc4aaf1b1772
Change term "character translation table" to "translation table".
Kenichi Handa <handa@m17n.org>
parents:
22126
diff
changeset
|
1208 (setq standard-translation-table-for-encode nil) |
17760
b3d62674b210
Delete code for alternate-charset-table.
Kenichi Handa <handa@m17n.org>
parents:
17541
diff
changeset
|
1209 |
17070 | 1210 ;;; Make fundamental coding systems. |
1211 | |
90039
67146244da43
New coding system aliases unix, dos, and mac.
Kenichi Handa <handa@m17n.org>
parents:
90009
diff
changeset
|
1212 ;; The coding system `no-conversion' and `undecided' are already |
67146244da43
New coding system aliases unix, dos, and mac.
Kenichi Handa <handa@m17n.org>
parents:
90009
diff
changeset
|
1213 ;; defined in coding.c as below: |
88411 | 1214 ;; |
1215 ;; (define-coding-system 'no-conversion | |
90039
67146244da43
New coding system aliases unix, dos, and mac.
Kenichi Handa <handa@m17n.org>
parents:
90009
diff
changeset
|
1216 ;; "..." |
88411 | 1217 ;; :coding-type 'raw-text |
90039
67146244da43
New coding system aliases unix, dos, and mac.
Kenichi Handa <handa@m17n.org>
parents:
90009
diff
changeset
|
1218 ;; ...) |
67146244da43
New coding system aliases unix, dos, and mac.
Kenichi Handa <handa@m17n.org>
parents:
90009
diff
changeset
|
1219 ;; (define-coding-system 'undecided |
67146244da43
New coding system aliases unix, dos, and mac.
Kenichi Handa <handa@m17n.org>
parents:
90009
diff
changeset
|
1220 ;; "..." |
67146244da43
New coding system aliases unix, dos, and mac.
Kenichi Handa <handa@m17n.org>
parents:
90009
diff
changeset
|
1221 ;; :coding-type 'undecided |
67146244da43
New coding system aliases unix, dos, and mac.
Kenichi Handa <handa@m17n.org>
parents:
90009
diff
changeset
|
1222 ;; ...) |
17070 | 1223 |
18529
8e293f1a19a9
(binary): Define as coding system alias.
Richard M. Stallman <rms@gnu.org>
parents:
18519
diff
changeset
|
1224 (define-coding-system-alias 'binary 'no-conversion) |
29543
4711a63436ee
(unix): New alias for the coding system undecided-unix.
Kenichi Handa <handa@m17n.org>
parents:
29167
diff
changeset
|
1225 (define-coding-system-alias 'unix 'undecided-unix) |
24120
372fcaa211c4
Coding system alias `dos' for `undecided-dos', `mac' for `undecided-mac'.
Richard M. Stallman <rms@gnu.org>
parents:
23260
diff
changeset
|
1226 (define-coding-system-alias 'dos 'undecided-dos) |
372fcaa211c4
Coding system alias `dos' for `undecided-dos', `mac' for `undecided-mac'.
Richard M. Stallman <rms@gnu.org>
parents:
23260
diff
changeset
|
1227 (define-coding-system-alias 'mac 'undecided-mac) |
372fcaa211c4
Coding system alias `dos' for `undecided-dos', `mac' for `undecided-mac'.
Richard M. Stallman <rms@gnu.org>
parents:
23260
diff
changeset
|
1228 |
88411 | 1229 (define-coding-system 'raw-text |
89483 | 1230 "Raw text, which means text contains random 8-bit codes. |
36518
60e98df5c4ce
(emacs-mule, raw-text): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
35805
diff
changeset
|
1231 Encoding text with this coding system produces the actual byte |
60e98df5c4ce
(emacs-mule, raw-text): Docstring modified.
Kenichi Handa <handa@m17n.org>
parents:
35805
diff
changeset
|
1232 sequence of the text in buffers and strings. An exception is made for |
101243
db187f66982f
(raw-text, eight-bit): Doc fixes.
Eli Zaretskii <eliz@gnu.org>
parents:
100908
diff
changeset
|
1233 characters from the `eight-bit' character set. Each of them is encoded |
db187f66982f
(raw-text, eight-bit): Doc fixes.
Eli Zaretskii <eliz@gnu.org>
parents:
100908
diff
changeset
|
1234 into a single byte. |
36686
9688519d51d6
(no-conversion): Fix docstring.
Kenichi Handa <handa@m17n.org>
parents:
36518
diff
changeset
|
1235 |
9688519d51d6
(no-conversion): Fix docstring.
Kenichi Handa <handa@m17n.org>
parents:
36518
diff
changeset
|
1236 When you visit a file with this coding, the file is read into a |
9688519d51d6
(no-conversion): Fix docstring.
Kenichi Handa <handa@m17n.org>
parents:
36518
diff
changeset
|
1237 unibyte buffer as is (except for EOL format), thus each byte of a file |
9688519d51d6
(no-conversion): Fix docstring.
Kenichi Handa <handa@m17n.org>
parents:
36518
diff
changeset
|
1238 is treated as a character." |
89483 | 1239 :coding-type 'raw-text |
1240 :for-unibyte t | |
1241 :mnemonic ?t) | |
88411 | 1242 |
89483 | 1243 (define-coding-system 'no-conversion-multibyte |
1244 "Like `no-conversion' but don't read a file into a unibyte buffer." | |
1245 :coding-type 'raw-text | |
1246 :eol-type 'unix | |
1247 :mnemonic ?=) | |
104241
5380bb5744ff
(utf-16be-with-signature): Doc fix.
Juri Linkov <juri@jurta.org>
parents:
103439
diff
changeset
|
1248 |
88411 | 1249 (define-coding-system 'iso-latin-1 |
1250 "ISO 2022 based 8-bit encoding for Latin-1 (MIME:ISO-8859-1)." | |
89091 | 1251 :coding-type 'charset |
88411 | 1252 :mnemonic ?1 |
89091 | 1253 :charset-list '(iso-8859-1) |
88411 | 1254 :mime-charset 'iso-8859-1) |
1255 | |
1256 (define-coding-system-alias 'iso-8859-1 'iso-latin-1) | |
1257 (define-coding-system-alias 'latin-1 'iso-latin-1) | |
19607
ea0964347a40
(raw-text): New coding system. Set
Kenichi Handa <handa@m17n.org>
parents:
19372
diff
changeset
|
1258 |
88411 | 1259 ;; Coding systems not specific to each language environment. |
1260 | |
1261 (define-coding-system 'emacs-mule | |
1262 "Emacs 21 internal format used in buffer and string." | |
1263 :coding-type 'emacs-mule | |
89102
1365cbd31156
(emacs-mule, iso-2022-7bit)
Kenichi Handa <handa@m17n.org>
parents:
89091
diff
changeset
|
1264 :charset-list 'emacs-mule |
88411 | 1265 :mnemonic ?M) |
19607
ea0964347a40
(raw-text): New coding system. Set
Kenichi Handa <handa@m17n.org>
parents:
19372
diff
changeset
|
1266 |
88411 | 1267 (define-coding-system 'utf-8 |
95399
3a9b63459609
(utf-8-sig, utf-8-auto): New coding systems.
Kenichi Handa <handa@m17n.org>
parents:
95262
diff
changeset
|
1268 "UTF-8 (no signature (BOM))" |
88411 | 1269 :coding-type 'utf-8 |
1270 :mnemonic ?U | |
89041
2ce9656d788b
(utf-8): Give :mime-charset property.
Kenichi Handa <handa@m17n.org>
parents:
88894
diff
changeset
|
1271 :charset-list '(unicode) |
2ce9656d788b
(utf-8): Give :mime-charset property.
Kenichi Handa <handa@m17n.org>
parents:
88894
diff
changeset
|
1272 :mime-charset 'utf-8) |
88411 | 1273 |
95408
9cc865eba421
(utf-8-with-signature): Renamed from utf-8-sig.
Kenichi Handa <handa@m17n.org>
parents:
95399
diff
changeset
|
1274 (define-coding-system 'utf-8-with-signature |
95399
3a9b63459609
(utf-8-sig, utf-8-auto): New coding systems.
Kenichi Handa <handa@m17n.org>
parents:
95262
diff
changeset
|
1275 "UTF-8 (with signature (BOM))" |
3a9b63459609
(utf-8-sig, utf-8-auto): New coding systems.
Kenichi Handa <handa@m17n.org>
parents:
95262
diff
changeset
|
1276 :coding-type 'utf-8 |
3a9b63459609
(utf-8-sig, utf-8-auto): New coding systems.
Kenichi Handa <handa@m17n.org>
parents:
95262
diff
changeset
|
1277 :mnemonic ?U |
3a9b63459609
(utf-8-sig, utf-8-auto): New coding systems.
Kenichi Handa <handa@m17n.org>
parents:
95262
diff
changeset
|
1278 :charset-list '(unicode) |
3a9b63459609
(utf-8-sig, utf-8-auto): New coding systems.
Kenichi Handa <handa@m17n.org>
parents:
95262
diff
changeset
|
1279 :bom t) |
3a9b63459609
(utf-8-sig, utf-8-auto): New coding systems.
Kenichi Handa <handa@m17n.org>
parents:
95262
diff
changeset
|
1280 |
3a9b63459609
(utf-8-sig, utf-8-auto): New coding systems.
Kenichi Handa <handa@m17n.org>
parents:
95262
diff
changeset
|
1281 (define-coding-system 'utf-8-auto |
3a9b63459609
(utf-8-sig, utf-8-auto): New coding systems.
Kenichi Handa <handa@m17n.org>
parents:
95262
diff
changeset
|
1282 "UTF-8 (auto-detect signature (BOM))" |
3a9b63459609
(utf-8-sig, utf-8-auto): New coding systems.
Kenichi Handa <handa@m17n.org>
parents:
95262
diff
changeset
|
1283 :coding-type 'utf-8 |
3a9b63459609
(utf-8-sig, utf-8-auto): New coding systems.
Kenichi Handa <handa@m17n.org>
parents:
95262
diff
changeset
|
1284 :mnemonic ?U |
3a9b63459609
(utf-8-sig, utf-8-auto): New coding systems.
Kenichi Handa <handa@m17n.org>
parents:
95262
diff
changeset
|
1285 :charset-list '(unicode) |
95408
9cc865eba421
(utf-8-with-signature): Renamed from utf-8-sig.
Kenichi Handa <handa@m17n.org>
parents:
95399
diff
changeset
|
1286 :bom '(utf-8-with-signature . utf-8)) |
95399
3a9b63459609
(utf-8-sig, utf-8-auto): New coding systems.
Kenichi Handa <handa@m17n.org>
parents:
95262
diff
changeset
|
1287 |
88411 | 1288 (define-coding-system-alias 'mule-utf-8 'utf-8) |
1289 | |
1290 (define-coding-system 'utf-8-emacs | |
88468 | 1291 "Support for all Emacs characters (including non-Unicode characters)." |
88411 | 1292 :coding-type 'utf-8 |
1293 :mnemonic ?U | |
89244
bf10578caec8
(utf-8-emacs): Delete :mime-charset.
Dave Love <fx@gnu.org>
parents:
89200
diff
changeset
|
1294 :charset-list '(emacs)) |
88411 | 1295 |
98849
260217a5e2e4
(emacs-internal): New coding system alias.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
98777
diff
changeset
|
1296 ;; The encoding used internally. This encoding is meant to be able to save |
260217a5e2e4
(emacs-internal): New coding system alias.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
98777
diff
changeset
|
1297 ;; any multibyte buffer without losing information. It can change between |
260217a5e2e4
(emacs-internal): New coding system alias.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
98777
diff
changeset
|
1298 ;; Emacs releases, tho, so should only be used for internal files. |
260217a5e2e4
(emacs-internal): New coding system alias.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
98777
diff
changeset
|
1299 (define-coding-system-alias 'emacs-internal 'utf-8-emacs-unix) |
260217a5e2e4
(emacs-internal): New coding system alias.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
98777
diff
changeset
|
1300 |
89436 | 1301 (define-coding-system 'utf-16le |
89475
d6468503c001
(utf-16-be): Make it an alias of utf-16be-with-signature.
Kenichi Handa <handa@m17n.org>
parents:
89436
diff
changeset
|
1302 "UTF-16LE (little endian, no signature (BOM))." |
88411 | 1303 :coding-type 'utf-16 |
1304 :mnemonic ?U | |
88503 | 1305 :charset-list '(unicode) |
89403
e7eb0fa7dce7
(utf-16-le): Renamed from utf-16-le-nosig.
Kenichi Handa <handa@m17n.org>
parents:
89389
diff
changeset
|
1306 :endian 'little |
89436 | 1307 :mime-text-unsuitable t |
89403
e7eb0fa7dce7
(utf-16-le): Renamed from utf-16-le-nosig.
Kenichi Handa <handa@m17n.org>
parents:
89389
diff
changeset
|
1308 :mime-charset 'utf-16le) |
17070 | 1309 |
89436 | 1310 (define-coding-system 'utf-16be |
89475
d6468503c001
(utf-16-be): Make it an alias of utf-16be-with-signature.
Kenichi Handa <handa@m17n.org>
parents:
89436
diff
changeset
|
1311 "UTF-16BE (big endian, no signature (BOM))." |
88411 | 1312 :coding-type 'utf-16 |
1313 :mnemonic ?U | |
1314 :charset-list '(unicode) | |
89422 | 1315 :endian 'big |
89436 | 1316 :mime-text-unsuitable t |
89403
e7eb0fa7dce7
(utf-16-le): Renamed from utf-16-le-nosig.
Kenichi Handa <handa@m17n.org>
parents:
89389
diff
changeset
|
1317 :mime-charset 'utf-16be) |
17070 | 1318 |
89436 | 1319 (define-coding-system 'utf-16le-with-signature |
89475
d6468503c001
(utf-16-be): Make it an alias of utf-16be-with-signature.
Kenichi Handa <handa@m17n.org>
parents:
89436
diff
changeset
|
1320 "UTF-16 (little endian, with signature (BOM))." |
88411 | 1321 :coding-type 'utf-16 |
1322 :mnemonic ?U | |
1323 :charset-list '(unicode) | |
88440
5b1dd2e30f16
(utf-16-le): Use :bom attribute instead of :signature.
Kenichi Handa <handa@m17n.org>
parents:
88411
diff
changeset
|
1324 :bom t |
88503 | 1325 :endian 'little |
89436 | 1326 :mime-text-unsuitable t |
89403
e7eb0fa7dce7
(utf-16-le): Renamed from utf-16-le-nosig.
Kenichi Handa <handa@m17n.org>
parents:
89389
diff
changeset
|
1327 :mime-charset 'utf-16) |
17070 | 1328 |
89436 | 1329 (define-coding-system 'utf-16be-with-signature |
104241
5380bb5744ff
(utf-16be-with-signature): Doc fix.
Juri Linkov <juri@jurta.org>
parents:
103439
diff
changeset
|
1330 "UTF-16 (big endian, with signature (BOM))." |
88411 | 1331 :coding-type 'utf-16 |
1332 :mnemonic ?U | |
1333 :charset-list '(unicode) | |
88440
5b1dd2e30f16
(utf-16-le): Use :bom attribute instead of :signature.
Kenichi Handa <handa@m17n.org>
parents:
88411
diff
changeset
|
1334 :bom t |
89422 | 1335 :endian 'big |
89436 | 1336 :mime-text-unsuitable t |
89403
e7eb0fa7dce7
(utf-16-le): Renamed from utf-16-le-nosig.
Kenichi Handa <handa@m17n.org>
parents:
89389
diff
changeset
|
1337 :mime-charset 'utf-16) |
e7eb0fa7dce7
(utf-16-le): Renamed from utf-16-le-nosig.
Kenichi Handa <handa@m17n.org>
parents:
89389
diff
changeset
|
1338 |
e7eb0fa7dce7
(utf-16-le): Renamed from utf-16-le-nosig.
Kenichi Handa <handa@m17n.org>
parents:
89389
diff
changeset
|
1339 (define-coding-system 'utf-16 |
89475
d6468503c001
(utf-16-be): Make it an alias of utf-16be-with-signature.
Kenichi Handa <handa@m17n.org>
parents:
89436
diff
changeset
|
1340 "UTF-16 (detect endian on decoding, use big endian on encoding with BOM)." |
89403
e7eb0fa7dce7
(utf-16-le): Renamed from utf-16-le-nosig.
Kenichi Handa <handa@m17n.org>
parents:
89389
diff
changeset
|
1341 :coding-type 'utf-16 |
e7eb0fa7dce7
(utf-16-le): Renamed from utf-16-le-nosig.
Kenichi Handa <handa@m17n.org>
parents:
89389
diff
changeset
|
1342 :mnemonic ?U |
e7eb0fa7dce7
(utf-16-le): Renamed from utf-16-le-nosig.
Kenichi Handa <handa@m17n.org>
parents:
89389
diff
changeset
|
1343 :charset-list '(unicode) |
89436 | 1344 :bom '(utf-16le-with-signature . utf-16be-with-signature) |
89422 | 1345 :endian 'big |
89436 | 1346 :mime-text-unsuitable t |
89403
e7eb0fa7dce7
(utf-16-le): Renamed from utf-16-le-nosig.
Kenichi Handa <handa@m17n.org>
parents:
89389
diff
changeset
|
1347 :mime-charset 'utf-16) |
17070 | 1348 |
89436 | 1349 ;; Backwards compatibility (old names, also used by Mule-UCS). We |
1350 ;; prefer the MIME names. | |
89475
d6468503c001
(utf-16-be): Make it an alias of utf-16be-with-signature.
Kenichi Handa <handa@m17n.org>
parents:
89436
diff
changeset
|
1351 (define-coding-system-alias 'utf-16-le 'utf-16le-with-signature) |
d6468503c001
(utf-16-be): Make it an alias of utf-16be-with-signature.
Kenichi Handa <handa@m17n.org>
parents:
89436
diff
changeset
|
1352 (define-coding-system-alias 'utf-16-be 'utf-16be-with-signature) |
d6468503c001
(utf-16-be): Make it an alias of utf-16be-with-signature.
Kenichi Handa <handa@m17n.org>
parents:
89436
diff
changeset
|
1353 |
89436 | 1354 |
88411 | 1355 (define-coding-system 'iso-2022-7bit |
88647 | 1356 "ISO 2022 based 7-bit encoding using only G0." |
88411 | 1357 :coding-type 'iso-2022 |
1358 :mnemonic ?J | |
89102
1365cbd31156
(emacs-mule, iso-2022-7bit)
Kenichi Handa <handa@m17n.org>
parents:
89091
diff
changeset
|
1359 :charset-list 'iso-2022 |
88411 | 1360 :designation [(ascii t) nil nil nil] |
1361 :flags '(short ascii-at-eol ascii-at-cntl 7-bit designation composition)) | |
1362 | |
1363 (define-coding-system 'iso-2022-7bit-ss2 | |
88647 | 1364 "ISO 2022 based 7-bit encoding using SS2 for 96-charset." |
88411 | 1365 :coding-type 'iso-2022 |
1366 :mnemonic ?$ | |
89102
1365cbd31156
(emacs-mule, iso-2022-7bit)
Kenichi Handa <handa@m17n.org>
parents:
89091
diff
changeset
|
1367 :charset-list 'iso-2022 |
88411 | 1368 :designation [(ascii 94) nil (nil 96) nil] |
1369 :flags '(short ascii-at-eol ascii-at-cntl 7-bit | |
1370 designation single-shift composition)) | |
1371 | |
1372 (define-coding-system 'iso-2022-7bit-lock | |
88647 | 1373 "ISO-2022 coding system using Locking-Shift for 96-charset." |
88411 | 1374 :coding-type 'iso-2022 |
1375 :mnemonic ?& | |
89102
1365cbd31156
(emacs-mule, iso-2022-7bit)
Kenichi Handa <handa@m17n.org>
parents:
89091
diff
changeset
|
1376 :charset-list 'iso-2022 |
88411 | 1377 :designation [(ascii 94) (nil 96) nil nil] |
1378 :flags '(ascii-at-eol ascii-at-cntl 7-bit | |
1379 designation locking-shift composition)) | |
18196
85354a726fa5
Coding system names changed.
Kenichi Handa <handa@m17n.org>
parents:
17992
diff
changeset
|
1380 |
18519
b6badf3614ea
Fix calls to define-coding-system-alias.
Richard M. Stallman <rms@gnu.org>
parents:
18377
diff
changeset
|
1381 (define-coding-system-alias 'iso-2022-int-1 'iso-2022-7bit-lock) |
18196
85354a726fa5
Coding system names changed.
Kenichi Handa <handa@m17n.org>
parents:
17992
diff
changeset
|
1382 |
88411 | 1383 (define-coding-system 'iso-2022-7bit-lock-ss2 |
88647 | 1384 "Mixture of ISO-2022-JP, ISO-2022-KR, and ISO-2022-CN." |
88411 | 1385 :coding-type 'iso-2022 |
1386 :mnemonic ?i | |
1387 :charset-list '(ascii | |
1388 japanese-jisx0208 japanese-jisx0208-1978 latin-jisx0201 | |
1389 korean-ksc5601 | |
1390 chinese-gb2312 | |
1391 chinese-cns11643-1 chinese-cns11643-2 chinese-cns11643-3 | |
1392 chinese-cns11643-4 chinese-cns11643-5 chinese-cns11643-6 | |
1393 chinese-cns11643-7) | |
1394 :designation [(ascii 94) | |
1395 (nil korean-ksc5601 chinese-gb2312 chinese-cns11643-1 96) | |
1396 (nil chinese-cns11643-2) | |
1397 (nil chinese-cns11643-3 chinese-cns11643-4 chinese-cns11643-5 | |
1398 chinese-cns11643-6 chinese-cns11643-7)] | |
1399 :flags '(short ascii-at-eol ascii-at-cntl 7-bit locking-shift | |
1400 single-shift init-bol)) | |
17070 | 1401 |
18519
b6badf3614ea
Fix calls to define-coding-system-alias.
Richard M. Stallman <rms@gnu.org>
parents:
18377
diff
changeset
|
1402 (define-coding-system-alias 'iso-2022-cjk 'iso-2022-7bit-lock-ss2) |
17070 | 1403 |
88411 | 1404 (define-coding-system 'iso-2022-8bit-ss2 |
88647 | 1405 "ISO 2022 based 8-bit encoding using SS2 for 96-charset." |
88411 | 1406 :coding-type 'iso-2022 |
1407 :mnemonic ?@ | |
89102
1365cbd31156
(emacs-mule, iso-2022-7bit)
Kenichi Handa <handa@m17n.org>
parents:
89091
diff
changeset
|
1408 :charset-list 'iso-2022 |
88411 | 1409 :designation [(ascii 94) nil (nil 96) nil] |
1410 :flags '(ascii-at-eol ascii-at-cntl designation single-shift composition)) | |
17070 | 1411 |
88411 | 1412 (define-coding-system 'compound-text |
109690
cd3f51128c38
Modify the coding system compound-text-with-extensions to conform to the spec of Compound Text.
Kenichi Handa <handa@etlken>
parents:
106815
diff
changeset
|
1413 "Compound text based generic encoding. |
cd3f51128c38
Modify the coding system compound-text-with-extensions to conform to the spec of Compound Text.
Kenichi Handa <handa@etlken>
parents:
106815
diff
changeset
|
1414 This coding system is an extension of X's \"Compound Text Encoding\". |
cd3f51128c38
Modify the coding system compound-text-with-extensions to conform to the spec of Compound Text.
Kenichi Handa <handa@etlken>
parents:
106815
diff
changeset
|
1415 It encodes many characters using the normal ISO-2022 designation sequences, |
cd3f51128c38
Modify the coding system compound-text-with-extensions to conform to the spec of Compound Text.
Kenichi Handa <handa@etlken>
parents:
106815
diff
changeset
|
1416 but it doesn't support extended segments of CTEXT." |
88411 | 1417 :coding-type 'iso-2022 |
1418 :mnemonic ?x | |
89102
1365cbd31156
(emacs-mule, iso-2022-7bit)
Kenichi Handa <handa@m17n.org>
parents:
89091
diff
changeset
|
1419 :charset-list 'iso-2022 |
88411 | 1420 :designation [(ascii 94) (latin-iso8859-1 katakana-jisx0201 96) nil nil] |
90352 | 1421 :flags '(ascii-at-eol ascii-at-cntl long-form |
88411 | 1422 designation locking-shift single-shift composition) |
88503 | 1423 ;; Fixme: this isn't a valid MIME charset and has to be |
1424 ;; special-cased elsewhere -- fx | |
88411 | 1425 :mime-charset 'x-ctext) |
24619
6057f7a48050
(x-ctext): New coding system.
Kenichi Handa <handa@m17n.org>
parents:
24308
diff
changeset
|
1426 |
43552
52e76230bc9c
(compound-text): Renamed back from compound-text-no-extensions.
Eli Zaretskii <eliz@gnu.org>
parents:
43458
diff
changeset
|
1427 (define-coding-system-alias 'x-ctext 'compound-text) |
52e76230bc9c
(compound-text): Renamed back from compound-text-no-extensions.
Eli Zaretskii <eliz@gnu.org>
parents:
43458
diff
changeset
|
1428 (define-coding-system-alias 'ctext 'compound-text) |
43458
3dd402082e18
(ctext-no-compositions): New coding system.
Eli Zaretskii <eliz@gnu.org>
parents:
42112
diff
changeset
|
1429 |
43552
52e76230bc9c
(compound-text): Renamed back from compound-text-no-extensions.
Eli Zaretskii <eliz@gnu.org>
parents:
43458
diff
changeset
|
1430 ;; Same as compound-text, but doesn't produce composition escape |
52e76230bc9c
(compound-text): Renamed back from compound-text-no-extensions.
Eli Zaretskii <eliz@gnu.org>
parents:
43458
diff
changeset
|
1431 ;; sequences. Used in post-read and pre-write conversions of |
52e76230bc9c
(compound-text): Renamed back from compound-text-no-extensions.
Eli Zaretskii <eliz@gnu.org>
parents:
43458
diff
changeset
|
1432 ;; compound-text-with-extensions, see mule.el. Note that this should |
52e76230bc9c
(compound-text): Renamed back from compound-text-no-extensions.
Eli Zaretskii <eliz@gnu.org>
parents:
43458
diff
changeset
|
1433 ;; not have a mime-charset property, to prevent it from showing up |
52e76230bc9c
(compound-text): Renamed back from compound-text-no-extensions.
Eli Zaretskii <eliz@gnu.org>
parents:
43458
diff
changeset
|
1434 ;; close to the beginning of coding systems ordered by priority. |
89647
b1e7c4bffed1
(ctext-no-compositions): Remove garbage arguments.
Kenichi Handa <handa@m17n.org>
parents:
89483
diff
changeset
|
1435 (define-coding-system 'ctext-no-compositions |
109690
cd3f51128c38
Modify the coding system compound-text-with-extensions to conform to the spec of Compound Text.
Kenichi Handa <handa@etlken>
parents:
106815
diff
changeset
|
1436 "Compound text based generic encoding. |
43458
3dd402082e18
(ctext-no-compositions): New coding system.
Eli Zaretskii <eliz@gnu.org>
parents:
42112
diff
changeset
|
1437 |
43552
52e76230bc9c
(compound-text): Renamed back from compound-text-no-extensions.
Eli Zaretskii <eliz@gnu.org>
parents:
43458
diff
changeset
|
1438 Like `compound-text', but does not produce escape sequences for compositions." |
88411 | 1439 :coding-type 'iso-2022 |
1440 :mnemonic ?x | |
89102
1365cbd31156
(emacs-mule, iso-2022-7bit)
Kenichi Handa <handa@m17n.org>
parents:
89091
diff
changeset
|
1441 :charset-list 'iso-2022 |
88411 | 1442 :designation [(ascii 94) (latin-iso8859-1 katakana-jisx0201 96) nil nil] |
1443 :flags '(ascii-at-eol ascii-at-cntl | |
1444 designation locking-shift single-shift)) | |
43458
3dd402082e18
(ctext-no-compositions): New coding system.
Eli Zaretskii <eliz@gnu.org>
parents:
42112
diff
changeset
|
1445 |
88411 | 1446 (define-coding-system 'compound-text-with-extensions |
43458
3dd402082e18
(ctext-no-compositions): New coding system.
Eli Zaretskii <eliz@gnu.org>
parents:
42112
diff
changeset
|
1447 "Compound text encoding with ICCCM Extended Segment extensions. |
3dd402082e18
(ctext-no-compositions): New coding system.
Eli Zaretskii <eliz@gnu.org>
parents:
42112
diff
changeset
|
1448 |
109690
cd3f51128c38
Modify the coding system compound-text-with-extensions to conform to the spec of Compound Text.
Kenichi Handa <handa@etlken>
parents:
106815
diff
changeset
|
1449 See the variables `ctext-standard-encodings' and |
cd3f51128c38
Modify the coding system compound-text-with-extensions to conform to the spec of Compound Text.
Kenichi Handa <handa@etlken>
parents:
106815
diff
changeset
|
1450 `ctext-non-standard-encodings-alist' for the detail about how |
cd3f51128c38
Modify the coding system compound-text-with-extensions to conform to the spec of Compound Text.
Kenichi Handa <handa@etlken>
parents:
106815
diff
changeset
|
1451 extended segments are handled. |
53241
b5acb6a7d79b
(compound-text-with-extensions): Change the type to 2 (iso-2022 base).
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
1452 |
43458
3dd402082e18
(ctext-no-compositions): New coding system.
Eli Zaretskii <eliz@gnu.org>
parents:
42112
diff
changeset
|
1453 This coding system should be used only for X selections. It is inappropriate |
3dd402082e18
(ctext-no-compositions): New coding system.
Eli Zaretskii <eliz@gnu.org>
parents:
42112
diff
changeset
|
1454 for decoding and encoding files, process I/O, etc." |
89909 | 1455 :coding-type 'iso-2022 |
88411 | 1456 :mnemonic ?x |
89909 | 1457 :charset-list 'iso-2022 |
1458 :designation [(ascii 94) (latin-iso8859-1 katakana-jisx0201 96) nil nil] | |
90352 | 1459 :flags '(ascii-at-eol ascii-at-cntl long-form |
89909 | 1460 designation locking-shift single-shift) |
88411 | 1461 :post-read-conversion 'ctext-post-read-conversion |
1462 :pre-write-conversion 'ctext-pre-write-conversion) | |
43458
3dd402082e18
(ctext-no-compositions): New coding system.
Eli Zaretskii <eliz@gnu.org>
parents:
42112
diff
changeset
|
1463 |
43552
52e76230bc9c
(compound-text): Renamed back from compound-text-no-extensions.
Eli Zaretskii <eliz@gnu.org>
parents:
43458
diff
changeset
|
1464 (define-coding-system-alias |
52e76230bc9c
(compound-text): Renamed back from compound-text-no-extensions.
Eli Zaretskii <eliz@gnu.org>
parents:
43458
diff
changeset
|
1465 'x-ctext-with-extensions 'compound-text-with-extensions) |
52e76230bc9c
(compound-text): Renamed back from compound-text-no-extensions.
Eli Zaretskii <eliz@gnu.org>
parents:
43458
diff
changeset
|
1466 (define-coding-system-alias |
52e76230bc9c
(compound-text): Renamed back from compound-text-no-extensions.
Eli Zaretskii <eliz@gnu.org>
parents:
43458
diff
changeset
|
1467 'ctext-with-extensions 'compound-text-with-extensions) |
33221
22ea1d0f7521
(compound-text): Define this coding system here. Make x-ctext and
Kenichi Handa <handa@m17n.org>
parents:
33044
diff
changeset
|
1468 |
88411 | 1469 (define-coding-system 'us-ascii |
89483 | 1470 "Encode ASCII as-is and encode non-ASCII characters to `?'." |
88411 | 1471 :coding-type 'charset |
1472 :mnemonic ?- | |
1473 :charset-list '(ascii) | |
1474 :default-char ?? | |
1475 :mime-charset 'us-ascii) | |
19266
a042f26b7a4c
(iso-safe): New coding system.
Kenichi Handa <handa@m17n.org>
parents:
19005
diff
changeset
|
1476 |
88411 | 1477 (define-coding-system-alias 'iso-safe 'us-ascii) |
46492
4bc90b6a952f
(us-ascii): Define it as an alias of iso-safe.
Kenichi Handa <handa@m17n.org>
parents:
43929
diff
changeset
|
1478 |
89426 | 1479 (define-coding-system 'utf-7 |
1480 "UTF-7 encoding of Unicode (RFC 2152)." | |
1481 :coding-type 'utf-8 | |
1482 :mnemonic ?U | |
1483 :mime-charset 'utf-7 | |
1484 :charset-list '(unicode) | |
1485 :pre-write-conversion 'utf-7-pre-write-conversion | |
1486 :post-read-conversion 'utf-7-post-read-conversion) | |
50118
c38bf27db0aa
(iso-latin-1): Moved from european.el.
Kenichi Handa <handa@m17n.org>
parents:
49598
diff
changeset
|
1487 |
91116
ec7b5eef2638
(utf-7-imap): New coding system.
Kenichi Handa <handa@m17n.org>
parents:
90996
diff
changeset
|
1488 (define-coding-system 'utf-7-imap |
ec7b5eef2638
(utf-7-imap): New coding system.
Kenichi Handa <handa@m17n.org>
parents:
90996
diff
changeset
|
1489 "UTF-7 encoding of Unicode, IMAP version (RFC 2060)" |
ec7b5eef2638
(utf-7-imap): New coding system.
Kenichi Handa <handa@m17n.org>
parents:
90996
diff
changeset
|
1490 :coding-type 'utf-8 |
ec7b5eef2638
(utf-7-imap): New coding system.
Kenichi Handa <handa@m17n.org>
parents:
90996
diff
changeset
|
1491 :mnemonic ?u |
ec7b5eef2638
(utf-7-imap): New coding system.
Kenichi Handa <handa@m17n.org>
parents:
90996
diff
changeset
|
1492 :charset-list '(unicode) |
ec7b5eef2638
(utf-7-imap): New coding system.
Kenichi Handa <handa@m17n.org>
parents:
90996
diff
changeset
|
1493 :pre-write-conversion 'utf-7-imap-pre-write-conversion |
ec7b5eef2638
(utf-7-imap): New coding system.
Kenichi Handa <handa@m17n.org>
parents:
90996
diff
changeset
|
1494 :post-read-conversion 'utf-7-imap-post-read-conversion) |
50118
c38bf27db0aa
(iso-latin-1): Moved from european.el.
Kenichi Handa <handa@m17n.org>
parents:
49598
diff
changeset
|
1495 |
88411 | 1496 ;; Use us-ascii for terminal output if some other coding system is not |
23196 | 1497 ;; specified explicitly. |
88411 | 1498 (set-safe-terminal-coding-system-internal 'us-ascii) |
19266
a042f26b7a4c
(iso-safe): New coding system.
Kenichi Handa <handa@m17n.org>
parents:
19005
diff
changeset
|
1499 |
17070 | 1500 ;; The other coding-systems are defined in each language specific |
88411 | 1501 ;; files under lisp/language. |
17070 | 1502 |
21713
aa160e4358ac
(file-coding-system-alist): Use emacs-mule for .elc files.
Richard M. Stallman <rms@gnu.org>
parents:
20732
diff
changeset
|
1503 ;; Normally, set coding system to `undecided' before reading a file. |
aa160e4358ac
(file-coding-system-alist): Use emacs-mule for .elc files.
Richard M. Stallman <rms@gnu.org>
parents:
20732
diff
changeset
|
1504 ;; Compiled Emacs Lisp files (*.elc) are not decoded at all, |
aa160e4358ac
(file-coding-system-alist): Use emacs-mule for .elc files.
Richard M. Stallman <rms@gnu.org>
parents:
20732
diff
changeset
|
1505 ;; but we regard them as containing multibyte characters. |
aa160e4358ac
(file-coding-system-alist): Use emacs-mule for .elc files.
Richard M. Stallman <rms@gnu.org>
parents:
20732
diff
changeset
|
1506 ;; Tar files are not decoded at all, but we treat them as raw bytes. |
17070 | 1507 |
18196
85354a726fa5
Coding system names changed.
Kenichi Handa <handa@m17n.org>
parents:
17992
diff
changeset
|
1508 (setq file-coding-system-alist |
105957
25e1d7e37015
* widget.el (define-widget): Purecopy the docstring.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105949
diff
changeset
|
1509 (mapcar (lambda (arg) (cons (purecopy (car arg)) (cdr arg))) |
88776
805a3bb7daf4
(file-coding-system-alist): Change
Dave Love <fx@gnu.org>
parents:
88760
diff
changeset
|
1510 '(("\\.elc\\'" . utf-8-emacs) |
42047
83eb799f3657
(translation-table-for-input): New
Dave Love <fx@gnu.org>
parents:
41468
diff
changeset
|
1511 ("\\.utf\\(-8\\)?\\'" . utf-8) |
91922
89b7a215ead9
* international/mule.el (sgml-xml-auto-coding-function): Detect
Jason Rumney <jasonr@gnu.org>
parents:
91327
diff
changeset
|
1512 ("\\.xml\\'" . xml-find-file-coding-system) |
34264
b0c17ac74953
(file-coding-system-alist): Use
Eli Zaretskii <eliz@gnu.org>
parents:
33933
diff
changeset
|
1513 ;; We use raw-text for reading loaddefs.el so that if it |
b0c17ac74953
(file-coding-system-alist): Use
Eli Zaretskii <eliz@gnu.org>
parents:
33933
diff
changeset
|
1514 ;; happens to have DOS or Mac EOLs, they are converted to |
b0c17ac74953
(file-coding-system-alist): Use
Eli Zaretskii <eliz@gnu.org>
parents:
33933
diff
changeset
|
1515 ;; newlines. This is required to make the special treatment |
b0c17ac74953
(file-coding-system-alist): Use
Eli Zaretskii <eliz@gnu.org>
parents:
33933
diff
changeset
|
1516 ;; of the "\ newline" combination in loaddefs.el, which marks |
b0c17ac74953
(file-coding-system-alist): Use
Eli Zaretskii <eliz@gnu.org>
parents:
33933
diff
changeset
|
1517 ;; the beginning of a doc string, work. |
b0c17ac74953
(file-coding-system-alist): Use
Eli Zaretskii <eliz@gnu.org>
parents:
33933
diff
changeset
|
1518 ("\\(\\`\\|/\\)loaddefs.el\\'" . (raw-text . raw-text-unix)) |
32228
6a5bae3ed1c1
file-coding-system-alist): Use \',
Dave Love <fx@gnu.org>
parents:
30260
diff
changeset
|
1519 ("\\.tar\\'" . (no-conversion . no-conversion)) |
43929
75ed7127d6fc
(file-coding-system-alist): Add an association for PO files.
Eli Zaretskii <eliz@gnu.org>
parents:
43552
diff
changeset
|
1520 ( "\\.po[tx]?\\'\\|\\.po\\." . po-find-file-coding-system) |
61933
e555645f13f4
(file-coding-system-alist): Fix regexp for latexenc.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61912
diff
changeset
|
1521 ("\\.\\(tex\\|ltx\\|dtx\\|drv\\)\\'" . latexenc-find-file-coding-system) |
105957
25e1d7e37015
* widget.el (define-widget): Purecopy the docstring.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105949
diff
changeset
|
1522 ("" . (undecided . nil))))) |
17070 | 1523 |
1524 | |
1525 ;;; Setting coding categories and their priorities. | |
1526 | |
1527 ;; This setting is just to read an Emacs Lisp source files which | |
1528 ;; contain multilingual text while dumping Emacs. More appropriate | |
18302
6fbbef4e6c39
Change mnemonic letters for iso-2022-7bit-ss2 and
Kenichi Handa <handa@m17n.org>
parents:
18196
diff
changeset
|
1529 ;; values are set by the command `set-language-environment' for each |
17070 | 1530 ;; language environment. |
1531 | |
88411 | 1532 (set-coding-system-priority |
1533 'iso-latin-1 | |
1534 'utf-8 | |
1535 'iso-2022-7bit | |
1536 ) | |
17070 | 1537 |
19372 | 1538 |
1539 ;;; Miscellaneous settings. | |
88411 | 1540 |
1541 ;; Make all multibyte characters self-insert. | |
1542 (set-char-table-range (nth 1 global-map) | |
88613
cb347c3671eb
Avoid decode-char in top-level code
Dave Love <fx@gnu.org>
parents:
88600
diff
changeset
|
1543 (cons 128 (max-char)) |
88411 | 1544 'self-insert-command) |
1545 | |
50511
5930672784ee
Register ?\221 and ?\226 in latin-extra-code-table.
Kenichi Handa <handa@m17n.org>
parents:
50488
diff
changeset
|
1546 (aset latin-extra-code-table ?\221 t) |
19372 | 1547 (aset latin-extra-code-table ?\222 t) |
35187
cb583146cc55
(latin-extra-code-table): Set to t for \223 and \224.
Kenichi Handa <handa@m17n.org>
parents:
34264
diff
changeset
|
1548 (aset latin-extra-code-table ?\223 t) |
cb583146cc55
(latin-extra-code-table): Set to t for \223 and \224.
Kenichi Handa <handa@m17n.org>
parents:
34264
diff
changeset
|
1549 (aset latin-extra-code-table ?\224 t) |
50488
a23ddd4b5a0b
Register ?\225 in latin-extra-code-table.
Kenichi Handa <handa@m17n.org>
parents:
50182
diff
changeset
|
1550 (aset latin-extra-code-table ?\225 t) |
50511
5930672784ee
Register ?\221 and ?\226 in latin-extra-code-table.
Kenichi Handa <handa@m17n.org>
parents:
50488
diff
changeset
|
1551 (aset latin-extra-code-table ?\226 t) |
19372 | 1552 |
88600 | 1553 ;; The old code-pages library is obsoleted by coding systems based on |
1554 ;; the charsets defined in this file but might be required by user | |
1555 ;; code. | |
1556 (provide 'code-pages) | |
1557 | |
61698
19c94353380d
(translation-table-for-input): Remove redundant declaration.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53241
diff
changeset
|
1558 ;; arch-tag: 7d5fed55-b6df-42f6-8d3d-0011190551f5 |
17070 | 1559 ;;; mule-conf.el ends here |