Mercurial > emacs
annotate lisp/international/code-pages.el @ 73579:253ddf6ac03a
*** empty log message ***
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Tue, 31 Oct 2006 09:08:24 +0000 |
parents | 696c451fedeb |
children | 43cc94d955c2 |
rev | line source |
---|---|
42057 | 1 ;;; code-pages.el --- coding systems for assorted codepages -*-coding: utf-8;-*- |
2 | |
60371
49e4e175b817
(windows-1250, windows-125[2-8])
Reiner Steib <Reiner.Steib@gmx.de>
parents:
56100
diff
changeset
|
3 ;; Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. |
62274 | 4 ;; Copyright (C) 2004, 2005 |
5 ;; National Institute of Advanced Industrial Science and Technology (AIST) | |
6 ;; Registration Number H14PRO021 | |
42057 | 7 |
8 ;; Author: Dave Love <fx@gnu.org> | |
9 ;; Keywords: i18n | |
10 | |
42320 | 11 ;; This file is part of GNU Emacs. |
12 | |
45357 | 13 ;; GNU Emacs is free software; you can redistribute it and/or modify |
42057 | 14 ;; it under the terms of the GNU General Public License as published by |
15 ;; the Free Software Foundation; either version 2, or (at your option) | |
16 ;; any later version. | |
17 | |
45357 | 18 ;; GNU Emacs is distributed in the hope that it will be useful, |
42057 | 19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 ;; GNU General Public License for more details. | |
22 | |
23 ;; You should have received a copy of the GNU General Public License | |
45357 | 24 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64085 | 25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
26 ;; Boston, MA 02110-1301, USA. | |
42057 | 27 |
28 ;;; Commentary: | |
29 | |
30 ;; Definitions of miscellaneous 8-bit coding systems based on ASCII | |
31 ;; (we can't cope properly with EBCDIC, for instance), mainly for PC | |
32 ;; `code pages'. They are decoded into Latin-1 and mule-unicode | |
33 ;; charsets rather than (lossily) into single iso8859 charsets à la | |
34 ;; codepage.el. The utility `cp-make-coding-system' derives them from | |
35 ;; simple tables. | |
36 | |
37 ;; Those covered are: cp437, cp737, cp720, cp775, cp850, cp851, cp852, | |
38 ;; cp855, cp857, cp860, cp861, cp862, cp863, cp864, cp865, cp866, | |
52434 | 39 ;; cp869, cp874, cp1125, windows-1250, windows-1253, windows-1254, |
40 ;; windows-1255, windows-1256, windows-1257, windows-1258, next, | |
41 ;; iso-8859-6, iso-8859-10, iso-8859-11, iso-8859-16, koi8-t, | |
42 ;; georgian-ps. This is meant to include all the single-byte ones | |
43 ;; relevant to GNU (used in glibc-defined locales); we don't yet get | |
44 ;; all the multibyte ones in base Emacs. | |
42057 | 45 |
47911 | 46 ;; Note that various of these can clash with definitions in |
47 ;; codepage.el; we try to avoid damage from that. A few CPs from | |
48 ;; codepage.el (770, 773, 774) aren't covered (in the absence of | |
49 ;; translation tables to Unicode). | |
42057 | 50 |
51 ;; Compile this, to avoid loading `ccl' at runtime. | |
52 | |
53 ;; Although the tables used here aren't very big, it might be worth | |
54 ;; splitting the file and autoloading the coding systems if/when my | |
55 ;; (or similar) autoloading code is installed. | |
56 | |
57 ;;; Code: | |
58 | |
52434 | 59 ;; The defsubsts here are just so that language files can use |
60 ;; `cp-make-coding-system' and not require functions from this file | |
61 ;; at runtime. | |
62 | |
63 (defsubst cp-make-translation-table (v) | |
42057 | 64 "Return a translation table made from 128-long vector V. |
65 V comprises characters encodable by mule-utf-8." | |
66 (let ((encoding-vector (make-vector 256 0))) | |
67 (dotimes (i 128) | |
68 (aset encoding-vector i i)) | |
69 (dotimes (i 128) | |
70 (aset encoding-vector (+ i 128) (aref v i))) | |
47911 | 71 ;; Add equivalent characters to the encoder so that we can unify |
72 ;; on encoding. | |
73 (let* ((tab (make-translation-table-from-vector encoding-vector)) | |
74 ;; Translation table used for encoding: | |
75 (encode-table (char-table-extra-slot tab 0))) | |
76 (map-char-table (lambda (c v) | |
77 (if v | |
78 (let ((c1 (aref encode-table v))) | |
79 (if c1 ; we encode that unicode | |
80 (aset encode-table c c1))))) | |
81 ucs-mule-to-mule-unicode) | |
82 tab))) | |
42057 | 83 |
52434 | 84 (defsubst cp-valid-codes (v) |
42057 | 85 "Derive a valid-codes list for translation vector V. |
86 See `make-coding-system'." | |
87 (let (pairs | |
88 (i 128) ; index into v | |
89 (start 0) ; start of a valid range | |
90 (end 127)) ; end of a valid range | |
91 (while (< i 256) | |
92 (if (aref v (- i 128)) ; start or extend range | |
93 (progn | |
94 (setq end i) | |
95 (unless start (setq start i))) | |
96 (if start | |
97 (push (cons start end) pairs)) | |
98 (setq start nil)) | |
99 (setq i (1+ i))) | |
100 (if start (push (cons start end) pairs)) | |
101 (nreverse pairs))) | |
102 | |
49143 | 103 ;; Fix things that have been, or might be, done by codepage.el. |
42057 | 104 (eval-after-load "codepage" |
105 '(progn | |
106 | |
107 ;; Semi-dummy version for the stuff in codepage.el which we don't | |
108 ;; define here. (Used by mule-diag.) | |
109 (defun cp-supported-codepages () | |
110 "Return an alist of supported codepages. | |
111 | |
112 Each association in the alist has the form (NNN . CHARSET), where NNN is the | |
113 codepage number, and CHARSET is the MULE charset which is the closest match | |
114 for the character set supported by that codepage. | |
115 | |
116 A codepage NNN is supported if a variable called `cpNNN-decode-table' exists, | |
117 is a vector, and has a charset property." | |
118 '(("774" . latin-iso8859-4) ("770" . latin-iso8859-4) | |
119 ("773" . latin-iso8859-4))) | |
120 | |
121 ;; A version which doesn't override the coding systems set up by this | |
122 ;; file. It could still be used for the few missing ones from | |
123 ;; codepage.el. | |
124 (defun codepage-setup (codepage) | |
125 "Create a coding system cpCODEPAGE to support the IBM codepage CODEPAGE. | |
126 | |
127 These coding systems are meant for encoding and decoding 8-bit non-ASCII | |
128 characters used by the IBM codepages, typically in conjunction with files | |
129 read/written by MS-DOS software, or for display on the MS-DOS terminal." | |
130 (interactive | |
131 (let ((completion-ignore-case t) | |
132 (candidates (cp-supported-codepages))) | |
65680
ed770a0a7846
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents:
64732
diff
changeset
|
133 (list (completing-read "Setup DOS Codepage (default 437): " candidates |
42057 | 134 nil t nil nil "437")))) |
135 (let ((cp (format "cp%s" codepage))) | |
136 (unless (coding-system-p (intern cp)) | |
137 (cp-make-coding-systems-for-codepage | |
138 cp (cp-charset-for-codepage cp) (cp-offset-for-codepage cp)))))) | |
139 ) ; eval-after-load | |
140 | |
141 ;; Macro to allow ccl compilation at byte-compile time, avoiding | |
142 ;; loading ccl. | |
143 ;;;###autoload | |
144 (defmacro cp-make-coding-system (name v &optional doc-string mnemonic) | |
145 "Make coding system NAME for and 8-bit, extended-ASCII character set. | |
146 V is a 128-long vector of characters to translate the upper half of | |
52434 | 147 the character set. DOC-STRING and MNEMONIC are used as the |
42057 | 148 corresponding args of `make-coding-system'. If MNEMONIC isn't given, |
52434 | 149 ?* is used. |
150 Return an updated `non-iso-charset-alist'." | |
42057 | 151 (let* ((encoder (intern (format "encode-%s" name))) |
152 (decoder (intern (format "decode-%s" name))) | |
153 (ccl-decoder | |
154 (ccl-compile | |
155 `(4 | |
156 ((loop | |
157 (read r1) | |
158 (if (r1 < 128) ;; ASCII | |
159 (r0 = ,(charset-id 'ascii)) | |
160 (if (r1 < 160) | |
161 (r0 = ,(charset-id 'eight-bit-control)) | |
162 (r0 = ,(charset-id 'eight-bit-graphic)))) | |
163 (translate-character ,decoder r0 r1) | |
47911 | 164 ;; Allow fragmentation on decoding -- relevant for |
165 ;; Cyrillic, Greek and, possibly Arabic and Hebrew. | |
48049 | 166 (translate-character utf-translation-table-for-decode r0 r1) |
42057 | 167 (write-multibyte-character r0 r1) |
168 (repeat)))))) | |
169 (ccl-encoder | |
170 (ccl-compile | |
171 `(1 | |
172 ((loop | |
173 (read-multibyte-character r0 r1) | |
174 (translate-character ,encoder r0 r1) | |
49143 | 175 (if (r0 != ,(charset-id 'ascii)) |
176 (if (r0 != ,(charset-id 'eight-bit-graphic)) | |
177 (if (r0 != ,(charset-id 'eight-bit-control)) | |
178 (r1 = ??)))) | |
42057 | 179 (write-repeat r1))))))) |
180 `(let ((translation-table (cp-make-translation-table ,v)) | |
181 (codes (cp-valid-codes ,v))) | |
182 (define-translation-table ',decoder translation-table) | |
183 (define-translation-table ',encoder | |
184 (char-table-extra-slot translation-table 0)) | |
185 (make-coding-system | |
186 ',name 4 ,(or mnemonic ?*) | |
187 (or ,doc-string (format "%s encoding" ',name)) | |
188 (cons ,ccl-decoder ,ccl-encoder) | |
189 (list (cons 'safe-chars (get ',encoder 'translation-table)) | |
190 (cons 'valid-codes codes) | |
47911 | 191 (cons 'mime-charset ',name) |
192 ;; For Quail translation. Fixme: this should really be | |
193 ;; a separate table that only translates the coding | |
194 ;; system's safe-chars. | |
61570
4b5610d9b02e
(cp-make-coding-system): Set
Kenichi Handa <handa@m17n.org>
parents:
61405
diff
changeset
|
195 (cons 'translation-table-for-input 'ucs-mule-to-mule-unicode))) |
62795
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
196 (let ((slot (assq ',name non-iso-charset-alist)) |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
197 (elt (list nil ; charset list |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
198 ',decoder |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
199 (let (l) ; code range |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
200 (dolist (elt (reverse codes)) |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
201 (push (cdr elt) l) |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
202 (push (car elt) l)) |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
203 (list l))))) |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
204 (if (not slot) |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
205 (push (cons ',name elt) non-iso-charset-alist) |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
206 (setcdr slot elt) |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
207 non-iso-charset-alist))))) |
42057 | 208 |
52434 | 209 (eval-when-compile (defvar non-iso-charset-alist)) |
42057 | 210 |
211 ;; These tables were mostly derived by running somthing like | |
212 ;; `recode -f cpxxx/..utf-8' on a binary file filled by | |
213 ;; `(dotimes (i 128) (insert ?? ?\\ (+ 128 i) ?\n))' and then | |
214 ;; exchanging the ?\� entries for nil. iconv was used instead in some | |
215 ;; cases. | |
216 | |
217 ;; Fixme: Do better for mode-line mnemonics? | |
218 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
219 ;;;###autoload(autoload-coding-system 'cp437 '(require 'code-pages)) |
42057 | 220 (cp-make-coding-system |
221 cp437 | |
222 [?\Ç | |
223 ?\ü | |
224 ?\é | |
225 ?\â | |
226 ?\ä | |
227 ?\à | |
228 ?\å | |
229 ?\ç | |
230 ?\ê | |
231 ?\ë | |
232 ?\è | |
233 ?\ï | |
234 ?\î | |
235 ?\ì | |
236 ?\Ä | |
237 ?\Å | |
238 ?\É | |
239 ?\æ | |
240 ?\Æ | |
241 ?\ô | |
242 ?\ö | |
243 ?\ò | |
244 ?\û | |
245 ?\ù | |
246 ?\ÿ | |
247 ?\Ö | |
248 ?\Ü | |
249 ?\¢ | |
250 ?\£ | |
251 ?\¥ | |
252 ?\₧ | |
253 ?\ƒ | |
254 ?\á | |
255 ?\í | |
256 ?\ó | |
257 ?\ú | |
258 ?\ñ | |
259 ?\Ñ | |
260 ?\ª | |
261 ?\º | |
262 ?\¿ | |
263 ?\⌐ | |
264 ?\¬ | |
265 ?\½ | |
266 ?\¼ | |
267 ?\¡ | |
268 ?\« | |
269 ?\» | |
270 ?\░ | |
271 ?\▒ | |
272 ?\▓ | |
273 ?\│ | |
274 ?\┤ | |
275 ?\╡ | |
276 ?\╢ | |
277 ?\╖ | |
278 ?\╕ | |
279 ?\╣ | |
280 ?\║ | |
281 ?\╗ | |
282 ?\╝ | |
283 ?\╜ | |
284 ?\╛ | |
285 ?\┐ | |
286 ?\└ | |
287 ?\┴ | |
288 ?\┬ | |
289 ?\├ | |
290 ?\─ | |
291 ?\┼ | |
292 ?\╞ | |
293 ?\╟ | |
294 ?\╚ | |
295 ?\╔ | |
296 ?\╩ | |
297 ?\╦ | |
298 ?\╠ | |
299 ?\═ | |
300 ?\╬ | |
301 ?\╧ | |
302 ?\╨ | |
303 ?\╤ | |
304 ?\╥ | |
305 ?\╙ | |
306 ?\╘ | |
307 ?\╒ | |
308 ?\╓ | |
309 ?\╫ | |
310 ?\╪ | |
311 ?\┘ | |
312 ?\┌ | |
313 ?\█ | |
314 ?\▄ | |
315 ?\▌ | |
316 ?\▐ | |
317 ?\▀ | |
318 ?\α | |
319 ?\ß | |
320 ?\Γ | |
321 ?\π | |
322 ?\Σ | |
323 ?\σ | |
324 ?\µ | |
325 ?\τ | |
326 ?\Φ | |
327 ?\Θ | |
328 ?\Ω | |
329 ?\δ | |
330 ?\∞ | |
331 ?\φ | |
332 ?\ε | |
333 ?\∩ | |
334 ?\≡ | |
335 ?\± | |
336 ?\≥ | |
337 ?\≤ | |
338 ?\⌠ | |
339 ?\⌡ | |
340 ?\÷ | |
341 ?\≈ | |
342 ?\° | |
343 ?\· | |
344 ?\• | |
345 ?\√ | |
346 ?\ⁿ | |
347 ?\² | |
348 ?\■ | |
349 ?\ ]) | |
350 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
351 ;;;###autoload(autoload-coding-system 'cp737 '(require 'code-pages)) |
42057 | 352 (cp-make-coding-system |
353 cp737 | |
354 [?\Α | |
355 ?\Β | |
356 ?\Γ | |
357 ?\Δ | |
358 ?\Ε | |
359 ?\Ζ | |
360 ?\Η | |
361 ?\Θ | |
362 ?\Ι | |
363 ?\Κ | |
364 ?\Λ | |
365 ?\Μ | |
366 ?\Ν | |
367 ?\Ξ | |
368 ?\Ο | |
369 ?\Π | |
370 ?\Ρ | |
371 ?\Σ | |
372 ?\Τ | |
373 ?\Υ | |
374 ?\Φ | |
375 ?\Χ | |
376 ?\Ψ | |
377 ?\Ω | |
378 ?\α | |
379 ?\β | |
380 ?\γ | |
381 ?\δ | |
382 ?\ε | |
383 ?\ζ | |
384 ?\η | |
385 ?\θ | |
386 ?\ι | |
387 ?\κ | |
388 ?\λ | |
389 ?\μ | |
390 ?\ν | |
391 ?\ξ | |
392 ?\ο | |
393 ?\π | |
394 ?\ρ | |
395 ?\σ | |
396 ?\ς | |
397 ?\τ | |
398 ?\υ | |
399 ?\φ | |
400 ?\χ | |
401 ?\ψ | |
402 ?\░ | |
403 ?\▒ | |
404 ?\▓ | |
405 ?\│ | |
406 ?\┤ | |
407 ?\╡ | |
408 ?\╢ | |
409 ?\╖ | |
410 ?\╕ | |
411 ?\╣ | |
412 ?\║ | |
413 ?\╗ | |
414 ?\╝ | |
415 ?\╜ | |
416 ?\╛ | |
417 ?\┐ | |
418 ?\└ | |
419 ?\┴ | |
420 ?\┬ | |
421 ?\├ | |
422 ?\─ | |
423 ?\┼ | |
424 ?\╞ | |
425 ?\╟ | |
426 ?\╚ | |
427 ?\╔ | |
428 ?\╩ | |
429 ?\╦ | |
430 ?\╠ | |
431 ?\═ | |
432 ?\╬ | |
433 ?\╧ | |
434 ?\╨ | |
435 ?\╤ | |
436 ?\╥ | |
437 ?\╙ | |
438 ?\╘ | |
439 ?\╒ | |
440 ?\╓ | |
441 ?\╫ | |
442 ?\╪ | |
443 ?\┘ | |
444 ?\┌ | |
445 ?\█ | |
446 ?\▄ | |
447 ?\▌ | |
448 ?\▐ | |
449 ?\▀ | |
450 ?\ω | |
451 ?\ά | |
452 ?\έ | |
453 ?\ή | |
454 ?\ϊ | |
455 ?\ί | |
456 ?\ό | |
457 ?\ύ | |
458 ?\ϋ | |
459 ?\ώ | |
460 ?\Ά | |
461 ?\Έ | |
462 ?\Ή | |
463 ?\Ί | |
464 ?\Ό | |
465 ?\Ύ | |
466 ?\Ώ | |
467 ?\± | |
468 ?\≥ | |
469 ?\≤ | |
470 ?\Ϊ | |
471 ?\Ϋ | |
472 ?\÷ | |
473 ?\≈ | |
474 ?\° | |
475 ?\∙ | |
476 ?\· | |
477 ?\√ | |
478 ?\ⁿ | |
479 ?\² | |
480 ?\■ | |
481 ?\ ]) | |
482 (coding-system-put 'cp737 'mime-charset nil) ; not in IANA list | |
483 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
484 ;;;###autoload(autoload-coding-system 'cp775 '(require 'code-pages)) |
42057 | 485 (cp-make-coding-system |
486 cp775 | |
487 [?\Ć | |
488 ?\ü | |
489 ?\é | |
490 ?\ā | |
491 ?\ä | |
492 ?\ģ | |
493 ?\å | |
494 ?\ć | |
495 ?\ł | |
496 ?\ē | |
497 ?\Ŗ | |
498 ?\ŗ | |
499 ?\ī | |
500 ?\Ź | |
501 ?\Ä | |
502 ?\Å | |
503 ?\É | |
504 ?\æ | |
505 ?\Æ | |
506 ?\ō | |
507 ?\ö | |
508 ?\Ģ | |
509 ?\¢ | |
510 ?\Ś | |
511 ?\ś | |
512 ?\Ö | |
513 ?\Ü | |
514 ?\ø | |
515 ?\£ | |
516 ?\Ø | |
517 ?\× | |
518 ?\¤ | |
519 ?\Ā | |
520 ?\Ī | |
521 ?\ó | |
522 ?\Ż | |
523 ?\ż | |
524 ?\ź | |
525 ?\” | |
526 ?\¦ | |
527 ?\© | |
528 ?\® | |
529 ?\¬ | |
530 ?\½ | |
531 ?\¼ | |
532 ?\Ł | |
533 ?\« | |
534 ?\» | |
535 ?\░ | |
536 ?\▒ | |
537 ?\▓ | |
538 ?\│ | |
539 ?\┤ | |
540 ?\Ą | |
541 ?\Č | |
542 ?\Ę | |
543 ?\Ė | |
544 ?\╣ | |
545 ?\║ | |
546 ?\╗ | |
547 ?\╝ | |
548 ?\Į | |
549 ?\Š | |
550 ?\┐ | |
551 ?\└ | |
552 ?\┴ | |
553 ?\┬ | |
554 ?\├ | |
555 ?\─ | |
556 ?\┼ | |
557 ?\Ų | |
558 ?\Ū | |
559 ?\╚ | |
560 ?\╔ | |
561 ?\╩ | |
562 ?\╦ | |
563 ?\╠ | |
564 ?\═ | |
565 ?\╬ | |
566 ?\Ž | |
567 ?\ą | |
568 ?\č | |
569 ?\ę | |
570 ?\ė | |
571 ?\į | |
572 ?\š | |
573 ?\ų | |
574 ?\ū | |
575 ?\ž | |
576 ?\┘ | |
577 ?\┌ | |
578 ?\█ | |
579 ?\▄ | |
580 ?\▌ | |
581 ?\▐ | |
582 ?\▀ | |
583 ?\Ó | |
584 ?\ß | |
585 ?\Ō | |
586 ?\Ń | |
587 ?\õ | |
588 ?\Õ | |
589 ?\µ | |
590 ?\ń | |
591 ?\Ķ | |
592 ?\ķ | |
593 ?\Ļ | |
594 ?\ļ | |
595 ?\ņ | |
596 ?\Ē | |
597 ?\Ņ | |
598 ?\’ | |
599 ?\ | |
600 ?\± | |
601 ?\“ | |
602 ?\¾ | |
603 ?\¶ | |
604 ?\§ | |
605 ?\÷ | |
606 ?\„ | |
607 ?\° | |
608 ?\∙ | |
609 ?\· | |
610 ?\¹ | |
611 ?\³ | |
612 ?\² | |
613 ?\■ | |
614 ?\ ]) | |
615 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
616 ;;;###autoload(autoload-coding-system 'cp850 '(require 'code-pages)) |
42057 | 617 (cp-make-coding-system |
618 cp850 | |
619 [?\Ç | |
620 ?\ü | |
621 ?\é | |
622 ?\â | |
623 ?\ä | |
624 ?\à | |
625 ?\å | |
626 ?\ç | |
627 ?\ê | |
628 ?\ë | |
629 ?\è | |
630 ?\ï | |
631 ?\î | |
632 ?\ì | |
633 ?\Ä | |
634 ?\Å | |
635 ?\É | |
636 ?\æ | |
637 ?\Æ | |
638 ?\ô | |
639 ?\ö | |
640 ?\ò | |
641 ?\û | |
642 ?\ù | |
643 ?\ÿ | |
644 ?\Ö | |
645 ?\Ü | |
646 ?\ø | |
647 ?\£ | |
648 ?\Ø | |
649 ?\× | |
650 ?\ƒ | |
651 ?\á | |
652 ?\í | |
653 ?\ó | |
654 ?\ú | |
655 ?\ñ | |
656 ?\Ñ | |
657 ?\ª | |
658 ?\º | |
659 ?\¿ | |
660 ?\® | |
661 ?\¬ | |
662 ?\½ | |
663 ?\¼ | |
664 ?\¡ | |
665 ?\« | |
666 ?\» | |
667 ?\░ | |
668 ?\▒ | |
669 ?\▓ | |
670 ?\│ | |
671 ?\┤ | |
672 ?\Á | |
673 ?\Â | |
674 ?\À | |
675 ?\© | |
676 ?\╣ | |
677 ?\║ | |
678 ?\╗ | |
679 ?\╝ | |
680 ?\¢ | |
681 ?\¥ | |
682 ?\┐ | |
683 ?\└ | |
684 ?\┴ | |
685 ?\┬ | |
686 ?\├ | |
687 ?\─ | |
688 ?\┼ | |
689 ?\ã | |
690 ?\Ã | |
691 ?\╚ | |
692 ?\╔ | |
693 ?\╩ | |
694 ?\╦ | |
695 ?\╠ | |
696 ?\═ | |
697 ?\╬ | |
698 ?\¤ | |
699 ?\ð | |
700 ?\Ð | |
701 ?\Ê | |
702 ?\Ë | |
703 ?\È | |
704 ?\ı | |
705 ?\Í | |
706 ?\Î | |
707 ?\Ï | |
708 ?\┘ | |
709 ?\┌ | |
710 ?\█ | |
711 ?\▄ | |
712 ?\¦ | |
713 ?\Ì | |
714 ?\▀ | |
715 ?\Ó | |
716 ?\ß | |
717 ?\Ô | |
718 ?\Ò | |
719 ?\õ | |
720 ?\Õ | |
721 ?\µ | |
722 ?\þ | |
723 ?\Þ | |
724 ?\Ú | |
725 ?\Û | |
726 ?\Ù | |
727 ?\ý | |
728 ?\Ý | |
729 ?\¯ | |
730 ?\´ | |
731 ?\ | |
732 ?\± | |
733 ?\‗ | |
734 ?\¾ | |
735 ?\¶ | |
736 ?\§ | |
737 ?\÷ | |
738 ?\¸ | |
739 ?\° | |
740 ?\¨ | |
741 ?\· | |
742 ?\¹ | |
743 ?\³ | |
744 ?\² | |
745 ?\■ | |
746 ?\ ]) | |
747 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
748 ;;;###autoload(autoload-coding-system 'cp851 '(require 'code-pages)) |
42057 | 749 (cp-make-coding-system |
750 cp851 | |
751 [?\Ç | |
752 ?\ü | |
753 ?\é | |
754 ?\â | |
755 ?\ä | |
756 ?\à | |
757 ?\Ά | |
758 ?\ç | |
759 ?\ê | |
760 ?\ë | |
761 ?\è | |
762 ?\ï | |
763 ?\î | |
764 ?\Έ | |
765 ?\Ä | |
766 ?\Ή | |
767 ?\Ί | |
768 nil | |
769 ?\Ό | |
770 ?\ô | |
771 ?\ö | |
772 ?\Ύ | |
773 ?\û | |
774 ?\ù | |
775 ?\Ώ | |
776 ?\Ö | |
777 ?\Ü | |
778 ?\ά | |
779 ?\£ | |
780 ?\έ | |
781 ?\ή | |
782 ?\ί | |
783 ?\ϊ | |
784 ?\ΐ | |
785 ?\ό | |
786 ?\ύ | |
787 ?\Α | |
788 ?\Β | |
789 ?\Γ | |
790 ?\Δ | |
791 ?\Ε | |
792 ?\Ζ | |
793 ?\Η | |
794 ?\½ | |
795 ?\Θ | |
796 ?\Ι | |
797 ?\« | |
798 ?\» | |
799 ?\░ | |
800 ?\▒ | |
801 ?\▓ | |
802 ?\│ | |
803 ?\┤ | |
804 ?\Κ | |
805 ?\Λ | |
806 ?\Ν | |
807 ?\Μ | |
808 ?\╣ | |
809 ?\║ | |
810 ?\╗ | |
811 ?\╝ | |
812 ?\Ξ | |
813 ?\Ο | |
814 ?\┐ | |
815 ?\└ | |
816 ?\┴ | |
817 ?\┬ | |
818 ?\├ | |
819 ?\─ | |
820 ?\┼ | |
821 ?\Π | |
822 ?\Ρ | |
823 ?\╚ | |
824 ?\╔ | |
825 ?\╩ | |
826 ?\╦ | |
827 ?\╠ | |
828 ?\═ | |
829 ?\╬ | |
830 ?\Σ | |
831 ?\Τ | |
832 ?\Υ | |
833 ?\Φ | |
834 ?\Χ | |
835 ?\Ψ | |
836 ?\Ω | |
837 ?\α | |
838 ?\β | |
839 ?\γ | |
840 ?\┘ | |
841 ?\┌ | |
842 ?\█ | |
843 ?\▄ | |
844 ?\δ | |
845 ?\ε | |
846 ?\▀ | |
847 ?\ζ | |
848 ?\η | |
849 ?\θ | |
850 ?\ι | |
851 ?\κ | |
852 ?\λ | |
853 ?\μ | |
854 ?\ν | |
855 ?\ξ | |
856 ?\ο | |
857 ?\π | |
858 ?\ρ | |
859 ?\σ | |
860 ?\ς | |
861 ?\τ | |
862 ?\´ | |
863 ?\ | |
864 ?\± | |
865 ?\υ | |
866 ?\φ | |
867 ?\χ | |
868 ?\§ | |
869 ?\ψ | |
870 ?\˛ | |
871 ?\° | |
872 ?\¨ | |
873 ?\ω | |
874 ?\ϋ | |
875 ?\ΰ | |
876 ?\ώ | |
877 ?\■ | |
878 ?\ ]) | |
879 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
880 ;;;###autoload(autoload-coding-system 'cp852 '(require 'code-pages)) |
42057 | 881 (cp-make-coding-system |
882 cp852 | |
883 [?\Ç | |
884 ?\ü | |
885 ?\é | |
886 ?\â | |
887 ?\ä | |
888 ?\ů | |
889 ?\ć | |
890 ?\ç | |
891 ?\ł | |
892 ?\ë | |
893 ?\Ő | |
894 ?\ő | |
895 ?\î | |
896 ?\Ź | |
897 ?\Ä | |
898 ?\Ć | |
899 ?\É | |
900 ?\Ĺ | |
901 ?\ĺ | |
902 ?\ô | |
903 ?\ö | |
904 ?\Ľ | |
905 ?\ľ | |
906 ?\Ś | |
907 ?\ś | |
908 ?\Ö | |
909 ?\Ü | |
910 ?\Ť | |
911 ?\ť | |
912 ?\Ł | |
913 ?\× | |
914 ?\č | |
915 ?\á | |
916 ?\í | |
917 ?\ó | |
918 ?\ú | |
919 ?\Ą | |
920 ?\ą | |
921 ?\Ž | |
922 ?\ž | |
923 ?\Ę | |
924 ?\ę | |
925 ?\¬ | |
926 ?\ź | |
927 ?\Č | |
928 ?\ş | |
929 ?\« | |
930 ?\» | |
931 ?\░ | |
932 ?\▒ | |
933 ?\▓ | |
934 ?\│ | |
935 ?\┤ | |
936 ?\Á | |
937 ?\Â | |
938 ?\Ě | |
939 ?\Ş | |
940 ?\╣ | |
941 ?\║ | |
942 ?\╗ | |
943 ?\╝ | |
944 ?\Ż | |
945 ?\ż | |
946 ?\┐ | |
947 ?\└ | |
948 ?\┴ | |
949 ?\┬ | |
950 ?\├ | |
951 ?\─ | |
952 ?\┼ | |
953 ?\Ă | |
954 ?\ă | |
955 ?\╚ | |
956 ?\╔ | |
957 ?\╩ | |
958 ?\╦ | |
959 ?\╠ | |
960 ?\═ | |
961 ?\╬ | |
962 ?\¤ | |
963 ?\đ | |
964 ?\Đ | |
965 ?\Ď | |
966 ?\Ë | |
967 ?\ď | |
968 ?\Ň | |
969 ?\Í | |
970 ?\Î | |
971 ?\ě | |
972 ?\┘ | |
973 ?\┌ | |
974 ?\█ | |
975 ?\▄ | |
976 ?\Ţ | |
977 ?\Ů | |
978 ?\▀ | |
979 ?\Ó | |
980 ?\ß | |
981 ?\Ô | |
982 ?\Ń | |
983 ?\ń | |
984 ?\ň | |
985 ?\Š | |
986 ?\š | |
987 ?\Ŕ | |
988 ?\Ú | |
989 ?\ŕ | |
990 ?\Ű | |
991 ?\ý | |
992 ?\Ý | |
993 ?\ţ | |
994 ?\´ | |
995 ?\ | |
996 ?\˝ | |
997 ?\˛ | |
998 ?\ˇ | |
999 ?\˘ | |
1000 ?\§ | |
1001 ?\÷ | |
1002 ?\¸ | |
1003 ?\° | |
1004 ?\¨ | |
1005 ?\˙ | |
1006 ?\ű | |
1007 ?\Ř | |
1008 ?\ř | |
1009 ?\■ | |
1010 ?\ ]) | |
1011 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
1012 ;;;###autoload(autoload-coding-system 'cp855 '(require 'code-pages)) |
42057 | 1013 (cp-make-coding-system |
1014 cp855 | |
1015 [?\ђ | |
1016 ?\Ђ | |
1017 ?\ѓ | |
1018 ?\Ѓ | |
1019 ?\ё | |
1020 ?\Ё | |
1021 ?\є | |
1022 ?\Є | |
1023 ?\ѕ | |
1024 ?\Ѕ | |
1025 ?\і | |
1026 ?\І | |
1027 ?\ї | |
1028 ?\Ї | |
1029 ?\ј | |
1030 ?\Ј | |
1031 ?\љ | |
1032 ?\Љ | |
1033 ?\њ | |
1034 ?\Њ | |
1035 ?\ћ | |
1036 ?\Ћ | |
1037 ?\ќ | |
1038 ?\Ќ | |
1039 ?\ў | |
1040 ?\Ў | |
1041 ?\џ | |
1042 ?\Џ | |
1043 ?\ю | |
1044 ?\Ю | |
1045 ?\ъ | |
1046 ?\Ъ | |
1047 ?\а | |
1048 ?\А | |
1049 ?\б | |
1050 ?\Б | |
1051 ?\ц | |
1052 ?\Ц | |
1053 ?\д | |
1054 ?\Д | |
1055 ?\е | |
1056 ?\Е | |
1057 ?\ф | |
1058 ?\Ф | |
1059 ?\г | |
1060 ?\Г | |
1061 ?\« | |
1062 ?\» | |
1063 ?\░ | |
1064 ?\▒ | |
1065 ?\▓ | |
1066 ?\│ | |
1067 ?\┤ | |
1068 ?\х | |
1069 ?\Х | |
1070 ?\и | |
1071 ?\И | |
1072 ?\╣ | |
1073 ?\║ | |
1074 ?\╗ | |
1075 ?\╝ | |
1076 ?\й | |
1077 ?\Й | |
1078 ?\┐ | |
1079 ?\└ | |
1080 ?\┴ | |
1081 ?\┬ | |
1082 ?\├ | |
1083 ?\─ | |
1084 ?\┼ | |
1085 ?\к | |
1086 ?\К | |
1087 ?\╚ | |
1088 ?\╔ | |
1089 ?\╩ | |
1090 ?\╦ | |
1091 ?\╠ | |
1092 ?\═ | |
1093 ?\╬ | |
1094 ?\¤ | |
1095 ?\л | |
1096 ?\Л | |
1097 ?\м | |
1098 ?\М | |
1099 ?\н | |
1100 ?\Н | |
1101 ?\о | |
1102 ?\О | |
1103 ?\п | |
1104 ?\┘ | |
1105 ?\┌ | |
1106 ?\█ | |
1107 ?\▄ | |
1108 ?\П | |
1109 ?\я | |
1110 ?\▀ | |
1111 ?\Я | |
1112 ?\р | |
1113 ?\Р | |
1114 ?\с | |
1115 ?\С | |
1116 ?\т | |
1117 ?\Т | |
1118 ?\у | |
1119 ?\У | |
1120 ?\ж | |
1121 ?\Ж | |
1122 ?\в | |
1123 ?\В | |
1124 ?\ь | |
1125 ?\Ь | |
1126 ?\´ | |
1127 ?\ | |
1128 ?\ы | |
1129 ?\Ы | |
1130 ?\з | |
1131 ?\З | |
1132 ?\ш | |
1133 ?\Ш | |
1134 ?\э | |
1135 ?\Э | |
1136 ?\щ | |
1137 ?\Щ | |
1138 ?\ч | |
1139 ?\Ч | |
1140 nil | |
1141 ?\■ | |
1142 ?\ ]) | |
1143 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
1144 ;;;###autoload(autoload-coding-system 'cp857 '(require 'code-pages)) |
42057 | 1145 (cp-make-coding-system |
1146 cp857 | |
1147 [?\Ç | |
1148 ?\ü | |
1149 ?\é | |
1150 ?\â | |
1151 ?\ä | |
1152 ?\à | |
1153 ?\å | |
1154 ?\ç | |
1155 ?\ê | |
1156 ?\ë | |
1157 ?\è | |
1158 ?\ï | |
1159 ?\î | |
1160 ?\ı | |
1161 ?\Ä | |
1162 ?\Å | |
1163 ?\É | |
1164 ?\æ | |
1165 ?\Æ | |
1166 ?\ô | |
1167 ?\ö | |
1168 ?\ò | |
1169 ?\û | |
1170 ?\ù | |
1171 ?\İ | |
1172 ?\Ö | |
1173 ?\Ü | |
1174 ?\ø | |
1175 ?\£ | |
1176 ?\Ø | |
1177 ?\Ş | |
1178 ?\ş | |
1179 ?\á | |
1180 ?\í | |
1181 ?\ó | |
1182 ?\ú | |
1183 ?\ñ | |
1184 ?\Ñ | |
1185 ?\Ğ | |
1186 ?\ğ | |
1187 ?\¿ | |
1188 ?\® | |
1189 ?\¬ | |
1190 ?\½ | |
1191 ?\¼ | |
1192 ?\¡ | |
1193 ?\« | |
1194 ?\» | |
1195 ?\░ | |
1196 ?\▒ | |
1197 ?\▓ | |
1198 ?\│ | |
1199 ?\┤ | |
1200 ?\Á | |
1201 ?\Â | |
1202 ?\À | |
1203 ?\© | |
1204 ?\╣ | |
1205 ?\║ | |
1206 ?\╗ | |
1207 ?\╝ | |
1208 ?\¢ | |
1209 ?\¥ | |
1210 ?\┐ | |
1211 ?\└ | |
1212 ?\┴ | |
1213 ?\┬ | |
1214 ?\├ | |
1215 ?\─ | |
1216 ?\┼ | |
1217 ?\ã | |
1218 ?\Ã | |
1219 ?\╚ | |
1220 ?\╔ | |
1221 ?\╩ | |
1222 ?\╦ | |
1223 ?\╠ | |
1224 ?\═ | |
1225 ?\╬ | |
1226 ?\¤ | |
1227 ?\º | |
1228 ?\ª | |
1229 ?\Ê | |
1230 ?\Ë | |
1231 ?\È | |
1232 nil | |
1233 ?\Í | |
1234 ?\Î | |
1235 ?\Ï | |
1236 ?\┘ | |
1237 ?\┌ | |
1238 ?\█ | |
1239 ?\▄ | |
1240 ?\¦ | |
1241 ?\Ì | |
1242 ?\▀ | |
1243 ?\Ó | |
1244 ?\ß | |
1245 ?\Ô | |
1246 ?\Ò | |
1247 ?\õ | |
1248 ?\Õ | |
1249 ?\µ | |
1250 nil | |
1251 ?\× | |
1252 ?\Ú | |
1253 ?\Û | |
1254 ?\Ù | |
1255 ?\ì | |
1256 ?\ÿ | |
1257 ?\— | |
1258 ?\´ | |
1259 ?\ | |
1260 ?\± | |
1261 nil | |
1262 ?\¾ | |
1263 ?\¶ | |
1264 ?\§ | |
1265 ?\÷ | |
1266 ?\˛ | |
1267 ?\° | |
1268 ?\¨ | |
1269 ?\˙ | |
1270 ?\¹ | |
1271 ?\³ | |
1272 ?\² | |
1273 ?\■ | |
1274 ?\ ]) | |
1275 | |
72692
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1276 ;;;###autoload(autoload-coding-system 'cp858 '(require 'code-pages)) |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1277 (cp-make-coding-system |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1278 cp858 |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1279 [?\Ç |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1280 ?\ü |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1281 ?\é |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1282 ?\â |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1283 ?\ä |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1284 ?\à |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1285 ?\å |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1286 ?\ç |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1287 ?\ê |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1288 ?\ë |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1289 ?\è |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1290 ?\ï |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1291 ?\î |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1292 ?\ì |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1293 ?\Ä |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1294 ?\Å |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1295 ?\É |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1296 ?\æ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1297 ?\Æ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1298 ?\ô |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1299 ?\ö |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1300 ?\ò |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1301 ?\û |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1302 ?\ù |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1303 ?\ÿ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1304 ?\Ö |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1305 ?\Ü |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1306 ?\ø |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1307 ?\£ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1308 ?\Ø |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1309 ?\× |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1310 ?\ƒ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1311 ?\á |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1312 ?\í |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1313 ?\ó |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1314 ?\ú |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1315 ?\ñ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1316 ?\Ñ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1317 ?\ª |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1318 ?\º |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1319 ?\¿ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1320 ?\® |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1321 ?\¬ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1322 ?\½ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1323 ?\¼ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1324 ?\¡ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1325 ?\« |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1326 ?\» |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1327 ?\░ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1328 ?\▒ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1329 ?\▓ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1330 ?\│ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1331 ?\┤ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1332 ?\Á |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1333 ?\Â |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1334 ?\À |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1335 ?\© |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1336 ?\╣ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1337 ?\║ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1338 ?\╗ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1339 ?\╝ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1340 ?\¢ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1341 ?\¥ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1342 ?\┐ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1343 ?\└ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1344 ?\┴ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1345 ?\┬ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1346 ?\├ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1347 ?\─ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1348 ?\┼ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1349 ?\ã |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1350 ?\Ã |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1351 ?\╚ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1352 ?\╔ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1353 ?\╩ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1354 ?\╦ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1355 ?\╠ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1356 ?\═ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1357 ?\╬ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1358 ?\¤ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1359 ?\ð |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1360 ?\Ð |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1361 ?\Ê |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1362 ?\Ë |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1363 ?\È |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1364 ?\€ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1365 ?\Í |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1366 ?\Î |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1367 ?\Ï |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1368 ?\┘ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1369 ?\┌ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1370 ?\█ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1371 ?\▄ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1372 ?\¦ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1373 ?\Ì |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1374 ?\▀ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1375 ?\Ó |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1376 ?\ß |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1377 ?\Ô |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1378 ?\Ò |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1379 ?\õ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1380 ?\Õ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1381 ?\µ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1382 ?\þ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1383 ?\Þ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1384 ?\Ú |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1385 ?\Û |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1386 ?\Ù |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1387 ?\ý |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1388 ?\Ý |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1389 ?\¯ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1390 ?\´ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1391 ?\ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1392 ?\± |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1393 ?\‗ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1394 ?\¾ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1395 ?\¶ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1396 ?\§ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1397 ?\÷ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1398 ?\¸ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1399 ?\° |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1400 ?\¨ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1401 ?\· |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1402 ?\¹ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1403 ?\³ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1404 ?\² |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1405 ?\■ |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1406 ?\ ]) |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1407 |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
1408 ;;;###autoload(autoload-coding-system 'cp860 '(require 'code-pages)) |
42057 | 1409 (cp-make-coding-system |
1410 cp860 | |
1411 [?\Ç | |
1412 ?\ü | |
1413 ?\é | |
1414 ?\â | |
1415 ?\ã | |
1416 ?\à | |
1417 ?\Á | |
1418 ?\ç | |
1419 ?\ê | |
1420 ?\Ê | |
1421 ?\è | |
1422 ?\Î | |
1423 ?\Ô | |
1424 ?\ì | |
1425 ?\Ã | |
1426 ?\Â | |
1427 ?\É | |
1428 ?\À | |
1429 ?\È | |
1430 ?\ô | |
1431 ?\õ | |
1432 ?\ò | |
1433 ?\Ú | |
1434 ?\ù | |
1435 ?\Ì | |
1436 ?\Õ | |
1437 ?\Ü | |
1438 ?\¢ | |
1439 ?\£ | |
1440 ?\Ù | |
1441 ?\₧ | |
1442 ?\Ò | |
1443 ?\á | |
1444 ?\í | |
1445 ?\ó | |
1446 ?\ú | |
1447 ?\ñ | |
1448 ?\Ñ | |
1449 ?\ª | |
1450 ?\º | |
1451 ?\¿ | |
1452 ?\Ó | |
1453 ?\¬ | |
1454 ?\½ | |
1455 ?\¼ | |
1456 ?\¡ | |
1457 ?\« | |
1458 ?\» | |
1459 ?\░ | |
1460 ?\▒ | |
1461 ?\▓ | |
1462 ?\│ | |
1463 ?\┤ | |
1464 ?\╡ | |
1465 ?\╢ | |
1466 ?\╖ | |
1467 ?\╕ | |
1468 ?\╣ | |
1469 ?\║ | |
1470 ?\╗ | |
1471 ?\╝ | |
1472 ?\╜ | |
1473 ?\╛ | |
1474 ?\┐ | |
1475 ?\└ | |
1476 ?\┴ | |
1477 ?\┬ | |
1478 ?\├ | |
1479 ?\─ | |
1480 ?\┼ | |
1481 ?\╞ | |
1482 ?\╟ | |
1483 ?\╚ | |
1484 ?\╔ | |
1485 ?\╩ | |
1486 ?\╦ | |
1487 ?\╠ | |
1488 ?\═ | |
1489 ?\╬ | |
1490 ?\╧ | |
1491 ?\╨ | |
1492 ?\╤ | |
1493 ?\╥ | |
1494 ?\╙ | |
1495 ?\╘ | |
1496 ?\╒ | |
1497 ?\╓ | |
1498 ?\╫ | |
1499 ?\╪ | |
1500 ?\┘ | |
1501 ?\┌ | |
1502 ?\█ | |
1503 ?\▄ | |
1504 ?\▌ | |
1505 ?\▐ | |
1506 ?\▀ | |
1507 ?\α | |
1508 ?\ß | |
1509 ?\Γ | |
1510 ?\π | |
1511 ?\Σ | |
1512 ?\σ | |
1513 ?\µ | |
1514 ?\τ | |
1515 ?\Φ | |
1516 ?\Θ | |
1517 ?\Ω | |
1518 ?\δ | |
1519 ?\∞ | |
1520 ?\φ | |
1521 ?\ε | |
1522 ?\∩ | |
1523 ?\≡ | |
1524 ?\± | |
1525 ?\≥ | |
1526 ?\≤ | |
1527 ?\⌠ | |
1528 ?\⌡ | |
1529 ?\÷ | |
1530 ?\≈ | |
1531 ?\° | |
1532 ?\· | |
1533 ?\• | |
1534 ?\√ | |
1535 ?\ⁿ | |
1536 ?\² | |
1537 ?\■ | |
1538 ?\ ]) | |
1539 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
1540 ;;;###autoload(autoload-coding-system 'cp861 '(require 'code-pages)) |
42057 | 1541 (cp-make-coding-system |
1542 cp861 | |
1543 [?\Ç | |
1544 ?\ü | |
1545 ?\é | |
1546 ?\â | |
1547 ?\ä | |
1548 ?\à | |
1549 ?\å | |
1550 ?\ç | |
1551 ?\ê | |
1552 ?\ë | |
1553 ?\è | |
1554 ?\Ð | |
1555 ?\ð | |
1556 ?\Þ | |
1557 ?\Ä | |
1558 ?\Å | |
1559 ?\É | |
1560 ?\æ | |
1561 ?\Æ | |
1562 ?\ô | |
1563 ?\ö | |
1564 ?\þ | |
1565 ?\û | |
1566 ?\Ý | |
1567 ?\ý | |
1568 ?\Ö | |
1569 ?\Ü | |
1570 ?\ø | |
1571 ?\£ | |
1572 ?\Ø | |
1573 ?\₧ | |
1574 ?\Ò | |
1575 ?\á | |
1576 ?\í | |
1577 ?\ó | |
1578 ?\ú | |
1579 ?\Á | |
1580 ?\Í | |
1581 ?\Ó | |
1582 ?\Ú | |
1583 ?\¿ | |
1584 nil | |
1585 ?\¬ | |
1586 ?\½ | |
1587 ?\¼ | |
1588 ?\¡ | |
1589 ?\« | |
1590 ?\» | |
1591 ?\░ | |
1592 ?\▒ | |
1593 ?\▓ | |
1594 ?\│ | |
1595 ?\┤ | |
1596 ?\╡ | |
1597 ?\╢ | |
1598 ?\╖ | |
1599 ?\╕ | |
1600 ?\╣ | |
1601 ?\║ | |
1602 ?\╗ | |
1603 ?\╝ | |
1604 ?\╜ | |
1605 ?\╛ | |
1606 ?\┐ | |
1607 ?\└ | |
1608 ?\┴ | |
1609 ?\┬ | |
1610 ?\├ | |
1611 ?\─ | |
1612 ?\┼ | |
1613 ?\╞ | |
1614 ?\╟ | |
1615 ?\╚ | |
1616 ?\╔ | |
1617 ?\╩ | |
1618 ?\╦ | |
1619 ?\╠ | |
1620 ?\═ | |
1621 ?\╬ | |
1622 ?\╧ | |
1623 ?\╨ | |
1624 ?\╤ | |
1625 ?\╥ | |
1626 ?\╙ | |
1627 ?\╘ | |
1628 ?\╒ | |
1629 ?\╓ | |
1630 ?\╫ | |
1631 ?\╪ | |
1632 ?\┘ | |
1633 ?\┌ | |
1634 ?\█ | |
1635 ?\▄ | |
1636 ?\▌ | |
1637 ?\▐ | |
1638 ?\▀ | |
1639 ?\α | |
1640 ?\ß | |
1641 ?\Γ | |
1642 ?\π | |
1643 ?\Σ | |
1644 ?\σ | |
1645 ?\µ | |
1646 ?\τ | |
1647 ?\Φ | |
1648 ?\Θ | |
1649 ?\Ω | |
1650 ?\δ | |
1651 ?\∞ | |
1652 ?\φ | |
1653 ?\ε | |
1654 ?\∩ | |
1655 ?\≡ | |
1656 ?\± | |
1657 ?\≥ | |
1658 ?\≤ | |
1659 ?\⌠ | |
1660 ?\⌡ | |
1661 ?\÷ | |
1662 ?\≈ | |
1663 ?\° | |
1664 ?\· | |
1665 ?\• | |
1666 ?\√ | |
1667 ?\ⁿ | |
1668 ?\² | |
1669 ?\■ | |
1670 ?\ ]) | |
1671 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
1672 ;;;###autoload(autoload-coding-system 'cp862 '(require 'code-pages)) |
42057 | 1673 (cp-make-coding-system |
1674 cp862 | |
1675 [?\א | |
1676 ?\ב | |
1677 ?\ג | |
1678 ?\ד | |
1679 ?\ה | |
1680 ?\ו | |
1681 ?\ז | |
1682 ?\ח | |
1683 ?\ט | |
1684 ?\י | |
1685 ?\ך | |
1686 ?\כ | |
1687 ?\ל | |
1688 ?\ם | |
1689 ?\מ | |
1690 ?\ן | |
1691 ?\נ | |
1692 ?\ס | |
1693 ?\ע | |
1694 ?\ף | |
1695 ?\פ | |
1696 ?\ץ | |
1697 ?\צ | |
1698 ?\ק | |
1699 ?\ר | |
1700 ?\ש | |
1701 ?\ת | |
1702 ?\¢ | |
1703 ?\£ | |
1704 ?\Ù | |
1705 ?\₧ | |
1706 ?\Ò | |
1707 ?\á | |
1708 ?\í | |
1709 ?\ó | |
1710 ?\ú | |
1711 ?\ñ | |
1712 ?\Ñ | |
1713 ?\ª | |
1714 ?\º | |
1715 ?\¿ | |
1716 nil | |
1717 ?\¬ | |
1718 ?\½ | |
1719 ?\¼ | |
1720 ?\¡ | |
1721 ?\« | |
1722 ?\» | |
1723 ?\░ | |
1724 ?\▒ | |
1725 ?\▓ | |
1726 ?\│ | |
1727 ?\┤ | |
1728 ?\╡ | |
1729 ?\╢ | |
1730 ?\╖ | |
1731 ?\╕ | |
1732 ?\╣ | |
1733 ?\║ | |
1734 ?\╗ | |
1735 ?\╝ | |
1736 ?\╜ | |
1737 ?\╛ | |
1738 ?\┐ | |
1739 ?\└ | |
1740 ?\┴ | |
1741 ?\┬ | |
1742 ?\├ | |
1743 ?\─ | |
1744 ?\┼ | |
1745 ?\╞ | |
1746 ?\╟ | |
1747 ?\╚ | |
1748 ?\╔ | |
1749 ?\╩ | |
1750 ?\╦ | |
1751 ?\╠ | |
1752 ?\═ | |
1753 ?\╬ | |
1754 ?\╧ | |
1755 ?\╨ | |
1756 ?\╤ | |
1757 ?\╥ | |
1758 ?\╙ | |
1759 ?\╘ | |
1760 ?\╒ | |
1761 ?\╓ | |
1762 ?\╫ | |
1763 ?\╪ | |
1764 ?\┘ | |
1765 ?\┌ | |
1766 ?\█ | |
1767 ?\▄ | |
1768 ?\▌ | |
1769 ?\▐ | |
1770 ?\▀ | |
1771 ?\α | |
1772 ?\ß | |
1773 ?\Γ | |
1774 ?\π | |
1775 ?\Σ | |
1776 ?\σ | |
1777 ?\µ | |
1778 ?\τ | |
1779 ?\Φ | |
1780 ?\Θ | |
1781 ?\Ω | |
1782 ?\δ | |
1783 ?\∞ | |
1784 ?\φ | |
1785 ?\ε | |
1786 ?\∩ | |
1787 ?\≡ | |
1788 ?\± | |
1789 ?\≥ | |
1790 ?\≤ | |
1791 ?\⌠ | |
1792 ?\⌡ | |
1793 ?\÷ | |
1794 ?\≈ | |
1795 ?\° | |
1796 ?\· | |
1797 ?\• | |
1798 ?\√ | |
1799 ?\ⁿ | |
1800 ?\² | |
1801 ?\■ | |
1802 ?\ ]) | |
1803 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
1804 ;;;###autoload(autoload-coding-system 'cp863 '(require 'code-pages)) |
42057 | 1805 (cp-make-coding-system |
1806 cp863 | |
1807 [?\Ç | |
1808 ?\ü | |
1809 ?\é | |
1810 ?\â | |
1811 ?\Â | |
1812 ?\à | |
1813 ?\¶ | |
1814 ?\ç | |
1815 ?\ê | |
1816 ?\ë | |
1817 ?\è | |
1818 ?\ï | |
1819 ?\î | |
1820 ?\ì | |
1821 ?\À | |
1822 ?\§ | |
1823 ?\É | |
1824 ?\È | |
1825 ?\Ê | |
1826 ?\ô | |
1827 ?\Ë | |
1828 ?\Ï | |
1829 ?\û | |
1830 ?\ù | |
1831 ?\¤ | |
1832 ?\Ô | |
1833 ?\Ü | |
1834 ?\¢ | |
1835 ?\£ | |
1836 ?\Ù | |
1837 ?\Û | |
1838 ?\ƒ | |
1839 ?\¦ | |
1840 ?\´ | |
1841 ?\ó | |
1842 ?\ú | |
1843 ?\¨ | |
1844 ?\¸ | |
1845 ?\³ | |
1846 ?\¯ | |
1847 ?\Î | |
1848 ?\⌐ | |
1849 ?\¬ | |
1850 ?\½ | |
1851 ?\¼ | |
1852 ?\¾ | |
1853 ?\« | |
1854 ?\» | |
1855 ?\░ | |
1856 ?\▒ | |
1857 ?\▓ | |
1858 ?\│ | |
1859 ?\┤ | |
1860 ?\╡ | |
1861 ?\╢ | |
1862 ?\╖ | |
1863 ?\╕ | |
1864 ?\╣ | |
1865 ?\║ | |
1866 ?\╗ | |
1867 ?\╝ | |
1868 ?\╜ | |
1869 ?\╛ | |
1870 ?\┐ | |
1871 ?\└ | |
1872 ?\┴ | |
1873 ?\┬ | |
1874 ?\├ | |
1875 ?\─ | |
1876 ?\┼ | |
1877 ?\╞ | |
1878 ?\╟ | |
1879 ?\╚ | |
1880 ?\╔ | |
1881 ?\╩ | |
1882 ?\╦ | |
1883 ?\╠ | |
1884 ?\═ | |
1885 ?\╬ | |
1886 ?\╧ | |
1887 ?\╨ | |
1888 ?\╤ | |
1889 ?\╥ | |
1890 ?\╙ | |
1891 ?\╘ | |
1892 ?\╒ | |
1893 ?\╓ | |
1894 ?\╫ | |
1895 ?\╪ | |
1896 ?\┘ | |
1897 ?\┌ | |
1898 ?\█ | |
1899 ?\▄ | |
1900 ?\▌ | |
1901 ?\▐ | |
1902 ?\▀ | |
1903 ?\α | |
1904 ?\ß | |
1905 ?\Γ | |
1906 ?\π | |
1907 ?\Σ | |
1908 ?\σ | |
1909 ?\µ | |
1910 ?\τ | |
1911 ?\Φ | |
1912 ?\Θ | |
1913 ?\Ω | |
1914 ?\δ | |
1915 ?\∞ | |
1916 ?\∅ | |
1917 ?\ε | |
1918 ?\∩ | |
1919 ?\≡ | |
1920 ?\± | |
1921 ?\≥ | |
1922 ?\≤ | |
1923 ?\⌠ | |
1924 ?\⌡ | |
1925 ?\÷ | |
1926 ?\≈ | |
1927 ?\∘ | |
1928 ?\· | |
1929 ?\• | |
1930 ?\√ | |
1931 ?\ⁿ | |
1932 ?\² | |
1933 ?\■ | |
1934 ?\ ]) | |
1935 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
1936 ;;;###autoload(autoload-coding-system 'cp864 '(require 'code-pages)) |
42057 | 1937 (cp-make-coding-system |
1938 cp864 | |
1939 [?\° | |
1940 ?\· | |
1941 ?\∘ | |
1942 ?\√ | |
1943 ?\▒ | |
1944 ?\─ | |
1945 ?\│ | |
1946 ?\┼ | |
1947 ?\┤ | |
1948 ?\┬ | |
1949 ?\├ | |
1950 ?\┴ | |
1951 ?\┐ | |
1952 ?\┌ | |
1953 ?\└ | |
1954 ?\┘ | |
1955 ?\ß | |
1956 ?\∞ | |
1957 ?\ø | |
1958 ?\± | |
1959 ?\½ | |
1960 ?\¼ | |
1961 ?\≈ | |
1962 ?\« | |
1963 ?\» | |
1964 ?\ﻷ | |
1965 ?\ﻸ | |
1966 nil | |
1967 nil | |
1968 ?\ﻻ | |
1969 ?\ﻼ | |
1970 ?\ | |
1971 nil | |
1972 ?\ | |
1973 ?\ﺂ | |
1974 ?\£ | |
1975 ?\¤ | |
1976 ?\ﺄ | |
1977 nil | |
1978 nil | |
1979 ?\ﺎ | |
1980 ?\ب | |
1981 ?\ت | |
1982 ?\ث | |
1983 ?\، | |
1984 ?\ج | |
1985 ?\ح | |
1986 ?\خ | |
1987 ?\٠ | |
1988 ?\١ | |
1989 ?\٢ | |
1990 ?\٣ | |
1991 ?\٤ | |
1992 ?\٥ | |
1993 ?\٦ | |
1994 ?\٧ | |
1995 ?\٨ | |
1996 ?\٩ | |
1997 ?\ڤ | |
1998 ?\؛ | |
1999 ?\س | |
2000 ?\ش | |
2001 ?\ص | |
2002 ?\؟ | |
2003 ?\¢ | |
2004 ?\ء | |
2005 ?\آ | |
2006 ?\أ | |
2007 ?\ؤ | |
2008 ?\ﻊ | |
2009 ?\ئ | |
2010 ?\ا | |
2011 ?\ﺑ | |
2012 ?\ة | |
2013 ?\ﺗ | |
2014 ?\ﺛ | |
2015 ?\ﺟ | |
2016 ?\ﺣ | |
2017 ?\ﺧ | |
2018 ?\د | |
2019 ?\ذ | |
2020 ?\ر | |
2021 ?\ز | |
2022 ?\ﺳ | |
2023 ?\ﺷ | |
2024 ?\ﺻ | |
2025 ?\ﺿ | |
2026 ?\ط | |
2027 ?\ظ | |
2028 ?\ﻋ | |
2029 ?\ﻏ | |
2030 ?\¦ | |
2031 ?\¬ | |
2032 ?\÷ | |
2033 ?\× | |
2034 ?\ع | |
2035 ?\ـ | |
2036 ?\ﻒ | |
2037 ?\ﻖ | |
2038 ?\ﻛ | |
2039 ?\ﻞ | |
2040 ?\ﻣ | |
2041 ?\ﻦ | |
2042 ?\ﻫ | |
2043 ?\و | |
2044 ?\ى | |
2045 ?\ﻳ | |
2046 ?\ض | |
2047 ?\ﻢ | |
2048 ?\ﻎ | |
2049 ?\غ | |
2050 ?\م | |
2051 ?\ﹽ | |
2052 ?\ّ | |
2053 ?\ن | |
2054 ?\ه | |
2055 ?\ﻬ | |
2056 ?\ﻰ | |
2057 ?\ﻲ | |
2058 ?\ف | |
2059 ?\ق | |
2060 ?\ﻵ | |
2061 ?\ﻶ | |
2062 ?\ل | |
2063 ?\ك | |
2064 ?\ي | |
2065 ?\■ | |
2066 ?\ ]) | |
2067 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
2068 ;;;###autoload(autoload-coding-system 'cp865 '(require 'code-pages)) |
42057 | 2069 (cp-make-coding-system |
2070 cp865 | |
2071 [?\Ç | |
2072 ?\ü | |
2073 ?\é | |
2074 ?\â | |
2075 ?\ä | |
2076 ?\à | |
2077 ?\å | |
2078 ?\ç | |
2079 ?\ê | |
2080 ?\ë | |
2081 ?\è | |
2082 ?\ï | |
2083 ?\î | |
2084 ?\ì | |
2085 ?\Ä | |
2086 ?\Å | |
2087 ?\É | |
2088 ?\æ | |
2089 ?\Æ | |
2090 ?\ô | |
2091 ?\ö | |
2092 ?\ò | |
2093 ?\û | |
2094 ?\ù | |
2095 ?\ÿ | |
2096 ?\Ö | |
2097 ?\Ü | |
2098 ?\ø | |
2099 ?\£ | |
2100 ?\Ø | |
2101 ?\₧ | |
2102 ?\ƒ | |
2103 ?\á | |
2104 ?\í | |
2105 ?\ó | |
2106 ?\ú | |
2107 ?\ñ | |
2108 ?\Ñ | |
2109 ?\ª | |
2110 ?\º | |
2111 ?\¿ | |
2112 ?\⌐ | |
2113 ?\¬ | |
2114 ?\½ | |
2115 ?\¼ | |
2116 ?\¡ | |
2117 ?\« | |
2118 ?\» | |
2119 ?\░ | |
2120 ?\▒ | |
2121 ?\▓ | |
2122 ?\│ | |
2123 ?\┤ | |
2124 ?\╡ | |
2125 ?\╢ | |
2126 ?\╖ | |
2127 ?\╕ | |
2128 ?\╣ | |
2129 ?\║ | |
2130 ?\╗ | |
2131 ?\╝ | |
2132 ?\╜ | |
2133 ?\╛ | |
2134 ?\┐ | |
2135 ?\└ | |
2136 ?\┴ | |
2137 ?\┬ | |
2138 ?\├ | |
2139 ?\─ | |
2140 ?\┼ | |
2141 ?\╞ | |
2142 ?\╟ | |
2143 ?\╚ | |
2144 ?\╔ | |
2145 ?\╩ | |
2146 ?\╦ | |
2147 ?\╠ | |
2148 ?\═ | |
2149 ?\╬ | |
2150 ?\╧ | |
2151 ?\╨ | |
2152 ?\╤ | |
2153 ?\╥ | |
2154 ?\╙ | |
2155 ?\╘ | |
2156 ?\╒ | |
2157 ?\╓ | |
2158 ?\╫ | |
2159 ?\╪ | |
2160 ?\┘ | |
2161 ?\┌ | |
2162 ?\█ | |
2163 ?\▄ | |
2164 ?\▌ | |
2165 ?\▐ | |
2166 ?\▀ | |
2167 ?\α | |
2168 ?\ß | |
2169 ?\Γ | |
2170 ?\π | |
2171 ?\Σ | |
2172 ?\σ | |
2173 ?\µ | |
2174 ?\τ | |
2175 ?\Φ | |
2176 ?\Θ | |
2177 ?\Ω | |
2178 ?\δ | |
2179 ?\∞ | |
2180 ?\∅ | |
2181 ?\ε | |
2182 ?\∩ | |
2183 ?\≡ | |
2184 ?\± | |
2185 ?\≥ | |
2186 ?\≤ | |
2187 ?\⌠ | |
2188 ?\⌡ | |
2189 ?\÷ | |
2190 ?\≈ | |
2191 ?\∘ | |
2192 ?\· | |
2193 ?\• | |
2194 ?\√ | |
2195 ?\ⁿ | |
2196 ?\² | |
2197 ?\■ | |
2198 ?\ ]) | |
2199 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
2200 ;;;###autoload(autoload-coding-system 'cp866 '(require 'code-pages)) |
47911 | 2201 (cp-make-coding-system |
2202 cp866 | |
2203 [?\А | |
2204 ?\Б | |
2205 ?\В | |
2206 ?\Г | |
2207 ?\Д | |
2208 ?\Е | |
2209 ?\Ж | |
2210 ?\З | |
2211 ?\И | |
2212 ?\Й | |
2213 ?\К | |
2214 ?\Л | |
2215 ?\М | |
2216 ?\Н | |
2217 ?\О | |
2218 ?\П | |
2219 ?\Р | |
2220 ?\С | |
2221 ?\Т | |
2222 ?\У | |
2223 ?\Ф | |
2224 ?\Х | |
2225 ?\Ц | |
2226 ?\Ч | |
2227 ?\Ш | |
2228 ?\Щ | |
2229 ?\Ъ | |
2230 ?\Ы | |
2231 ?\Ь | |
2232 ?\Э | |
2233 ?\Ю | |
2234 ?\Я | |
2235 ?\а | |
2236 ?\б | |
2237 ?\в | |
2238 ?\г | |
2239 ?\д | |
2240 ?\е | |
2241 ?\ж | |
2242 ?\з | |
2243 ?\и | |
2244 ?\й | |
2245 ?\к | |
2246 ?\л | |
2247 ?\м | |
2248 ?\н | |
2249 ?\о | |
2250 ?\п | |
2251 ?\░ | |
2252 ?\▒ | |
2253 ?\▓ | |
2254 ?\│ | |
2255 ?\┤ | |
2256 ?\╡ | |
2257 ?\╢ | |
2258 ?\╖ | |
2259 ?\╕ | |
2260 ?\╣ | |
2261 ?\║ | |
2262 ?\╗ | |
2263 ?\╝ | |
2264 ?\╜ | |
2265 ?\╛ | |
2266 ?\┐ | |
2267 ?\└ | |
2268 ?\┴ | |
2269 ?\┬ | |
2270 ?\├ | |
2271 ?\─ | |
2272 ?\┼ | |
2273 ?\╞ | |
2274 ?\╟ | |
2275 ?\╚ | |
2276 ?\╔ | |
2277 ?\╩ | |
2278 ?\╦ | |
2279 ?\╠ | |
2280 ?\═ | |
2281 ?\╬ | |
2282 ?\╧ | |
2283 ?\╨ | |
2284 ?\╤ | |
2285 ?\╥ | |
2286 ?\╙ | |
2287 ?\╘ | |
2288 ?\╒ | |
2289 ?\╓ | |
2290 ?\╫ | |
2291 ?\╪ | |
2292 ?\┘ | |
2293 ?\┌ | |
2294 ?\█ | |
2295 ?\▄ | |
2296 ?\▌ | |
2297 ?\▐ | |
2298 ?\▀ | |
2299 ?\р | |
2300 ?\с | |
2301 ?\т | |
2302 ?\у | |
2303 ?\ф | |
2304 ?\х | |
2305 ?\ц | |
2306 ?\ч | |
2307 ?\ш | |
2308 ?\щ | |
2309 ?\ъ | |
2310 ?\ы | |
2311 ?\ь | |
2312 ?\э | |
2313 ?\ю | |
2314 ?\я | |
2315 ?\Ё | |
2316 ?\ё | |
2317 ?\Є | |
2318 ?\є | |
2319 ?\Ї | |
2320 ?\ї | |
2321 ?\Ў | |
2322 ?\ў | |
2323 ?\° | |
2324 ?\∙ | |
2325 ?\· | |
2326 ?\√ | |
2327 ?\№ | |
2328 ?\¤ | |
2329 ?\■ | |
2330 ?\ ] | |
2331 "CP866 (Cyrillic)." | |
2332 ?A) | |
42057 | 2333 |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
2334 ;;;###autoload(autoload-coding-system 'cp869 '(require 'code-pages)) |
42057 | 2335 (cp-make-coding-system |
2336 cp869 | |
2337 [nil | |
2338 nil | |
2339 nil | |
2340 nil | |
2341 nil | |
2342 nil | |
2343 ?\Ά | |
2344 nil | |
2345 ?\· | |
2346 ?\¬ | |
2347 ?\¦ | |
2348 ?\‛ | |
2349 ?\’ | |
2350 ?\Έ | |
2351 ?\— | |
2352 ?\Ή | |
2353 ?\Ί | |
2354 ?\Ϊ | |
2355 ?\Ό | |
2356 nil | |
2357 nil | |
2358 ?\Ύ | |
2359 ?\Ϋ | |
2360 ?\© | |
2361 ?\Ώ | |
2362 ?\² | |
2363 ?\³ | |
2364 ?\ά | |
2365 ?\£ | |
2366 ?\έ | |
2367 ?\ή | |
2368 ?\ί | |
2369 ?\ϊ | |
2370 ?\ΐ | |
2371 ?\ό | |
2372 ?\ύ | |
2373 ?\Α | |
2374 ?\Β | |
2375 ?\Γ | |
2376 ?\Δ | |
2377 ?\Ε | |
2378 ?\Ζ | |
2379 ?\Η | |
2380 ?\½ | |
2381 ?\Θ | |
2382 ?\Ι | |
2383 ?\« | |
2384 ?\» | |
2385 ?\░ | |
2386 ?\▒ | |
2387 ?\▓ | |
2388 ?\│ | |
2389 ?\┤ | |
2390 ?\Κ | |
2391 ?\Λ | |
2392 ?\Μ | |
2393 ?\Ν | |
2394 ?\╣ | |
2395 ?\║ | |
2396 ?\╗ | |
2397 ?\╝ | |
2398 ?\Ξ | |
2399 ?\Ο | |
2400 ?\┐ | |
2401 ?\└ | |
2402 ?\┴ | |
2403 ?\┬ | |
2404 ?\├ | |
2405 ?\─ | |
2406 ?\┼ | |
2407 ?\Π | |
2408 ?\Ρ | |
2409 ?\╚ | |
2410 ?\╔ | |
2411 ?\╩ | |
2412 ?\╦ | |
2413 ?\╠ | |
2414 ?\═ | |
2415 ?\╬ | |
2416 ?\Σ | |
2417 ?\Τ | |
2418 ?\Υ | |
2419 ?\Φ | |
2420 ?\Χ | |
2421 ?\Ψ | |
2422 ?\Ω | |
2423 ?\α | |
2424 ?\β | |
2425 ?\γ | |
2426 ?\┘ | |
2427 ?\┌ | |
2428 ?\█ | |
2429 ?\▄ | |
2430 ?\δ | |
2431 ?\ε | |
2432 ?\▀ | |
2433 ?\ζ | |
2434 ?\η | |
2435 ?\θ | |
2436 ?\ι | |
2437 ?\κ | |
2438 ?\λ | |
2439 ?\μ | |
2440 ?\ν | |
2441 ?\ξ | |
2442 ?\ο | |
2443 ?\π | |
2444 ?\ρ | |
2445 ?\σ | |
2446 ?\ς | |
2447 ?\τ | |
2448 ?\´ | |
2449 ?\ | |
2450 ?\± | |
2451 ?\υ | |
2452 ?\φ | |
2453 ?\χ | |
2454 ?\§ | |
2455 ?\ψ | |
2456 ?\΅ | |
2457 ?\° | |
2458 ?\¨ | |
2459 ?\ω | |
2460 ?\ϋ | |
2461 ?\ΰ | |
2462 ?\ώ | |
2463 ?\■ | |
2464 ?\ ]) | |
2465 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
2466 ;;;###autoload(autoload-coding-system 'cp874 '(require 'code-pages)) |
42057 | 2467 (cp-make-coding-system |
2468 cp874 | |
2469 [?\€ | |
2470 nil | |
2471 nil | |
2472 nil | |
2473 nil | |
2474 ?\… | |
2475 nil | |
2476 nil | |
2477 nil | |
2478 nil | |
2479 nil | |
2480 nil | |
2481 nil | |
2482 nil | |
2483 nil | |
2484 nil | |
2485 nil | |
2486 ?\‘ | |
2487 ?\’ | |
2488 ?\“ | |
2489 ?\” | |
2490 ?\• | |
2491 ?\– | |
2492 ?\— | |
2493 nil | |
2494 nil | |
2495 nil | |
2496 nil | |
2497 nil | |
2498 nil | |
2499 nil | |
2500 nil | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
2501 ?\ |
42057 | 2502 ?\ก |
2503 ?\ข | |
2504 ?\ฃ | |
2505 ?\ค | |
2506 ?\ฅ | |
2507 ?\ฆ | |
2508 ?\ง | |
2509 ?\จ | |
2510 ?\ฉ | |
2511 ?\ช | |
2512 ?\ซ | |
2513 ?\ฌ | |
2514 ?\ญ | |
2515 ?\ฎ | |
2516 ?\ฏ | |
2517 ?\ฐ | |
2518 ?\ฑ | |
2519 ?\ฒ | |
2520 ?\ณ | |
2521 ?\ด | |
2522 ?\ต | |
2523 ?\ถ | |
2524 ?\ท | |
2525 ?\ธ | |
2526 ?\น | |
2527 ?\บ | |
2528 ?\ป | |
2529 ?\ผ | |
2530 ?\ฝ | |
2531 ?\พ | |
2532 ?\ฟ | |
2533 ?\ภ | |
2534 ?\ม | |
2535 ?\ย | |
2536 ?\ร | |
2537 ?\ฤ | |
2538 ?\ล | |
2539 ?\ฦ | |
2540 ?\ว | |
2541 ?\ศ | |
2542 ?\ษ | |
2543 ?\ส | |
2544 ?\ห | |
2545 ?\ฬ | |
2546 ?\อ | |
2547 ?\ฮ | |
2548 ?\ฯ | |
2549 ?\ะ | |
2550 ?\ั | |
2551 ?\า | |
2552 ?\ำ | |
2553 ?\ิ | |
2554 ?\ี | |
2555 ?\ึ | |
2556 ?\ื | |
2557 ?\ุ | |
2558 ?\ู | |
2559 ?\ฺ | |
2560 nil | |
2561 nil | |
2562 nil | |
2563 nil | |
2564 ?\฿ | |
2565 ?\เ | |
2566 ?\แ | |
2567 ?\โ | |
2568 ?\ใ | |
2569 ?\ไ | |
2570 ?\ๅ | |
2571 ?\ๆ | |
2572 ?\็ | |
2573 ?\่ | |
2574 ?\้ | |
2575 ?\๊ | |
2576 ?\๋ | |
2577 ?\์ | |
2578 ?\ํ | |
2579 ?\๎ | |
2580 ?\๏ | |
2581 ?\๐ | |
2582 ?\๑ | |
2583 ?\๒ | |
2584 ?\๓ | |
2585 ?\๔ | |
2586 ?\๕ | |
2587 ?\๖ | |
2588 ?\๗ | |
2589 ?\๘ | |
2590 ?\๙ | |
2591 ?\๚ | |
2592 ?\๛ | |
2593 nil | |
2594 nil | |
2595 nil | |
2596 nil]) | |
2597 | |
60371
49e4e175b817
(windows-1250, windows-125[2-8])
Reiner Steib <Reiner.Steib@gmx.de>
parents:
56100
diff
changeset
|
2598 ;;;###autoload(autoload-coding-system 'windows-1250 '(require 'code-pages)) |
68208
4bc30665eef2
Add autoload cookies for cp125[0345678].
Kenichi Handa <handa@m17n.org>
parents:
65680
diff
changeset
|
2599 ;;;###autoload(autoload-coding-system 'cp1250 '(require 'code-pages)) |
42057 | 2600 (cp-make-coding-system |
2601 windows-1250 | |
2602 [?\€ | |
2603 nil | |
2604 ?\‚ | |
2605 nil | |
2606 ?\„ | |
2607 ?\… | |
2608 ?\† | |
2609 ?\‡ | |
2610 nil | |
2611 ?\‰ | |
2612 ?\Š | |
2613 ?\‹ | |
2614 ?\Ś | |
2615 ?\Ť | |
2616 ?\Ž | |
2617 ?\Ź | |
2618 nil | |
2619 ?\‘ | |
2620 ?\’ | |
2621 ?\“ | |
2622 ?\” | |
2623 ?\• | |
2624 ?\– | |
2625 ?\— | |
2626 nil | |
2627 ?\™ | |
2628 ?\š | |
2629 ?\› | |
2630 ?\ś | |
2631 ?\ť | |
2632 ?\ž | |
2633 ?\ź | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
2634 ?\ |
42057 | 2635 ?\ˇ |
2636 ?\˘ | |
2637 ?\Ł | |
2638 ?\¤ | |
2639 ?\Ą | |
2640 ?\¦ | |
2641 ?\§ | |
2642 ?\¨ | |
2643 ?\© | |
2644 ?\Ş | |
2645 ?\« | |
2646 ?\¬ | |
2647 ?\ | |
2648 ?\® | |
2649 ?\Ż | |
2650 ?\° | |
2651 ?\± | |
2652 ?\˛ | |
2653 ?\ł | |
2654 ?\´ | |
2655 ?\µ | |
2656 ?\¶ | |
2657 ?\· | |
2658 ?\¸ | |
2659 ?\ą | |
2660 ?\ş | |
2661 ?\» | |
2662 ?\Ľ | |
2663 ?\˝ | |
2664 ?\ľ | |
2665 ?\ż | |
2666 ?\Ŕ | |
2667 ?\Á | |
2668 ?\Â | |
2669 ?\Ă | |
2670 ?\Ä | |
2671 ?\Ĺ | |
2672 ?\Ć | |
2673 ?\Ç | |
2674 ?\Č | |
2675 ?\É | |
2676 ?\Ę | |
2677 ?\Ë | |
2678 ?\Ě | |
2679 ?\Í | |
2680 ?\Î | |
2681 ?\Ď | |
2682 ?\Đ | |
2683 ?\Ń | |
2684 ?\Ň | |
2685 ?\Ó | |
2686 ?\Ô | |
2687 ?\Ő | |
2688 ?\Ö | |
2689 ?\× | |
2690 ?\Ř | |
2691 ?\Ů | |
2692 ?\Ú | |
2693 ?\Ű | |
2694 ?\Ü | |
2695 ?\Ý | |
2696 ?\Ţ | |
2697 ?\ß | |
2698 ?\ŕ | |
2699 ?\á | |
2700 ?\â | |
2701 ?\ă | |
2702 ?\ä | |
2703 ?\ĺ | |
2704 ?\ć | |
2705 ?\ç | |
2706 ?\č | |
2707 ?\é | |
2708 ?\ę | |
2709 ?\ë | |
2710 ?\ě | |
2711 ?\í | |
2712 ?\î | |
2713 ?\ď | |
2714 ?\đ | |
2715 ?\ń | |
2716 ?\ň | |
2717 ?\ó | |
2718 ?\ô | |
2719 ?\ő | |
2720 ?\ö | |
2721 ?\÷ | |
2722 ?\ř | |
2723 ?\ů | |
2724 ?\ú | |
2725 ?\ű | |
2726 ?\ü | |
2727 ?\ý | |
2728 ?\ţ | |
2729 ?\˙]) | |
2730 | |
60371
49e4e175b817
(windows-1250, windows-125[2-8])
Reiner Steib <Reiner.Steib@gmx.de>
parents:
56100
diff
changeset
|
2731 ;;;###autoload(autoload-coding-system 'windows-1253 '(require 'code-pages)) |
68208
4bc30665eef2
Add autoload cookies for cp125[0345678].
Kenichi Handa <handa@m17n.org>
parents:
65680
diff
changeset
|
2732 ;;;###autoload(autoload-coding-system 'cp1253 '(require 'code-pages)) |
42057 | 2733 (cp-make-coding-system |
2734 windows-1253 | |
2735 [?\€ | |
2736 nil | |
2737 ?\‚ | |
2738 ?\ƒ | |
2739 ?\„ | |
2740 ?\… | |
2741 ?\† | |
2742 ?\‡ | |
2743 nil | |
2744 ?\‰ | |
2745 nil | |
2746 ?\‹ | |
2747 nil | |
2748 nil | |
2749 nil | |
2750 nil | |
2751 nil | |
2752 ?\‘ | |
2753 ?\’ | |
2754 ?\“ | |
2755 ?\” | |
2756 ?\• | |
2757 ?\– | |
2758 ?\— | |
2759 nil | |
2760 ?\™ | |
2761 nil | |
2762 ?\› | |
2763 nil | |
2764 nil | |
2765 nil | |
2766 nil | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
2767 ?\ |
42057 | 2768 ?\΅ |
2769 ?\Ά | |
2770 ?\£ | |
2771 ?\¤ | |
2772 ?\¥ | |
2773 ?\¦ | |
2774 ?\§ | |
2775 ?\¨ | |
2776 ?\© | |
2777 nil | |
2778 ?\« | |
2779 ?\¬ | |
2780 ?\ | |
2781 ?\® | |
2782 ?\― | |
2783 ?\° | |
2784 ?\± | |
2785 ?\² | |
2786 ?\³ | |
2787 ?\΄ | |
2788 ?\µ | |
2789 ?\¶ | |
2790 ?\· | |
2791 ?\Έ | |
2792 ?\Ή | |
2793 ?\Ί | |
2794 ?\» | |
2795 ?\Ό | |
2796 ?\½ | |
2797 ?\Ύ | |
2798 ?\Ώ | |
2799 ?\ΐ | |
2800 ?\Α | |
2801 ?\Β | |
2802 ?\Γ | |
2803 ?\Δ | |
2804 ?\Ε | |
2805 ?\Ζ | |
2806 ?\Η | |
2807 ?\Θ | |
2808 ?\Ι | |
2809 ?\Κ | |
2810 ?\Λ | |
2811 ?\Μ | |
2812 ?\Ν | |
2813 ?\Ξ | |
2814 ?\Ο | |
2815 ?\Π | |
2816 ?\Ρ | |
2817 nil | |
2818 ?\Σ | |
2819 ?\Τ | |
2820 ?\Υ | |
2821 ?\Φ | |
2822 ?\Χ | |
2823 ?\Ψ | |
2824 ?\Ω | |
2825 ?\Ϊ | |
2826 ?\Ϋ | |
2827 ?\ά | |
2828 ?\έ | |
2829 ?\ή | |
2830 ?\ί | |
2831 ?\ΰ | |
2832 ?\α | |
2833 ?\β | |
2834 ?\γ | |
2835 ?\δ | |
2836 ?\ε | |
2837 ?\ζ | |
2838 ?\η | |
2839 ?\θ | |
2840 ?\ι | |
2841 ?\κ | |
2842 ?\λ | |
2843 ?\μ | |
2844 ?\ν | |
2845 ?\ξ | |
2846 ?\ο | |
2847 ?\π | |
2848 ?\ρ | |
2849 ?\ς | |
2850 ?\σ | |
2851 ?\τ | |
2852 ?\υ | |
2853 ?\φ | |
2854 ?\χ | |
2855 ?\ψ | |
2856 ?\ω | |
2857 ?\ϊ | |
2858 ?\ϋ | |
2859 ?\ό | |
2860 ?\ύ | |
2861 ?\ώ | |
2862 nil] | |
2863 nil ?g) ;; Greek | |
2864 | |
60371
49e4e175b817
(windows-1250, windows-125[2-8])
Reiner Steib <Reiner.Steib@gmx.de>
parents:
56100
diff
changeset
|
2865 ;;;###autoload(autoload-coding-system 'windows-1254 '(require 'code-pages)) |
68208
4bc30665eef2
Add autoload cookies for cp125[0345678].
Kenichi Handa <handa@m17n.org>
parents:
65680
diff
changeset
|
2866 ;;;###autoload(autoload-coding-system 'cp1254 '(require 'code-pages)) |
42057 | 2867 (cp-make-coding-system |
2868 windows-1254 | |
2869 [?\€ | |
2870 nil | |
2871 ?\‚ | |
2872 ?\ƒ | |
2873 ?\„ | |
2874 ?\… | |
2875 ?\† | |
2876 ?\‡ | |
2877 ?\ˆ | |
2878 ?\‰ | |
2879 ?\Š | |
2880 ?\‹ | |
2881 ?\Œ | |
2882 nil | |
2883 nil | |
2884 nil | |
2885 nil | |
2886 ?\‘ | |
2887 ?\’ | |
2888 ?\“ | |
2889 ?\” | |
2890 ?\• | |
2891 ?\– | |
2892 ?\— | |
2893 ?\˜ | |
2894 ?\™ | |
2895 ?\š | |
2896 ?\› | |
2897 ?\œ | |
2898 nil | |
2899 nil | |
2900 ?\Ÿ | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
2901 ?\ |
42057 | 2902 ?\¡ |
2903 ?\¢ | |
2904 ?\£ | |
2905 ?\¤ | |
2906 ?\¥ | |
2907 ?\¦ | |
2908 ?\§ | |
2909 ?\¨ | |
2910 ?\© | |
2911 ?\ª | |
2912 ?\« | |
2913 ?\¬ | |
2914 ?\ | |
2915 ?\® | |
2916 ?\¯ | |
2917 ?\° | |
2918 ?\± | |
2919 ?\² | |
2920 ?\³ | |
2921 ?\´ | |
2922 ?\µ | |
2923 ?\¶ | |
2924 ?\· | |
2925 ?\¸ | |
2926 ?\¹ | |
2927 ?\º | |
2928 ?\» | |
2929 ?\¼ | |
2930 ?\½ | |
2931 ?\¾ | |
2932 ?\¿ | |
2933 ?\À | |
2934 ?\Á | |
2935 ?\Â | |
2936 ?\Ã | |
2937 ?\Ä | |
2938 ?\Å | |
2939 ?\Æ | |
2940 ?\Ç | |
2941 ?\È | |
2942 ?\É | |
2943 ?\Ê | |
2944 ?\Ë | |
2945 ?\Ì | |
2946 ?\Í | |
2947 ?\Î | |
2948 ?\Ï | |
2949 ?\Ğ | |
2950 ?\Ñ | |
2951 ?\Ò | |
2952 ?\Ó | |
2953 ?\Ô | |
2954 ?\Õ | |
2955 ?\Ö | |
2956 ?\× | |
2957 ?\Ø | |
2958 ?\Ù | |
2959 ?\Ú | |
2960 ?\Û | |
2961 ?\Ü | |
2962 ?\İ | |
2963 ?\Ş | |
2964 ?\ß | |
2965 ?\à | |
2966 ?\á | |
2967 ?\â | |
2968 ?\ã | |
2969 ?\ä | |
2970 ?\å | |
2971 ?\æ | |
2972 ?\ç | |
2973 ?\è | |
2974 ?\é | |
2975 ?\ę | |
2976 ?\ë | |
2977 ?\ė | |
2978 ?\í | |
2979 ?\î | |
2980 ?\ī | |
2981 ?\ğ | |
2982 ?\ñ | |
2983 ?\ò | |
2984 ?\ó | |
2985 ?\ô | |
2986 ?\õ | |
2987 ?\ö | |
2988 ?\÷ | |
2989 ?\ø | |
2990 ?\ù | |
2991 ?\ú | |
2992 ?\û | |
2993 ?\ü | |
2994 ?\ı | |
2995 ?\ş | |
2996 ?\ÿ]) | |
2997 | |
2998 ;; yi_US | |
60371
49e4e175b817
(windows-1250, windows-125[2-8])
Reiner Steib <Reiner.Steib@gmx.de>
parents:
56100
diff
changeset
|
2999 ;;;###autoload(autoload-coding-system 'windows-1255 '(require 'code-pages)) |
68208
4bc30665eef2
Add autoload cookies for cp125[0345678].
Kenichi Handa <handa@m17n.org>
parents:
65680
diff
changeset
|
3000 ;;;###autoload(autoload-coding-system 'cp1255 '(require 'code-pages)) |
42057 | 3001 (cp-make-coding-system |
3002 windows-1255 | |
3003 [?\€ | |
3004 nil | |
3005 ?\‚ | |
3006 ?\ƒ | |
3007 ?\„ | |
3008 ?\… | |
3009 ?\† | |
3010 ?\‡ | |
3011 ?\ˆ | |
3012 ?\‰ | |
3013 nil | |
3014 ?\‹ | |
3015 nil | |
3016 nil | |
3017 nil | |
3018 nil | |
3019 nil | |
3020 ?\‘ | |
3021 ?\’ | |
3022 ?\“ | |
3023 ?\” | |
3024 ?\• | |
3025 ?\– | |
3026 ?\— | |
3027 ?\˜ | |
3028 ?\™ | |
3029 nil | |
3030 ?\› | |
3031 nil | |
3032 nil | |
3033 nil | |
3034 nil | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
3035 ?\ |
42057 | 3036 ?\¡ |
3037 ?\¢ | |
3038 ?\£ | |
3039 ?\₪ | |
3040 ?\¥ | |
3041 ?\¦ | |
3042 ?\§ | |
3043 ?\¨ | |
3044 ?\© | |
3045 ?\× | |
3046 ?\« | |
3047 ?\¬ | |
3048 ?\ | |
3049 ?\® | |
3050 ?\¯ | |
3051 ?\° | |
3052 ?\± | |
3053 ?\² | |
3054 ?\³ | |
3055 ?\´ | |
3056 ?\µ | |
3057 ?\¶ | |
3058 ?\· | |
3059 ?\¸ | |
3060 ?\¹ | |
3061 ?\÷ | |
3062 ?\» | |
3063 ?\¼ | |
3064 ?\½ | |
3065 ?\¾ | |
3066 ?\¿ | |
3067 ?\ְ | |
3068 ?\ֱ | |
3069 ?\ֲ | |
3070 ?\ֳ | |
3071 ?\ִ | |
3072 ?\ֵ | |
3073 ?\ֶ | |
3074 ?\ַ | |
3075 ?\ָ | |
3076 ?\ֹ | |
3077 nil | |
3078 ?\ֻ | |
3079 ?\ּ | |
3080 ?\ֽ | |
3081 ?\־ | |
3082 ?\ֿ | |
3083 ?\׀ | |
3084 ?\ׁ | |
3085 ?\ׂ | |
3086 ?\׃ | |
3087 ?\װ | |
3088 ?\ױ | |
3089 ?\ײ | |
3090 ?\׳ | |
3091 ?\״ | |
3092 nil | |
3093 nil | |
3094 nil | |
3095 nil | |
3096 nil | |
3097 nil | |
3098 nil | |
3099 ?\א | |
3100 ?\ב | |
3101 ?\ג | |
3102 ?\ד | |
3103 ?\ה | |
3104 ?\ו | |
3105 ?\ז | |
3106 ?\ח | |
3107 ?\ט | |
3108 ?\י | |
3109 ?\ך | |
3110 ?\כ | |
3111 ?\ל | |
3112 ?\ם | |
3113 ?\מ | |
3114 ?\ן | |
3115 ?\נ | |
3116 ?\ס | |
3117 ?\ע | |
3118 ?\ף | |
3119 ?\פ | |
3120 ?\ץ | |
3121 ?\צ | |
3122 ?\ק | |
3123 ?\ר | |
3124 ?\ש | |
3125 ?\ת | |
3126 nil | |
3127 nil | |
3128 ?\ | |
3129 ?\ | |
3130 nil] | |
3131 nil ?h) ;; Hebrew | |
3132 | |
60371
49e4e175b817
(windows-1250, windows-125[2-8])
Reiner Steib <Reiner.Steib@gmx.de>
parents:
56100
diff
changeset
|
3133 ;;;###autoload(autoload-coding-system 'windows-1256 '(require 'code-pages)) |
68208
4bc30665eef2
Add autoload cookies for cp125[0345678].
Kenichi Handa <handa@m17n.org>
parents:
65680
diff
changeset
|
3134 ;;;###autoload(autoload-coding-system 'cp1256 '(require 'code-pages)) |
42057 | 3135 (cp-make-coding-system |
3136 windows-1256 | |
3137 [?\€ | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3138 ?\پ |
42057 | 3139 ?\‚ |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3140 ?\ƒ |
42057 | 3141 ?\„ |
3142 ?\… | |
3143 ?\† | |
3144 ?\‡ | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3145 ?\ˆ |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3146 ?\‰ |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3147 ?\ٹ |
42057 | 3148 ?\‹ |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3149 ?\Œ |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3150 ?\چ |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3151 ?\ژ |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3152 ?\ڈ |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3153 ?\گ |
42057 | 3154 ?\‘ |
3155 ?\’ | |
3156 ?\“ | |
3157 ?\” | |
3158 ?\• | |
3159 ?\– | |
3160 ?\— | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3161 ?\ک |
42057 | 3162 ?\™ |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3163 ?\ڑ |
42057 | 3164 ?\› |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3165 ?\œ |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3166 ?\ |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3167 ?\ |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3168 ?\ں |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
3169 ?\ |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3170 ?\، |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3171 ?\¢ |
42057 | 3172 ?\£ |
3173 ?\¤ | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3174 ?\¥ |
42057 | 3175 ?\¦ |
3176 ?\§ | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3177 ?\¨ |
42057 | 3178 ?\© |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3179 ?\ھ |
42057 | 3180 ?\« |
3181 ?\¬ | |
3182 ?\ | |
3183 ?\® | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3184 ?\¯ |
42057 | 3185 ?\° |
3186 ?\± | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3187 ?\² |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3188 ?\³ |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3189 ?\´ |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3190 ?\µ |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3191 ?\¶ |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3192 ?\· |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3193 ?\¸ |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3194 ?\¹ |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3195 ?\؛ |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3196 ?\» |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3197 ?\¼ |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3198 ?\½ |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3199 ?\¾ |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3200 ?\؟ |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3201 ?\ہ |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3202 ?\ء |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3203 ?\آ |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3204 ?\أ |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3205 ?\ؤ |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3206 ?\إ |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3207 ?\ئ |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3208 ?\ا |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3209 ?\ب |
42057 | 3210 ?\ة |
3211 ?\ت | |
3212 ?\ث | |
3213 ?\ج | |
3214 ?\ح | |
3215 ?\خ | |
3216 ?\د | |
3217 ?\ذ | |
3218 ?\ر | |
3219 ?\ز | |
3220 ?\س | |
3221 ?\ش | |
3222 ?\ص | |
3223 ?\ض | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3224 ?\× |
42057 | 3225 ?\ط |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3226 ?\ظ |
42057 | 3227 ?\ع |
3228 ?\غ | |
3229 ?\ـ | |
3230 ?\ف | |
3231 ?\ق | |
3232 ?\ك | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3233 ?\à |
42057 | 3234 ?\ل |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3235 ?\â |
42057 | 3236 ?\م |
3237 ?\ن | |
3238 ?\ه | |
3239 ?\و | |
3240 ?\ç | |
3241 ?\è | |
3242 ?\é | |
3243 ?\ê | |
3244 ?\ë | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3245 ?\ى |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3246 ?\ي |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3247 ?\î |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3248 ?\ï |
42057 | 3249 ?\ً |
3250 ?\ٌ | |
3251 ?\ٍ | |
3252 ?\َ | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3253 ?\ô |
42057 | 3254 ?\ُ |
3255 ?\ِ | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3256 ?\÷ |
42057 | 3257 ?\ّ |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3258 ?\ù |
42057 | 3259 ?\ْ |
3260 ?\û | |
3261 ?\ü | |
3262 ?\ | |
3263 ?\ | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3264 ?\ے] |
42057 | 3265 nil ?a) ;; Arabic |
3266 | |
60371
49e4e175b817
(windows-1250, windows-125[2-8])
Reiner Steib <Reiner.Steib@gmx.de>
parents:
56100
diff
changeset
|
3267 ;;;###autoload(autoload-coding-system 'windows-1257 '(require 'code-pages)) |
68208
4bc30665eef2
Add autoload cookies for cp125[0345678].
Kenichi Handa <handa@m17n.org>
parents:
65680
diff
changeset
|
3268 ;;;###autoload(autoload-coding-system 'cp1257 '(require 'code-pages)) |
42057 | 3269 (cp-make-coding-system |
3270 windows-1257 | |
3271 [?\€ | |
3272 nil | |
3273 ?\‚ | |
3274 nil | |
3275 ?\„ | |
3276 ?\… | |
3277 ?\† | |
3278 ?\‡ | |
3279 nil | |
3280 ?\‰ | |
3281 nil | |
3282 ?\‹ | |
3283 nil | |
3284 nil | |
3285 nil | |
3286 nil | |
3287 nil | |
3288 ?\‘ | |
3289 ?\’ | |
3290 ?\“ | |
3291 ?\” | |
3292 ?\• | |
3293 ?\– | |
3294 ?\— | |
3295 nil | |
3296 ?\™ | |
3297 nil | |
3298 ?\› | |
3299 nil | |
3300 nil | |
3301 nil | |
3302 nil | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
3303 ?\ |
42057 | 3304 nil |
3305 ?\¢ | |
3306 ?\£ | |
3307 ?\¤ | |
3308 nil | |
3309 ?\¦ | |
3310 ?\§ | |
3311 ?\Ø | |
3312 ?\© | |
3313 ?\Ŗ | |
3314 ?\« | |
3315 ?\¬ | |
3316 ?\ | |
3317 ?\® | |
3318 ?\Æ | |
3319 ?\° | |
3320 ?\± | |
3321 ?\² | |
3322 ?\³ | |
3323 nil | |
3324 ?\µ | |
3325 ?\¶ | |
3326 ?\· | |
3327 ?\ø | |
3328 ?\¹ | |
3329 ?\ŗ | |
3330 ?\» | |
3331 ?\¼ | |
3332 ?\½ | |
3333 ?\¾ | |
3334 ?\æ | |
3335 ?\Ą | |
3336 ?\Į | |
3337 ?\Ā | |
3338 ?\Ć | |
3339 ?\Ä | |
3340 ?\Å | |
3341 ?\Ę | |
3342 ?\Ē | |
3343 ?\Č | |
3344 ?\É | |
3345 ?\Ź | |
3346 ?\Ė | |
3347 ?\Ģ | |
3348 ?\Ķ | |
3349 ?\Ī | |
3350 ?\Ļ | |
3351 ?\Š | |
3352 ?\Ń | |
3353 ?\Ņ | |
3354 ?\Ó | |
3355 ?\Ō | |
3356 ?\Õ | |
3357 ?\Ö | |
3358 ?\× | |
3359 ?\Ų | |
3360 ?\Ł | |
3361 ?\Ś | |
3362 ?\Ū | |
3363 ?\Ü | |
3364 ?\Ż | |
3365 ?\Ž | |
3366 ?\ß | |
3367 ?\ą | |
3368 ?\į | |
3369 ?\ā | |
3370 ?\ć | |
3371 ?\ä | |
3372 ?\å | |
3373 ?\ę | |
3374 ?\ē | |
3375 ?\č | |
3376 ?\é | |
3377 ?\ź | |
3378 ?\ė | |
3379 ?\ģ | |
3380 ?\ķ | |
3381 ?\ī | |
3382 ?\ļ | |
3383 ?\š | |
3384 ?\ń | |
3385 ?\ņ | |
3386 ?\ó | |
3387 ?\ō | |
3388 ?\õ | |
3389 ?\ö | |
3390 ?\÷ | |
3391 ?\ų | |
3392 ?\ł | |
3393 ?\ś | |
3394 ?\ū | |
3395 ?\ü | |
3396 ?\ż | |
3397 ?\ž | |
3398 nil]) | |
3399 | |
60371
49e4e175b817
(windows-1250, windows-125[2-8])
Reiner Steib <Reiner.Steib@gmx.de>
parents:
56100
diff
changeset
|
3400 ;;;###autoload(autoload-coding-system 'windows-1258 '(require 'code-pages)) |
68208
4bc30665eef2
Add autoload cookies for cp125[0345678].
Kenichi Handa <handa@m17n.org>
parents:
65680
diff
changeset
|
3401 ;;;###autoload(autoload-coding-system 'cp1258 '(require 'code-pages)) |
42057 | 3402 (cp-make-coding-system |
3403 windows-1258 | |
3404 [?\€ | |
3405 nil | |
3406 ?\‚ | |
3407 ?\ƒ | |
3408 ?\„ | |
3409 ?\… | |
3410 ?\† | |
3411 ?\‡ | |
3412 ?\ˆ | |
3413 ?\‰ | |
3414 nil | |
3415 ?\‹ | |
3416 ?\Œ | |
3417 nil | |
3418 nil | |
3419 nil | |
3420 nil | |
3421 ?\‘ | |
3422 ?\’ | |
3423 ?\“ | |
3424 ?\” | |
3425 ?\• | |
3426 ?\– | |
3427 ?\— | |
3428 ?\˜ | |
3429 ?\™ | |
3430 nil | |
3431 ?\› | |
3432 ?\œ | |
3433 nil | |
3434 nil | |
3435 ?\Ÿ | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
3436 ?\ |
42057 | 3437 ?\¡ |
3438 ?\¢ | |
3439 ?\£ | |
3440 ?\¤ | |
3441 ?\¥ | |
3442 ?\¦ | |
3443 ?\§ | |
3444 ?\¨ | |
3445 ?\© | |
3446 ?\ª | |
3447 ?\« | |
3448 ?\¬ | |
3449 ?\ | |
3450 ?\® | |
3451 ?\¯ | |
3452 ?\° | |
3453 ?\± | |
3454 ?\² | |
3455 ?\³ | |
3456 ?\´ | |
3457 ?\µ | |
3458 ?\¶ | |
3459 ?\· | |
3460 ?\¸ | |
3461 ?\¹ | |
3462 ?\º | |
3463 ?\» | |
3464 ?\¼ | |
3465 ?\½ | |
3466 ?\¾ | |
3467 ?\¿ | |
3468 ?\À | |
3469 ?\Á | |
3470 ?\Â | |
3471 ?\Ă | |
3472 ?\Ä | |
3473 ?\Å | |
3474 ?\Æ | |
3475 ?\Ç | |
3476 ?\È | |
3477 ?\É | |
3478 ?\Ê | |
3479 ?\Ë | |
3480 ?\̀ | |
3481 ?\Í | |
3482 ?\Î | |
3483 ?\Ï | |
3484 ?\Đ | |
3485 ?\Ñ | |
3486 ?\̉ | |
3487 ?\Ó | |
3488 ?\Ô | |
3489 ?\Ơ | |
3490 ?\Ö | |
3491 ?\× | |
3492 ?\Ø | |
3493 ?\Ù | |
3494 ?\Ú | |
3495 ?\Û | |
3496 ?\Ü | |
3497 ?\Ư | |
3498 ?\̃ | |
3499 ?\ß | |
3500 ?\à | |
3501 ?\á | |
3502 ?\â | |
3503 ?\ă | |
3504 ?\ä | |
3505 ?\å | |
3506 ?\æ | |
3507 ?\ç | |
3508 ?\è | |
3509 ?\é | |
3510 ?\ê | |
3511 ?\ë | |
3512 ?\́ | |
3513 ?\í | |
3514 ?\î | |
3515 ?\ï | |
3516 ?\đ | |
3517 ?\ñ | |
3518 ?\̣ | |
3519 ?\ó | |
3520 ?\ô | |
3521 ?\ơ | |
3522 ?\ö | |
3523 ?\÷ | |
3524 ?\ø | |
3525 ?\ù | |
3526 ?\ú | |
3527 ?\û | |
3528 ?\ü | |
3529 ?\ư | |
3530 ?\₫ | |
3531 ?\ÿ]) | |
3532 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
3533 ;;;###autoload(autoload-coding-system 'next '(require 'code-pages)) |
42057 | 3534 (cp-make-coding-system |
3535 next | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
3536 [?\ |
42057 | 3537 ?\À |
3538 ?\Á | |
3539 ?\Â | |
3540 ?\Ã | |
3541 ?\Ä | |
3542 ?\Å | |
3543 ?\Ç | |
3544 ?\È | |
3545 ?\É | |
3546 ?\Ê | |
3547 ?\Ë | |
3548 ?\Ì | |
3549 ?\Í | |
3550 ?\Î | |
3551 ?\Ï | |
3552 ?\Ð | |
3553 ?\Ñ | |
3554 ?\Ò | |
3555 ?\Ó | |
3556 ?\Ô | |
3557 ?\Õ | |
3558 ?\Ö | |
3559 ?\Ù | |
3560 ?\Ú | |
3561 ?\Û | |
3562 ?\Ü | |
3563 ?\Ý | |
3564 ?\Þ | |
3565 ?\µ | |
3566 ?\× | |
3567 ?\÷ | |
3568 ?\© | |
3569 ?\¡ | |
3570 ?\¢ | |
3571 ?\£ | |
3572 ?\⁄ | |
3573 ?\¥ | |
3574 ?\ƒ | |
3575 ?\§ | |
3576 ?\¤ | |
73242 | 3577 ?\’ |
42057 | 3578 ?\“ |
3579 ?\« | |
73242 | 3580 ?\‹ |
3581 ?\› | |
42057 | 3582 ?\fi |
3583 ?\fl | |
3584 ?\® | |
3585 ?\– | |
3586 ?\† | |
3587 ?\‡ | |
3588 ?\· | |
3589 ?\¦ | |
3590 ?\¶ | |
3591 ?\• | |
73242 | 3592 ?\‚ |
3593 ?\„ | |
42057 | 3594 ?\” |
3595 ?\» | |
3596 ?\… | |
3597 ?\‰ | |
3598 ?\¬ | |
3599 ?\¿ | |
3600 ?\¹ | |
3601 ?\ˋ | |
3602 ?\´ | |
3603 ?\ˆ | |
3604 ?\˜ | |
3605 ?\¯ | |
3606 ?\˘ | |
3607 ?\˙ | |
3608 ?\¨ | |
3609 ?\² | |
3610 ?\˚ | |
3611 ?\¸ | |
3612 ?\³ | |
3613 ?\˝ | |
3614 ?\˛ | |
3615 ?\ˇ | |
3616 ?\— | |
3617 ?\± | |
3618 ?\¼ | |
3619 ?\½ | |
3620 ?\¾ | |
3621 ?\à | |
3622 ?\á | |
3623 ?\â | |
3624 ?\ã | |
3625 ?\ä | |
3626 ?\å | |
3627 ?\ç | |
3628 ?\è | |
3629 ?\é | |
3630 ?\ê | |
3631 ?\ë | |
3632 ?\ì | |
3633 ?\Æ | |
3634 ?\í | |
3635 ?\ª | |
3636 ?\î | |
3637 ?\ï | |
3638 ?\ð | |
3639 ?\ñ | |
3640 ?\Ł | |
3641 ?\Ø | |
3642 ?\Œ | |
3643 ?\º | |
3644 ?\ò | |
3645 ?\ó | |
3646 ?\ô | |
3647 ?\õ | |
3648 ?\ö | |
3649 ?\æ | |
3650 ?\ù | |
3651 ?\ú | |
3652 ?\û | |
3653 ?\ı | |
3654 ?\ü | |
3655 ?\ý | |
3656 ?\ł | |
3657 ?\ø | |
3658 ?\œ | |
3659 ?\ß | |
3660 ?\þ | |
3661 ?\ÿ | |
3662 nil | |
3663 nil] | |
3664 "NeXTstep encoding." ?N) | |
3665 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
3666 ;;;###autoload(autoload-coding-system 'koi8-t '(require 'code-pages)) |
42057 | 3667 (cp-make-coding-system |
3668 koi8-t ; used by glibc for tg_TJ | |
3669 [?\қ | |
3670 ?\ғ | |
3671 ?\‚ | |
3672 ?\Ғ | |
3673 ?\„ | |
3674 ?\… | |
3675 ?\† | |
3676 ?\‡ | |
3677 nil | |
3678 ?\‰ | |
3679 ?\ҳ | |
3680 ?\‹ | |
3681 ?\Ҳ | |
3682 ?\ҷ | |
3683 ?\Ҷ | |
3684 nil | |
3685 ?\Қ | |
3686 ?\‘ | |
3687 ?\’ | |
3688 ?\“ | |
3689 ?\” | |
3690 ?\• | |
3691 ?\– | |
3692 ?\— | |
3693 nil | |
3694 ?\™ | |
3695 nil | |
3696 ?\› | |
3697 nil | |
3698 nil | |
3699 nil | |
3700 nil | |
3701 nil | |
3702 ?\ӯ | |
3703 ?\Ӯ | |
3704 ?\ё | |
3705 ?\¤ | |
3706 ?\ӣ | |
3707 ?\¦ | |
3708 ?\§ | |
3709 nil | |
3710 nil | |
3711 nil | |
3712 ?\« | |
3713 ?\¬ | |
3714 ?\ | |
3715 ?\® | |
3716 nil | |
3717 ?\° | |
3718 ?\± | |
3719 ?\² | |
3720 ?\Ё | |
3721 nil | |
3722 ?\Ӣ | |
3723 ?\¶ | |
3724 ?\· | |
3725 nil | |
3726 ?\№ | |
3727 nil | |
3728 ?\» | |
3729 nil | |
3730 nil | |
3731 nil | |
3732 ?\© | |
3733 ?\ю | |
3734 ?\а | |
3735 ?\б | |
3736 ?\ц | |
3737 ?\д | |
3738 ?\е | |
3739 ?\ф | |
3740 ?\г | |
3741 ?\х | |
3742 ?\и | |
3743 ?\й | |
3744 ?\к | |
3745 ?\л | |
3746 ?\м | |
3747 ?\н | |
3748 ?\о | |
3749 ?\п | |
3750 ?\я | |
3751 ?\р | |
3752 ?\с | |
3753 ?\т | |
3754 ?\у | |
3755 ?\ж | |
3756 ?\в | |
3757 ?\ь | |
3758 ?\ы | |
3759 ?\з | |
3760 ?\ш | |
3761 ?\э | |
3762 ?\щ | |
3763 ?\ч | |
3764 ?\ъ | |
3765 ?\Ю | |
3766 ?\А | |
3767 ?\Б | |
3768 ?\Ц | |
3769 ?\Д | |
3770 ?\Е | |
3771 ?\Ф | |
3772 ?\Г | |
3773 ?\Х | |
3774 ?\И | |
3775 ?\Й | |
3776 ?\К | |
3777 ?\Л | |
3778 ?\М | |
3779 ?\Н | |
3780 ?\О | |
3781 ?\П | |
3782 ?\Я | |
3783 ?\Р | |
3784 ?\С | |
3785 ?\Т | |
3786 ?\У | |
3787 ?\Ж | |
3788 ?\В | |
3789 ?\Ь | |
3790 ?\Ы | |
3791 ?\З | |
3792 ?\Ш | |
3793 ?\Э | |
3794 ?\Щ | |
3795 ?\Ч | |
3796 ?\Ъ] | |
3797 "Unicode-based KOI8-T encoding for Cyrillic") | |
3798 (coding-system-put 'koi8-t 'mime-charset nil) ; not in the IANA list | |
51008
1dd164759685
(cyrillic-koi8-t): Alias of koi8-t.
Kenichi Handa <handa@m17n.org>
parents:
50184
diff
changeset
|
3799 (define-coding-system-alias 'cyrillic-koi8-t 'koi8-t) |
42057 | 3800 |
3801 ;; Online final ISO draft: | |
3802 | |
47911 | 3803 ;; http://www.evertype.com/standards/iso8859/fdis8859-16-en.pdf |
42057 | 3804 |
3805 ;; Equivalent National Standard: | |
3806 ;; Romanian Standard SR 14111:1998, Romanian Standards Institution | |
3807 ;; (ASRO). | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
3808 |
42057 | 3809 ;; Intended usage: |
3810 | |
3811 ;; "This set of coded graphic characters is intended for use in data and | |
3812 ;; text processing applications and also for information interchange. The | |
3813 ;; set contains graphic characters used for general purpose applications in | |
3814 ;; typical office environments in at least the following languages: | |
3815 ;; Albanian, Croatian, English, Finnish, French, German, Hungarian, Irish | |
3816 ;; Gaelic (new orthography), Italian, Latin, Polish, Romanian, and | |
3817 ;; Slovenian. This set of coded graphic characters may be regarded as a | |
3818 ;; version of an 8-bit code according to ISO/IEC 2022 or ISO/IEC 4873 at | |
3819 ;; level 1." [ISO 8859-16:2001(E), p. 1] | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
3820 |
42057 | 3821 ;; This charset is suitable for use in MIME text body parts. |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
3822 |
42057 | 3823 ;; ISO 8859-16 was primarily designed for single-byte encoding the Romanian |
3824 ;; language. The UTF-8 charset is the preferred and in today's MIME software | |
3825 ;; more widely implemented encoding suitable for Romanian. | |
60371
49e4e175b817
(windows-1250, windows-125[2-8])
Reiner Steib <Reiner.Steib@gmx.de>
parents:
56100
diff
changeset
|
3826 ;;;###autoload(autoload-coding-system 'iso-8859-16 '(require 'code-pages)) |
42057 | 3827 (cp-make-coding-system |
3828 iso-latin-10 ; consistent with, e.g. Latin-1 | |
3829 [nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil | |
3830 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
3831 ?\ |
42057 | 3832 ?\Ą |
3833 ?\ą | |
3834 ?\Ł | |
3835 ?\€ | |
3836 ?\„ | |
3837 ?\Š | |
3838 ?\§ | |
3839 ?\š | |
3840 ?\© | |
3841 ?\Ș | |
3842 ?\« | |
3843 ?\Ź | |
3844 ?\ | |
3845 ?\ź | |
3846 ?\Ż | |
3847 ?\° | |
3848 ?\± | |
3849 ?\Č | |
3850 ?\ł | |
3851 ?\Ž | |
3852 ?\” | |
3853 ?\¶ | |
3854 ?\· | |
3855 ?\ž | |
3856 ?\č | |
3857 ?\ș | |
3858 ?\» | |
3859 ?\Œ | |
3860 ?\œ | |
3861 ?\Ÿ | |
3862 ?\ż | |
3863 ?\À | |
3864 ?\Á | |
3865 ?\Â | |
3866 ?\Ă | |
3867 ?\Ä | |
3868 ?\Ć | |
3869 ?\Æ | |
3870 ?\Ç | |
3871 ?\È | |
3872 ?\É | |
3873 ?\Ê | |
3874 ?\Ë | |
3875 ?\Ì | |
3876 ?\Í | |
3877 ?\Î | |
3878 ?\Ï | |
3879 ?\Đ | |
3880 ?\Ń | |
3881 ?\Ò | |
3882 ?\Ó | |
3883 ?\Ô | |
3884 ?\Ő | |
3885 ?\Ö | |
3886 ?\Ś | |
3887 ?\Ű | |
3888 ?\Ù | |
3889 ?\Ú | |
3890 ?\Û | |
3891 ?\Ü | |
3892 ?\Ę | |
3893 ?\Ț | |
3894 ?\ß | |
3895 ?\à | |
3896 ?\á | |
3897 ?\â | |
3898 ?\ă | |
3899 ?\ä | |
3900 ?\ć | |
3901 ?\æ | |
3902 ?\ç | |
3903 ?\è | |
3904 ?\é | |
3905 ?\ê | |
3906 ?\ë | |
3907 ?\ì | |
3908 ?\í | |
3909 ?\î | |
3910 ?\ï | |
3911 ?\đ | |
3912 ?\ń | |
3913 ?\ò | |
3914 ?\ó | |
3915 ?\ô | |
3916 ?\ő | |
3917 ?\ö | |
3918 ?\ś | |
3919 ?\ű | |
3920 ?\ù | |
3921 ?\ú | |
3922 ?\û | |
3923 ?\ü | |
3924 ?\ę | |
3925 ?\ț | |
3926 ?\ÿ] | |
3927 "Unicode-based encoding for Latin-10 (MIME: ISO-8859-16)" | |
3928 ?r) ;; Romanian | |
3929 (coding-system-put 'iso-latin-10 'mime-charset 'iso-8859-16) | |
3930 (define-coding-system-alias 'iso-8859-16 'iso-latin-10) | |
3931 (define-coding-system-alias 'latin-10 'iso-latin-10) | |
3932 | |
3933 ;; Unicode-based alternative which has the possible advantage of | |
3934 ;; having its relative sparseness specified. | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
3935 ;;;###autoload(autoload-coding-system 'iso-8859-6 '(require 'code-pages)) |
42057 | 3936 (cp-make-coding-system |
3937 ;; The base system uses arabic-iso-8bit, but that's not a MIME charset. | |
3938 iso-8859-6 | |
73213
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3939 [nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3940 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
3941 ?\ |
73213
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3942 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3943 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3944 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3945 ?¤ |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3946 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3947 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3948 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3949 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3950 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3951 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3952 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3953 ?، |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3954 ? |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3955 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3956 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3957 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3958 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3959 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3960 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3961 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3962 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3963 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3964 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3965 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3966 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3967 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3968 ?؛ |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3969 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3970 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3971 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3972 ?؟ |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3973 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3974 ?ء |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3975 ?آ |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3976 ?أ |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3977 ?ؤ |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3978 ?إ |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3979 ?ئ |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3980 ?ا |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3981 ?ب |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3982 ?ة |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3983 ?ت |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3984 ?ث |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3985 ?ج |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3986 ?ح |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3987 ?خ |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3988 ?د |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3989 ?ذ |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3990 ?ر |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3991 ?ز |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3992 ?س |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3993 ?ش |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3994 ?ص |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3995 ?ض |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3996 ?ط |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3997 ?ظ |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3998 ?ع |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3999 ?غ |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
4000 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
4001 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
4002 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
4003 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
4004 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
4005 ?ـ |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
4006 ?ف |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
4007 ?ق |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
4008 ?ك |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
4009 ?ل |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
4010 ?م |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
4011 ?ن |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
4012 ?ه |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
4013 ?و |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
4014 ?ى |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
4015 ?ي |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
4016 ?ً |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
4017 ?ٌ |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
4018 ?ٍ |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
4019 ?َ |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
4020 ?ُ |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
4021 ?ِ |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
4022 ?ّ |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
4023 ?ْ |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
4024 nil nil nil nil nil nil nil nil nil nil nil nil nil] |
42057 | 4025 "Unicode-based Arabic ISO/IEC 8859-6 (MIME: ISO-8859-6)" |
4026 ?6) | |
4027 (define-coding-system-alias 'arabic-iso-8bit 'iso-8859-6) | |
4028 | |
60371
49e4e175b817
(windows-1250, windows-125[2-8])
Reiner Steib <Reiner.Steib@gmx.de>
parents:
56100
diff
changeset
|
4029 ;;;###autoload(autoload-coding-system 'iso-8859-10 '(require 'code-pages)) |
42057 | 4030 (cp-make-coding-system |
4031 iso-latin-6 | |
4032 [nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil | |
4033 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4034 ?\ |
42057 | 4035 ?\Ą |
4036 ?\Ē | |
4037 ?\Ģ | |
4038 ?\Ī | |
4039 ?\Ĩ | |
4040 ?\Ķ | |
4041 ?\§ | |
4042 ?\Ļ | |
4043 ?\Đ | |
4044 ?\Š | |
4045 ?\Ŧ | |
4046 ?\Ž | |
4047 ?\ | |
4048 ?\Ū | |
4049 ?\Ŋ | |
4050 ?\° | |
4051 ?\ą | |
4052 ?\ē | |
4053 ?\ģ | |
4054 ?\ī | |
4055 ?\ĩ | |
4056 ?\ķ | |
4057 ?\· | |
4058 ?\ļ | |
4059 ?\đ | |
4060 ?\š | |
4061 ?\ŧ | |
4062 ?\ž | |
4063 ?\― | |
4064 ?\ū | |
4065 ?\ŋ | |
4066 ?\Ā | |
4067 ?\Á | |
4068 ?\Â | |
4069 ?\Ã | |
4070 ?\Ä | |
4071 ?\Å | |
4072 ?\Æ | |
4073 ?\Į | |
4074 ?\Č | |
4075 ?\É | |
4076 ?\Ę | |
4077 ?\Ë | |
4078 ?\Ė | |
4079 ?\Í | |
4080 ?\Î | |
4081 ?\Ï | |
4082 ?\Ð | |
4083 ?\Ņ | |
4084 ?\Ō | |
4085 ?\Ó | |
4086 ?\Ô | |
4087 ?\Õ | |
4088 ?\Ö | |
4089 ?\Ũ | |
4090 ?\Ø | |
4091 ?\Ų | |
4092 ?\Ú | |
4093 ?\Û | |
4094 ?\Ü | |
4095 ?\Ý | |
4096 ?\Þ | |
4097 ?\ß | |
4098 ?\ā | |
4099 ?\á | |
4100 ?\â | |
4101 ?\ã | |
4102 ?\ä | |
4103 ?\å | |
4104 ?\æ | |
4105 ?\į | |
4106 ?\č | |
4107 ?\é | |
4108 ?\ę | |
4109 ?\ë | |
4110 ?\ė | |
4111 ?\í | |
4112 ?\î | |
4113 ?\ï | |
4114 ?\ð | |
4115 ?\ņ | |
4116 ?\ō | |
4117 ?\ó | |
4118 ?\ô | |
4119 ?\õ | |
4120 ?\ö | |
4121 ?\ũ | |
4122 ?\ø | |
4123 ?\ų | |
4124 ?\ú | |
4125 ?\û | |
4126 ?\ü | |
4127 ?\ý | |
4128 ?\þ | |
4129 ?\ĸ] | |
4130 "Unicode-based encoding for Latin-6 (MIME: ISO-8859-10)") | |
4131 (coding-system-put 'iso-latin-6 'mime-charset 'iso-8859-10) | |
4132 (define-coding-system-alias 'iso-8859-10 'iso-latin-6) | |
4133 (define-coding-system-alias 'latin-6 'iso-latin-6) | |
4134 | |
4135 ;; used by lt_LT, lv_LV, mi_NZ | |
60371
49e4e175b817
(windows-1250, windows-125[2-8])
Reiner Steib <Reiner.Steib@gmx.de>
parents:
56100
diff
changeset
|
4136 ;;;###autoload(autoload-coding-system 'iso-8859-13 '(require 'code-pages)) |
42057 | 4137 (cp-make-coding-system |
4138 iso-latin-7 | |
4139 [nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil | |
4140 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4141 ?\ |
61405
a29a1f9a1c25
(iso-latin-7): Fix the map.
Kenichi Handa <handa@m17n.org>
parents:
60371
diff
changeset
|
4142 ?\” |
42057 | 4143 ?\¢ |
4144 ?\£ | |
4145 ?\¤ | |
4146 ?\„ | |
4147 ?\¦ | |
4148 ?\§ | |
61405
a29a1f9a1c25
(iso-latin-7): Fix the map.
Kenichi Handa <handa@m17n.org>
parents:
60371
diff
changeset
|
4149 ?\Ø |
42057 | 4150 ?\© |
61405
a29a1f9a1c25
(iso-latin-7): Fix the map.
Kenichi Handa <handa@m17n.org>
parents:
60371
diff
changeset
|
4151 ?\Ŗ |
42057 | 4152 ?\« |
4153 ?\¬ | |
4154 ?\ | |
4155 ?\® | |
61405
a29a1f9a1c25
(iso-latin-7): Fix the map.
Kenichi Handa <handa@m17n.org>
parents:
60371
diff
changeset
|
4156 ?\Æ |
42057 | 4157 ?\° |
4158 ?\± | |
4159 ?\² | |
4160 ?\³ | |
4161 ?\“ | |
4162 ?\µ | |
4163 ?\¶ | |
4164 ?\· | |
61405
a29a1f9a1c25
(iso-latin-7): Fix the map.
Kenichi Handa <handa@m17n.org>
parents:
60371
diff
changeset
|
4165 ?\ø |
42057 | 4166 ?\¹ |
61405
a29a1f9a1c25
(iso-latin-7): Fix the map.
Kenichi Handa <handa@m17n.org>
parents:
60371
diff
changeset
|
4167 ?\ŗ |
42057 | 4168 ?\» |
4169 ?\¼ | |
4170 ?\½ | |
4171 ?\¾ | |
61405
a29a1f9a1c25
(iso-latin-7): Fix the map.
Kenichi Handa <handa@m17n.org>
parents:
60371
diff
changeset
|
4172 ?\æ |
42057 | 4173 ?\Ą |
4174 ?\Į | |
4175 ?\Ā | |
4176 ?\Ć | |
4177 ?\Ä | |
4178 ?\Å | |
4179 ?\Ę | |
4180 ?\Ē | |
4181 ?\Č | |
4182 ?\É | |
4183 ?\Ź | |
4184 ?\Ė | |
4185 ?\Ģ | |
4186 ?\Ķ | |
4187 ?\Ī | |
4188 ?\Ļ | |
4189 ?\Š | |
4190 ?\Ń | |
4191 ?\Ņ | |
4192 ?\Ó | |
4193 ?\Ō | |
4194 ?\Õ | |
4195 ?\Ö | |
4196 ?\× | |
4197 ?\Ų | |
4198 ?\Ł | |
4199 ?\Ś | |
4200 ?\Ū | |
4201 ?\Ü | |
4202 ?\Ż | |
4203 ?\Ž | |
4204 ?\ß | |
4205 ?\ą | |
4206 ?\į | |
4207 ?\ā | |
4208 ?\ć | |
4209 ?\ä | |
4210 ?\å | |
4211 ?\ę | |
4212 ?\ē | |
4213 ?\č | |
4214 ?\é | |
4215 ?\ź | |
4216 ?\ė | |
4217 ?\ģ | |
4218 ?\ķ | |
4219 ?\ī | |
4220 ?\ļ | |
4221 ?\š | |
4222 ?\ń | |
4223 ?\ņ | |
4224 ?\ó | |
4225 ?\ō | |
4226 ?\õ | |
4227 ?\ö | |
4228 ?\÷ | |
4229 ?\ų | |
4230 ?\ł | |
4231 ?\ś | |
4232 ?\ū | |
4233 ?\ü | |
4234 ?\ż | |
4235 ?\ž | |
4236 ?\’ | |
4237 ] | |
4238 "Unicode-based encoding for Latin-7 (MIME: ISO-8859-13)" | |
4239 ?l) ;; Lithuanian/Latvian | |
4240 (coding-system-put 'iso-latin-7 'mime-charset 'iso-8859-13) | |
4241 (define-coding-system-alias 'iso-8859-13 'iso-latin-7) | |
4242 (define-coding-system-alias 'latin-7 'iso-latin-7) | |
4243 | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4244 ;; Fixme: check on the C1 characters which libiconv includes. They |
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4245 ;; are reproduced below, but are probably wrong. I can't find an |
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4246 ;; official definition of georgian-ps. |
60371
49e4e175b817
(windows-1250, windows-125[2-8])
Reiner Steib <Reiner.Steib@gmx.de>
parents:
56100
diff
changeset
|
4247 ;;;###autoload(autoload-coding-system 'georgian-ps '(require 'code-pages)) |
42057 | 4248 (cp-make-coding-system |
4249 georgian-ps ; used by glibc for ka_GE | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4250 [?\ |
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4251 ?\ |
42057 | 4252 ?\‚ |
4253 ?\ƒ | |
4254 ?\„ | |
4255 ?\… | |
4256 ?\† | |
4257 ?\‡ | |
4258 ?\ˆ | |
4259 ?\‰ | |
4260 ?\Š | |
4261 ?\‹ | |
4262 ?\Œ | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4263 ?\ |
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4264 ?\ |
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4265 ?\ |
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4266 ?\ |
42057 | 4267 ?\‘ |
4268 ?\’ | |
4269 ?\“ | |
4270 ?\” | |
4271 ?\• | |
4272 ?\– | |
4273 ?\— | |
4274 ?\˜ | |
4275 ?\™ | |
4276 ?\š | |
4277 ?\› | |
4278 ?\œ | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4279 ?\ |
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4280 ?\ |
42057 | 4281 ?\Ÿ |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4282 ?\ |
42057 | 4283 ?\¡ |
4284 ?\¢ | |
4285 ?\£ | |
4286 ?\¤ | |
4287 ?\¥ | |
4288 ?\¦ | |
4289 ?\§ | |
4290 ?\¨ | |
4291 ?\© | |
4292 ?\ª | |
4293 ?\« | |
4294 ?\¬ | |
4295 ?\ | |
4296 ?\® | |
4297 ?\¯ | |
4298 ?\° | |
4299 ?\± | |
4300 ?\² | |
4301 ?\³ | |
4302 ?\´ | |
4303 ?\µ | |
4304 ?\¶ | |
4305 ?\· | |
4306 ?\¸ | |
4307 ?\¹ | |
4308 ?\º | |
4309 ?\» | |
4310 ?\¼ | |
4311 ?\½ | |
4312 ?\¾ | |
4313 ?\¿ | |
4314 ?\ა | |
4315 ?\ბ | |
4316 ?\გ | |
4317 ?\დ | |
4318 ?\ე | |
4319 ?\ვ | |
4320 ?\ზ | |
4321 ?\ჱ | |
4322 ?\თ | |
4323 ?\ი | |
4324 ?\კ | |
4325 ?\ლ | |
4326 ?\მ | |
4327 ?\ნ | |
4328 ?\ჲ | |
4329 ?\ო | |
4330 ?\პ | |
4331 ?\ჟ | |
4332 ?\რ | |
4333 ?\ს | |
4334 ?\ტ | |
4335 ?\ჳ | |
4336 ?\უ | |
4337 ?\ფ | |
4338 ?\ქ | |
4339 ?\ღ | |
4340 ?\ყ | |
4341 ?\შ | |
4342 ?\ჩ | |
4343 ?\ც | |
4344 ?\ძ | |
4345 ?\წ | |
4346 ?\ჭ | |
4347 ?\ხ | |
4348 ?\ჴ | |
4349 ?\ჯ | |
4350 ?\ჰ | |
4351 ?\ჵ | |
4352 ?\æ | |
4353 ?\ç | |
4354 ?\è | |
4355 ?\é | |
4356 ?\ê | |
4357 ?\ë | |
4358 ?\ì | |
4359 ?\í | |
4360 ?\î | |
4361 ?\ï | |
4362 ?\ð | |
4363 ?\ñ | |
4364 ?\ò | |
4365 ?\ó | |
4366 ?\ô | |
4367 ?\õ | |
4368 ?\ö | |
4369 ?\÷ | |
4370 ?\ø | |
4371 ?\ù | |
4372 ?\ú | |
4373 ?\û | |
4374 ?\ü | |
4375 ?\ý | |
4376 ?\þ | |
4377 ?\ÿ] | |
4378 nil ?G) | |
4379 (coding-system-put 'georgian-ps 'mime-charset nil) ; not in IANA list | |
4380 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
4381 ;;;###autoload(autoload-coding-system 'cp720 '(require 'code-pages)) |
42057 | 4382 ;; From http://www.microsoft.com/globaldev/reference/oem/720.htm |
4383 (cp-make-coding-system | |
4384 cp720 | |
4385 [nil | |
4386 nil | |
4387 ?\é | |
4388 ?\â | |
4389 nil | |
4390 ?\à | |
4391 nil | |
4392 ?\ç | |
4393 ?\ê | |
4394 ?\ë | |
4395 ?\è | |
4396 ?\ï | |
4397 ?\î | |
4398 nil | |
4399 nil | |
4400 nil | |
4401 nil | |
4402 ?\ّ | |
4403 ?\ْ | |
4404 ?\ô | |
4405 ?\¤ | |
4406 ?\ـ | |
4407 ?\û | |
4408 ?\ù | |
4409 ?\ء | |
4410 ?\آ | |
4411 ?\أ | |
4412 ?\ؤ | |
4413 ?\£ | |
4414 ?\إ | |
4415 ?\ئ | |
4416 ?\ا | |
4417 ?\ب | |
4418 ?\ة | |
4419 ?\ت | |
4420 ?\ث | |
4421 ?\ج | |
4422 ?\ح | |
4423 ?\خ | |
4424 ?\د | |
4425 ?\ذ | |
4426 ?\ر | |
4427 ?\ز | |
4428 ?\س | |
4429 ?\ش | |
4430 ?\ص | |
4431 ?\« | |
4432 ?\» | |
4433 ?\░ | |
4434 ?\▒ | |
4435 ?\▓ | |
4436 ?\│ | |
4437 ?\┤ | |
4438 ?\╡ | |
4439 ?\╢ | |
4440 ?\╖ | |
4441 ?\╕ | |
4442 ?\╣ | |
4443 ?\║ | |
4444 ?\╗ | |
4445 ?\╝ | |
4446 ?\╜ | |
4447 ?\╛ | |
4448 ?\┐ | |
4449 ?\└ | |
4450 ?\┴ | |
4451 ?\┬ | |
4452 ?\├ | |
4453 ?\─ | |
4454 ?\┼ | |
4455 ?\╞ | |
4456 ?\╟ | |
4457 ?\╚ | |
4458 ?\╔ | |
4459 ?\╩ | |
4460 ?\╦ | |
4461 ?\╠ | |
4462 ?\═ | |
4463 ?\╬ | |
4464 ?\╧ | |
4465 ?\╨ | |
4466 ?\╤ | |
4467 ?\╥ | |
4468 ?\╙ | |
4469 ?\╘ | |
4470 ?\╒ | |
4471 ?\╓ | |
4472 ?\╫ | |
4473 ?\╪ | |
4474 ?\┘ | |
4475 ?\┌ | |
4476 ?\█ | |
4477 ?\▄ | |
4478 ?\▌ | |
4479 ?\▐ | |
4480 ?\▀ | |
4481 ?\ض | |
4482 ?\ط | |
4483 ?\ظ | |
4484 ?\ع | |
4485 ?\غ | |
4486 ?\ف | |
4487 ?\µ | |
4488 ?\ق | |
4489 ?\ك | |
4490 ?\ل | |
4491 ?\م | |
4492 ?\ن | |
4493 ?\ه | |
4494 ?\و | |
4495 ?\ى | |
4496 ?\ي | |
4497 ?\≡ | |
4498 ?\ً | |
4499 ?\ٌ | |
4500 ?\ٍ | |
4501 ?\َ | |
4502 ?\ُ | |
4503 ?\ِ | |
4504 ?\≈ | |
4505 ?\° | |
4506 ?\∙ | |
4507 ?\· | |
4508 ?\√ | |
4509 ?\ⁿ | |
4510 ?\² | |
4511 ?\■ | |
4512 ?\ ]) | |
4513 (coding-system-put 'cp720 'mime-charset nil) ; not in IANA list | |
4514 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
4515 ;;;###autoload(autoload-coding-system 'cp1125 '(require 'code-pages)) |
42057 | 4516 ;; http://oss.software.ibm.com/cvs/icu/charset/data/ucm/ibm-1125_P100-2000.ucm |
4517 (cp-make-coding-system | |
4518 cp1125 | |
4519 [?\А | |
4520 ?\Б | |
4521 ?\В | |
4522 ?\Г | |
4523 ?\Д | |
4524 ?\Е | |
4525 ?\Ж | |
4526 ?\З | |
4527 ?\И | |
4528 ?\Й | |
4529 ?\К | |
4530 ?\Л | |
4531 ?\М | |
4532 ?\Н | |
4533 ?\О | |
4534 ?\П | |
4535 ?\Р | |
4536 ?\С | |
4537 ?\Т | |
4538 ?\У | |
4539 ?\Ф | |
4540 ?\Х | |
4541 ?\Ц | |
4542 ?\Ч | |
4543 ?\Ш | |
4544 ?\Щ | |
4545 ?\Ъ | |
4546 ?\Ы | |
4547 ?\Ь | |
4548 ?\Э | |
4549 ?\Ю | |
4550 ?\Я | |
4551 ?\а | |
4552 ?\б | |
4553 ?\в | |
4554 ?\г | |
4555 ?\д | |
4556 ?\е | |
4557 ?\ж | |
4558 ?\з | |
4559 ?\и | |
4560 ?\й | |
4561 ?\к | |
4562 ?\л | |
4563 ?\м | |
4564 ?\н | |
4565 ?\о | |
4566 ?\п | |
4567 ?\░ | |
4568 ?\▒ | |
4569 ?\▓ | |
4570 ?\│ | |
4571 ?\┤ | |
4572 ?\╡ | |
4573 ?\╢ | |
4574 ?\╖ | |
4575 ?\╕ | |
4576 ?\╣ | |
4577 ?\║ | |
4578 ?\╗ | |
4579 ?\╝ | |
4580 ?\╜ | |
4581 ?\╛ | |
4582 ?\┐ | |
4583 ?\└ | |
4584 ?\┴ | |
4585 ?\┬ | |
4586 ?\├ | |
4587 ?\─ | |
4588 ?\┼ | |
4589 ?\╞ | |
4590 ?\╟ | |
4591 ?\╚ | |
4592 ?\╔ | |
4593 ?\╩ | |
4594 ?\╦ | |
4595 ?\╠ | |
4596 ?\═ | |
4597 ?\╬ | |
4598 ?\╧ | |
4599 ?\╨ | |
4600 ?\╤ | |
4601 ?\╥ | |
4602 ?\╙ | |
4603 ?\╘ | |
4604 ?\╒ | |
4605 ?\╓ | |
4606 ?\╫ | |
4607 ?\╪ | |
4608 ?\┘ | |
4609 ?\┌ | |
4610 ?\█ | |
4611 ?\▄ | |
4612 ?\▌ | |
4613 ?\▐ | |
4614 ?\▀ | |
4615 ?\р | |
4616 ?\с | |
4617 ?\т | |
4618 ?\у | |
4619 ?\ф | |
4620 ?\х | |
4621 ?\ц | |
4622 ?\ч | |
4623 ?\ш | |
4624 ?\щ | |
4625 ?\ъ | |
4626 ?\ы | |
4627 ?\ь | |
4628 ?\э | |
4629 ?\ю | |
4630 ?\я | |
4631 ?\Ё | |
4632 ?\ё | |
4633 ?\Ґ | |
4634 ?\ґ | |
4635 ?\Є | |
4636 ?\є | |
4637 ?\І | |
4638 ?\і | |
4639 ?\Ї | |
4640 ?\ї | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
4641 ?\· |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
4642 ?\√ |
42057 | 4643 ?\№ |
4644 ?\¤ | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
4645 ?\■ |
42057 | 4646 ?\ ]) |
47911 | 4647 (define-coding-system-alias 'ruscii 'cp1125) |
4648 ;; Original name for cp1125, says Serhii Hlodin <hlodin@lutsk.bank.gov.ua> | |
42057 | 4649 (define-coding-system-alias 'cp866u 'cp1125) |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4650 (coding-system-put 'cp1125 'mime-charset nil) |
42057 | 4651 |
48774 | 4652 ;; Suggested by Anton Zinoviev <anton@lml.bas.bg>: Bulgarian DOS |
4653 ;; codepage. Table at | |
70723 | 4654 ;; <http://en.wikipedia.org/wiki/MIK_Code_page>. |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
4655 ;;;###autoload(autoload-coding-system 'mik '(require 'code-pages)) |
48774 | 4656 (cp-make-coding-system |
4657 mik | |
4658 [?А ?Б ?В ?Г ?Д ?Е ?Ж ?З ?И ?Й ?К ?Л ?М ?Н ?О ?П ?Р ?С ?Т ?У ?Ф ?Х ?Ц | |
4659 ?Ч ?Ш ?Щ ?Ъ ?Ы ?Ь ?Э ?Ю ?Я ?а ?б ?в ?г ?д ?е ?ж ?з ?и ?й ?к ?л ?м ?н | |
4660 ?о ?п ?р ?с ?т ?у ?ф ?х ?ц ?ч ?ш ?щ ?ъ ?ы ?ь ?э ?ю ?я ?└ ?┴ ?┬ ?├ ?─ | |
4661 ?┼ ?╣ ?║ ?╚ ?╔ ?╩ ?╦ ?╠ ?═ ?╬ ?┐ ?░ ?▒ ?▓ ?│ ?┤ ?№ ?§ ?╗ ?╝ ?┘ ?┌ ?█ | |
70723 | 4662 ?▄ ?▌ ?▐ ?▀ ?α ?ß ?Γ ?π ?Σ ?σ ?µ ?τ ?Φ ?Θ ?Ω ?δ ?∞ ?φ ?ε ?∩ ?≡ ?± ?≥ |
48774 | 4663 ?≤ ?⌠ ?⌡ ?÷ ?≈ ?° ?∙ ?· ?√ ?ⁿ ?² ?■ ? ]) |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4664 (coding-system-put 'mik 'mime-charset nil) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49143
diff
changeset
|
4665 |
48774 | 4666 ;; Suggested by Anton Zinoviev <anton@lml.bas.bg>: similar to CP1251 |
4667 ;; and used for some non-Slavic Cyrillic languages. Table found at | |
4668 ;; <URL:ftp://ftp.logic.ru/pub/logic/linux/cyr-asian/PT154>. See also | |
4669 ;; <URL:http://lists.w3.org/Archives/Public/ietf-charsets/2002AprJun/0092.html, | |
4670 ;; which suggests it's used in an Asian Cyrillic context. | |
52829
ff3ace564547
(iso-8859-11): Add autoload cookie.
Kenichi Handa <handa@m17n.org>
parents:
52796
diff
changeset
|
4671 ;;;###autoload(autoload-coding-system 'pt154 '(require 'code-pages)) |
48774 | 4672 (cp-make-coding-system |
4673 pt154 | |
4674 [?Җ ?Ғ ?Ӯ ?ғ ?„ ?… ?Ҷ ?Ү ?Ҳ ?ү ?Ҡ ?Ӣ ?Ң ?Қ ?Һ ?Ҹ ?җ ?‘ ?’ ?“ ?” ?• ?– | |
4675 ?— ?ҳ ?ҷ ?ҡ ?ӣ ?ң ?қ ?һ ?ҹ ? ?Ў ?ў ?Ј ?Ө ?Ҙ ?Ұ ?§ ?Ё ?© ?Ә ?\« ?¬ ?ӯ | |
61570
4b5610d9b02e
(cp-make-coding-system): Set
Kenichi Handa <handa@m17n.org>
parents:
61405
diff
changeset
|
4676 ?® ?Ҝ ?° ?ұ ?І ?і ?ҙ ?ө ?¶ ?· ?ё ?№ ?ә ?\» ?ј ?Ҫ ?ҫ ?ҝ ?А ?Б ?В ?Г ?Д |
48774 | 4677 ?Е ?Ж ?З ?И ?Й ?К ?Л ?М ?Н ?О ?П ?Р ?С ?Т ?У ?Ф ?Х ?Ц ?Ч ?Ш ?Щ ?Ъ ?Ы |
4678 ?Ь ?Э ?Ю ?Я ?а ?б ?в ?г ?д ?е ?ж ?з ?и ?й ?к ?л ?м ?н ?о ?п ?р ?с ?т | |
4679 ?у ?ф ?х ?ц ?ч ?ш ?щ ?ъ ?ы ?ь ?э ?ю ?я]) | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4680 |
52796
af41ec2032d0
(iso-8859-11): Add autoload cookie.
Kenichi Handa <handa@m17n.org>
parents:
52434
diff
changeset
|
4681 ;;;###autoload(autoload-coding-system 'iso-8859-11 '(require 'code-pages)) |
48022 | 4682 (cp-make-coding-system |
4683 iso-8859-11 | |
48774 | 4684 [nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil |
4685 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil | |
4686 ? ?ก ?ข ?ฃ ?ค ?ฅ ?ฆ ?ง ?จ ?ฉ ?ช ?ซ ?ฌ ?ญ ?ฎ ?ฏ | |
4687 ?ฐ ?ฑ ?ฒ ?ณ ?ด ?ต ?ถ ?ท ?ธ ?น ?บ ?ป ?ผ ?ฝ ?พ ?ฟ | |
4688 ?ภ ?ม ?ย ?ร ?ฤ ?ล ?ฦ ?ว ?ศ ?ษ ?ส ?ห ?ฬ ?อ ?ฮ ?ฯ | |
4689 ?ะ ?ั ?า ?ำ ?ิ ?ี ?ึ ?ื ?ุ ?ู ?ฺ nil nil nil nil ?฿ | |
4690 ?เ ?แ ?โ ?ใ ?ไ ?ๅ ?ๆ ?็ ?่ ?้ ?๊ ?๋ ?์ ?ํ ?๎ ?๏ | |
4691 ?๐ ?๑ ?๒ ?๓ ?๔ ?๕ ?๖ ?๗ ?๘ ?๙ ?๚ ?๛ nil nil nil nil] | |
48022 | 4692 "ISO-8859-11. This is `thai-tis620' with the addition of no-break-space.") |
4693 | |
55469 | 4694 (dotimes (i 9) |
42057 | 4695 (let ((w (intern (format "windows-125%d" i))) |
4696 (c (intern (format "cp125%d" i)))) | |
55469 | 4697 ;; Define cp125* as aliases for all windows-125*, so on Windows |
4698 ;; we can just concat "cp" to the ANSI codepage we get from the system | |
4699 ;; and not have to worry about whether it should be "cp" or "windows-". | |
62795
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
4700 (when (coding-system-p w) |
68326 | 4701 (define-coding-system-alias c w) |
62795
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
4702 ;; Compatibility with codepage.el, though cp... are not the |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
4703 ;; canonical names. |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
4704 (if (not (assq c non-iso-charset-alist)) |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
4705 (let ((slot (assq w non-iso-charset-alist))) |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
4706 (if slot |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
4707 (push (cons c (cdr slot)) non-iso-charset-alist))))))) |
42057 | 4708 |
4709 (provide 'code-pages) | |
4710 | |
52401 | 4711 ;;; arch-tag: 8b6e3c73-b271-4198-866d-ea6d0ceff1b2 |
42057 | 4712 ;;; code-pages.el ends here |