Mercurial > emacs
annotate lisp/international/code-pages.el @ 87574:21fcd219fd6e
* mouse.el (mouse-popup-menubar): Fix typo.
* emacs-lisp/bytecomp.el (byte-compile-from-buffer): Move one more
form inside with-current-buffer.
* progmodes/antlr-mode.el (provide): Move to the end of file.
(require): Don't require font-lock and compile.
(outline-level, imenu-use-markers, imenu-create-index-function):
Move declarations to top level.
(cond-emacs-xemacs-macfn): Declare for compiler.
* vc-bzr.el (vc-bzr-root):
* vc-arch.el (vc-arch-root): Only set a property if the file is
managed by this backend.
* vc-hg.el (vc-hg-state): Support the new status code for
up-to-date.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Fri, 04 Jan 2008 08:34:15 +0000 (2008-01-04) |
parents | 2daf9c28b3a4 |
children | b6fdfff4ae81 |
rev | line source |
---|---|
42057 | 1 ;;; code-pages.el --- coding systems for assorted codepages -*-coding: utf-8;-*- |
2 | |
75347 | 3 ;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 |
74544 | 4 ;; Free Software Foundation, Inc. |
75347 | 5 ;; Copyright (C) 2004, 2005, 2006, 2007 |
62274 | 6 ;; National Institute of Advanced Industrial Science and Technology (AIST) |
7 ;; Registration Number H14PRO021 | |
42057 | 8 |
9 ;; Author: Dave Love <fx@gnu.org> | |
10 ;; Keywords: i18n | |
11 | |
42320 | 12 ;; This file is part of GNU Emacs. |
13 | |
45357 | 14 ;; GNU Emacs is free software; you can redistribute it and/or modify |
42057 | 15 ;; it under the terms of the GNU General Public License as published by |
78310
2daf9c28b3a4
Restore comma mistakenly removed in last change.
Glenn Morris <rgm@gnu.org>
parents:
78301
diff
changeset
|
16 ;; the Free Software Foundation; either version 3, or (at your option) |
42057 | 17 ;; any later version. |
18 | |
45357 | 19 ;; GNU Emacs is distributed in the hope that it will be useful, |
42057 | 20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
22 ;; GNU General Public License for more details. | |
23 | |
24 ;; You should have received a copy of the GNU General Public License | |
45357 | 25 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64085 | 26 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
27 ;; Boston, MA 02110-1301, USA. | |
42057 | 28 |
29 ;;; Commentary: | |
30 | |
31 ;; Definitions of miscellaneous 8-bit coding systems based on ASCII | |
32 ;; (we can't cope properly with EBCDIC, for instance), mainly for PC | |
33 ;; `code pages'. They are decoded into Latin-1 and mule-unicode | |
34 ;; charsets rather than (lossily) into single iso8859 charsets � la | |
35 ;; codepage.el. The utility `cp-make-coding-system' derives them from | |
36 ;; simple tables. | |
37 | |
38 ;; Those covered are: cp437, cp737, cp720, cp775, cp850, cp851, cp852, | |
39 ;; cp855, cp857, cp860, cp861, cp862, cp863, cp864, cp865, cp866, | |
52434 | 40 ;; cp869, cp874, cp1125, windows-1250, windows-1253, windows-1254, |
41 ;; windows-1255, windows-1256, windows-1257, windows-1258, next, | |
42 ;; iso-8859-6, iso-8859-10, iso-8859-11, iso-8859-16, koi8-t, | |
43 ;; georgian-ps. This is meant to include all the single-byte ones | |
44 ;; relevant to GNU (used in glibc-defined locales); we don't yet get | |
45 ;; all the multibyte ones in base Emacs. | |
42057 | 46 |
47911 | 47 ;; Note that various of these can clash with definitions in |
48 ;; codepage.el; we try to avoid damage from that. A few CPs from | |
49 ;; codepage.el (770, 773, 774) aren't covered (in the absence of | |
50 ;; translation tables to Unicode). | |
42057 | 51 |
52 ;; Compile this, to avoid loading `ccl' at runtime. | |
53 | |
54 ;; Although the tables used here aren't very big, it might be worth | |
55 ;; splitting the file and autoloading the coding systems if/when my | |
56 ;; (or similar) autoloading code is installed. | |
57 | |
58 ;;; Code: | |
59 | |
52434 | 60 ;; The defsubsts here are just so that language files can use |
61 ;; `cp-make-coding-system' and not require functions from this file | |
62 ;; at runtime. | |
63 | |
64 (defsubst cp-make-translation-table (v) | |
42057 | 65 "Return a translation table made from 128-long vector V. |
66 V comprises characters encodable by mule-utf-8." | |
67 (let ((encoding-vector (make-vector 256 0))) | |
68 (dotimes (i 128) | |
69 (aset encoding-vector i i)) | |
70 (dotimes (i 128) | |
71 (aset encoding-vector (+ i 128) (aref v i))) | |
47911 | 72 ;; Add equivalent characters to the encoder so that we can unify |
73 ;; on encoding. | |
74 (let* ((tab (make-translation-table-from-vector encoding-vector)) | |
75 ;; Translation table used for encoding: | |
76 (encode-table (char-table-extra-slot tab 0))) | |
77 (map-char-table (lambda (c v) | |
78 (if v | |
79 (let ((c1 (aref encode-table v))) | |
80 (if c1 ; we encode that unicode | |
81 (aset encode-table c c1))))) | |
82 ucs-mule-to-mule-unicode) | |
83 tab))) | |
42057 | 84 |
52434 | 85 (defsubst cp-valid-codes (v) |
42057 | 86 "Derive a valid-codes list for translation vector V. |
87 See `make-coding-system'." | |
88 (let (pairs | |
89 (i 128) ; index into v | |
90 (start 0) ; start of a valid range | |
91 (end 127)) ; end of a valid range | |
92 (while (< i 256) | |
93 (if (aref v (- i 128)) ; start or extend range | |
94 (progn | |
95 (setq end i) | |
96 (unless start (setq start i))) | |
97 (if start | |
98 (push (cons start end) pairs)) | |
99 (setq start nil)) | |
100 (setq i (1+ i))) | |
101 (if start (push (cons start end) pairs)) | |
102 (nreverse pairs))) | |
103 | |
49143 | 104 ;; Fix things that have been, or might be, done by codepage.el. |
42057 | 105 (eval-after-load "codepage" |
106 '(progn | |
107 | |
108 ;; Semi-dummy version for the stuff in codepage.el which we don't | |
109 ;; define here. (Used by mule-diag.) | |
110 (defun cp-supported-codepages () | |
111 "Return an alist of supported codepages. | |
112 | |
113 Each association in the alist has the form (NNN . CHARSET), where NNN is the | |
114 codepage number, and CHARSET is the MULE charset which is the closest match | |
115 for the character set supported by that codepage. | |
116 | |
117 A codepage NNN is supported if a variable called `cpNNN-decode-table' exists, | |
118 is a vector, and has a charset property." | |
119 '(("774" . latin-iso8859-4) ("770" . latin-iso8859-4) | |
120 ("773" . latin-iso8859-4))) | |
121 | |
122 ;; A version which doesn't override the coding systems set up by this | |
123 ;; file. It could still be used for the few missing ones from | |
124 ;; codepage.el. | |
125 (defun codepage-setup (codepage) | |
126 "Create a coding system cpCODEPAGE to support the IBM codepage CODEPAGE. | |
127 | |
128 These coding systems are meant for encoding and decoding 8-bit non-ASCII | |
129 characters used by the IBM codepages, typically in conjunction with files | |
130 read/written by MS-DOS software, or for display on the MS-DOS terminal." | |
131 (interactive | |
132 (let ((completion-ignore-case t) | |
133 (candidates (cp-supported-codepages))) | |
65680
ed770a0a7846
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents:
64732
diff
changeset
|
134 (list (completing-read "Setup DOS Codepage (default 437): " candidates |
42057 | 135 nil t nil nil "437")))) |
136 (let ((cp (format "cp%s" codepage))) | |
137 (unless (coding-system-p (intern cp)) | |
138 (cp-make-coding-systems-for-codepage | |
139 cp (cp-charset-for-codepage cp) (cp-offset-for-codepage cp)))))) | |
140 ) ; eval-after-load | |
141 | |
142 ;; Macro to allow ccl compilation at byte-compile time, avoiding | |
143 ;; loading ccl. | |
144 ;;;###autoload | |
145 (defmacro cp-make-coding-system (name v &optional doc-string mnemonic) | |
146 "Make coding system NAME for and 8-bit, extended-ASCII character set. | |
147 V is a 128-long vector of characters to translate the upper half of | |
52434 | 148 the character set. DOC-STRING and MNEMONIC are used as the |
42057 | 149 corresponding args of `make-coding-system'. If MNEMONIC isn't given, |
52434 | 150 ?* is used. |
151 Return an updated `non-iso-charset-alist'." | |
42057 | 152 (let* ((encoder (intern (format "encode-%s" name))) |
153 (decoder (intern (format "decode-%s" name))) | |
154 (ccl-decoder | |
155 (ccl-compile | |
156 `(4 | |
157 ((loop | |
158 (read r1) | |
159 (if (r1 < 128) ;; ASCII | |
160 (r0 = ,(charset-id 'ascii)) | |
161 (if (r1 < 160) | |
162 (r0 = ,(charset-id 'eight-bit-control)) | |
163 (r0 = ,(charset-id 'eight-bit-graphic)))) | |
164 (translate-character ,decoder r0 r1) | |
47911 | 165 ;; Allow fragmentation on decoding -- relevant for |
166 ;; Cyrillic, Greek and, possibly Arabic and Hebrew. | |
48049 | 167 (translate-character utf-translation-table-for-decode r0 r1) |
42057 | 168 (write-multibyte-character r0 r1) |
169 (repeat)))))) | |
170 (ccl-encoder | |
171 (ccl-compile | |
172 `(1 | |
173 ((loop | |
174 (read-multibyte-character r0 r1) | |
175 (translate-character ,encoder r0 r1) | |
49143 | 176 (if (r0 != ,(charset-id 'ascii)) |
177 (if (r0 != ,(charset-id 'eight-bit-graphic)) | |
178 (if (r0 != ,(charset-id 'eight-bit-control)) | |
179 (r1 = ??)))) | |
42057 | 180 (write-repeat r1))))))) |
181 `(let ((translation-table (cp-make-translation-table ,v)) | |
182 (codes (cp-valid-codes ,v))) | |
183 (define-translation-table ',decoder translation-table) | |
184 (define-translation-table ',encoder | |
185 (char-table-extra-slot translation-table 0)) | |
186 (make-coding-system | |
187 ',name 4 ,(or mnemonic ?*) | |
188 (or ,doc-string (format "%s encoding" ',name)) | |
189 (cons ,ccl-decoder ,ccl-encoder) | |
190 (list (cons 'safe-chars (get ',encoder 'translation-table)) | |
191 (cons 'valid-codes codes) | |
47911 | 192 (cons 'mime-charset ',name) |
193 ;; For Quail translation. Fixme: this should really be | |
194 ;; a separate table that only translates the coding | |
195 ;; system's safe-chars. | |
61570
4b5610d9b02e
(cp-make-coding-system): Set
Kenichi Handa <handa@m17n.org>
parents:
61405
diff
changeset
|
196 (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
|
197 (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
|
198 (elt (list nil ; charset list |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
199 ',decoder |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
200 (let (l) ; code range |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
201 (dolist (elt (reverse codes)) |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
202 (push (cdr elt) l) |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
203 (push (car elt) l)) |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
204 (list l))))) |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
205 (if (not slot) |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
206 (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
|
207 (setcdr slot elt) |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
208 non-iso-charset-alist))))) |
42057 | 209 |
52434 | 210 (eval-when-compile (defvar non-iso-charset-alist)) |
42057 | 211 |
212 ;; These tables were mostly derived by running somthing like | |
213 ;; `recode -f cpxxx/..utf-8' on a binary file filled by | |
214 ;; `(dotimes (i 128) (insert ?? ?\\ (+ 128 i) ?\n))' and then | |
215 ;; exchanging the ?\鐃� entries for nil. iconv was used instead in some | |
216 ;; cases. | |
217 | |
218 ;; Fixme: Do better for mode-line mnemonics? | |
219 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
220 ;;;###autoload(autoload-coding-system 'cp437 '(require 'code-pages)) |
42057 | 221 (cp-make-coding-system |
222 cp437 | |
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 ?\�]) | |
351 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
352 ;;;###autoload(autoload-coding-system 'cp737 '(require 'code-pages)) |
42057 | 353 (cp-make-coding-system |
354 cp737 | |
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 ?\�]) | |
483 (coding-system-put 'cp737 'mime-charset nil) ; not in IANA list | |
484 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
485 ;;;###autoload(autoload-coding-system 'cp775 '(require 'code-pages)) |
42057 | 486 (cp-make-coding-system |
487 cp775 | |
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 ?\�]) | |
616 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
617 ;;;###autoload(autoload-coding-system 'cp850 '(require 'code-pages)) |
42057 | 618 (cp-make-coding-system |
619 cp850 | |
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 ?\�]) | |
748 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
749 ;;;###autoload(autoload-coding-system 'cp851 '(require 'code-pages)) |
42057 | 750 (cp-make-coding-system |
751 cp851 | |
752 [?\� | |
753 ?\端 | |
754 ?\辿 | |
755 ?\但 | |
756 ?\辰 | |
757 ?\� | |
758 ?\� | |
759 ?\巽 | |
760 ?\棚 | |
761 ?\谷 | |
762 ?\竪 | |
763 ?\誰 | |
764 ?\樽 | |
765 ?\� | |
766 ?\� | |
767 ?\� | |
768 ?\� | |
769 nil | |
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 ?\�]) | |
880 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
881 ;;;###autoload(autoload-coding-system 'cp852 '(require 'code-pages)) |
42057 | 882 (cp-make-coding-system |
883 cp852 | |
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 ?\�]) | |
1012 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
1013 ;;;###autoload(autoload-coding-system 'cp855 '(require 'code-pages)) |
42057 | 1014 (cp-make-coding-system |
1015 cp855 | |
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 ?\丼 | |
1141 nil | |
1142 ?\�� | |
1143 ?\�]) | |
1144 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
1145 ;;;###autoload(autoload-coding-system 'cp857 '(require 'code-pages)) |
42057 | 1146 (cp-make-coding-system |
1147 cp857 | |
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 ?\� | |
1233 nil | |
1234 ?\� | |
1235 ?\� | |
1236 ?\� | |
1237 ?\�� | |
1238 ?\�� | |
1239 ?\�� | |
1240 ?\�� | |
1241 ?\側 | |
1242 ?\� | |
1243 ?\�� | |
1244 ?\� | |
1245 ?\� | |
1246 ?\� | |
1247 ?\� | |
1248 ?\探 | |
1249 ?\� | |
1250 ?\袖 | |
1251 nil | |
1252 ?\� | |
1253 ?\� | |
1254 ?\� | |
1255 ?\� | |
1256 ?\狸 | |
1257 ?\耽 | |
1258 ?\�� | |
1259 ?\卒 | |
1260 ?\足 | |
1261 ?\賊 | |
1262 nil | |
1263 ?\他 | |
1264 ?\其 | |
1265 ?\則 | |
1266 ?\歎 | |
1267 ?\� | |
1268 ?\属 | |
1269 ?\即 | |
1270 ?\� | |
1271 ?\孫 | |
1272 ?\続 | |
1273 ?\族 | |
1274 ?\�� | |
1275 ?\�]) | |
1276 | |
72692
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1277 ;;;###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
|
1278 (cp-make-coding-system |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1279 cp858 |
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 ?\�]) |
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
70723
diff
changeset
|
1408 |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
1409 ;;;###autoload(autoload-coding-system 'cp860 '(require 'code-pages)) |
42057 | 1410 (cp-make-coding-system |
1411 cp860 | |
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 ?\�]) | |
1540 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
1541 ;;;###autoload(autoload-coding-system 'cp861 '(require 'code-pages)) |
42057 | 1542 (cp-make-coding-system |
1543 cp861 | |
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 ?\多 | |
1585 nil | |
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 ?\�]) | |
1672 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
1673 ;;;###autoload(autoload-coding-system 'cp862 '(require 'code-pages)) |
42057 | 1674 (cp-make-coding-system |
1675 cp862 | |
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 ?\多 | |
1717 nil | |
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 ?\�]) | |
1804 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
1805 ;;;###autoload(autoload-coding-system 'cp863 '(require 'code-pages)) |
42057 | 1806 (cp-make-coding-system |
1807 cp863 | |
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 ?\�]) | |
1936 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
1937 ;;;###autoload(autoload-coding-system 'cp864 '(require 'code-pages)) |
42057 | 1938 (cp-make-coding-system |
1939 cp864 | |
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 ?\鏤� | |
1967 nil | |
1968 nil | |
1969 ?\鏤� | |
1970 ?\鏤� | |
1971 ?\�� | |
1972 nil | |
1973 ?\足 | |
1974 ?\鏈� | |
1975 ?\贈 | |
1976 ?\造 | |
1977 ?\鏈� | |
1978 nil | |
1979 nil | |
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 ?\�]) | |
2068 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
2069 ;;;###autoload(autoload-coding-system 'cp865 '(require 'code-pages)) |
42057 | 2070 (cp-make-coding-system |
2071 cp865 | |
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 ?\�]) | |
2200 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
2201 ;;;###autoload(autoload-coding-system 'cp866 '(require 'code-pages)) |
47911 | 2202 (cp-make-coding-system |
2203 cp866 | |
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 ?\�] | |
2332 "CP866 (Cyrillic)." | |
2333 ?A) | |
42057 | 2334 |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
2335 ;;;###autoload(autoload-coding-system 'cp869 '(require 'code-pages)) |
42057 | 2336 (cp-make-coding-system |
2337 cp869 | |
2338 [nil | |
2339 nil | |
2340 nil | |
2341 nil | |
2342 nil | |
2343 nil | |
2344 ?\� | |
2345 nil | |
2346 ?\揃 | |
2347 ?\測 | |
2348 ?\側 | |
2349 ?\�� | |
2350 ?\�� | |
2351 ?\� | |
2352 ?\�� | |
2353 ?\� | |
2354 ?\� | |
2355 ?\葎 | |
2356 ?\� | |
2357 nil | |
2358 nil | |
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 ?\�]) | |
2466 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
2467 ;;;###autoload(autoload-coding-system 'cp874 '(require 'code-pages)) |
42057 | 2468 (cp-make-coding-system |
2469 cp874 | |
2470 [?\�� | |
2471 nil | |
2472 nil | |
2473 nil | |
2474 nil | |
2475 ?\�� | |
2476 nil | |
2477 nil | |
2478 nil | |
2479 nil | |
2480 nil | |
2481 nil | |
2482 nil | |
2483 nil | |
2484 nil | |
2485 nil | |
2486 nil | |
2487 ?\�� | |
2488 ?\�� | |
2489 ?\�� | |
2490 ?\�� | |
2491 ?\�� | |
2492 ?\�� | |
2493 ?\�� | |
2494 nil | |
2495 nil | |
2496 nil | |
2497 nil | |
2498 nil | |
2499 nil | |
2500 nil | |
2501 nil | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
2502 ?\� |
42057 | 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 ?\犖� | |
2561 nil | |
2562 nil | |
2563 nil | |
2564 nil | |
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 ?\犢� | |
2594 nil | |
2595 nil | |
2596 nil | |
2597 nil]) | |
2598 | |
60371
49e4e175b817
(windows-1250, windows-125[2-8])
Reiner Steib <Reiner.Steib@gmx.de>
parents:
56100
diff
changeset
|
2599 ;;;###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
|
2600 ;;;###autoload(autoload-coding-system 'cp1250 '(require 'code-pages)) |
42057 | 2601 (cp-make-coding-system |
2602 windows-1250 | |
2603 [?\�� | |
2604 nil | |
2605 ?\�� | |
2606 nil | |
2607 ?\�� | |
2608 ?\�� | |
2609 ?\�� | |
2610 ?\�� | |
2611 nil | |
2612 ?\�� | |
2613 ?\� | |
2614 ?\�� | |
2615 ?\� | |
2616 ?\鼎 | |
2617 ?\貼 | |
2618 ?\店 | |
2619 nil | |
2620 ?\�� | |
2621 ?\�� | |
2622 ?\�� | |
2623 ?\�� | |
2624 ?\�� | |
2625 ?\�� | |
2626 ?\�� | |
2627 nil | |
2628 ?\�� | |
2629 ?\邸 | |
2630 ?\�� | |
2631 ?\� | |
2632 ?\泥 | |
2633 ?\転 | |
2634 ?\添 | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
2635 ?\� |
42057 | 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 ?\�]) | |
2731 | |
60371
49e4e175b817
(windows-1250, windows-125[2-8])
Reiner Steib <Reiner.Steib@gmx.de>
parents:
56100
diff
changeset
|
2732 ;;;###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
|
2733 ;;;###autoload(autoload-coding-system 'cp1253 '(require 'code-pages)) |
42057 | 2734 (cp-make-coding-system |
2735 windows-1253 | |
2736 [?\�� | |
2737 nil | |
2738 ?\�� | |
2739 ?\� | |
2740 ?\�� | |
2741 ?\�� | |
2742 ?\�� | |
2743 ?\�� | |
2744 nil | |
2745 ?\�� | |
2746 nil | |
2747 ?\�� | |
2748 nil | |
2749 nil | |
2750 nil | |
2751 nil | |
2752 nil | |
2753 ?\�� | |
2754 ?\�� | |
2755 ?\�� | |
2756 ?\�� | |
2757 ?\�� | |
2758 ?\�� | |
2759 ?\�� | |
2760 nil | |
2761 ?\�� | |
2762 nil | |
2763 ?\�� | |
2764 nil | |
2765 nil | |
2766 nil | |
2767 nil | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
2768 ?\� |
42057 | 2769 ?\� |
2770 ?\� | |
2771 ?\贈 | |
2772 ?\造 | |
2773 ?\促 | |
2774 ?\側 | |
2775 ?\則 | |
2776 ?\即 | |
2777 ?\息 | |
2778 nil | |
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 ?\痢 | |
2818 nil | |
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 ?\� | |
2863 nil] | |
2864 nil ?g) ;; Greek | |
2865 | |
60371
49e4e175b817
(windows-1250, windows-125[2-8])
Reiner Steib <Reiner.Steib@gmx.de>
parents:
56100
diff
changeset
|
2866 ;;;###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
|
2867 ;;;###autoload(autoload-coding-system 'cp1254 '(require 'code-pages)) |
42057 | 2868 (cp-make-coding-system |
2869 windows-1254 | |
2870 [?\�� | |
2871 nil | |
2872 ?\�� | |
2873 ?\� | |
2874 ?\�� | |
2875 ?\�� | |
2876 ?\�� | |
2877 ?\�� | |
2878 ?\� | |
2879 ?\�� | |
2880 ?\� | |
2881 ?\�� | |
2882 ?\� | |
2883 nil | |
2884 nil | |
2885 nil | |
2886 nil | |
2887 ?\�� | |
2888 ?\�� | |
2889 ?\�� | |
2890 ?\�� | |
2891 ?\�� | |
2892 ?\�� | |
2893 ?\�� | |
2894 ?\� | |
2895 ?\�� | |
2896 ?\邸 | |
2897 ?\�� | |
2898 ?\� | |
2899 nil | |
2900 nil | |
2901 ?\展 | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
2902 ?\� |
42057 | 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 | |
2999 ;; yi_US | |
60371
49e4e175b817
(windows-1250, windows-125[2-8])
Reiner Steib <Reiner.Steib@gmx.de>
parents:
56100
diff
changeset
|
3000 ;;;###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
|
3001 ;;;###autoload(autoload-coding-system 'cp1255 '(require 'code-pages)) |
42057 | 3002 (cp-make-coding-system |
3003 windows-1255 | |
3004 [?\�� | |
3005 nil | |
3006 ?\�� | |
3007 ?\� | |
3008 ?\�� | |
3009 ?\�� | |
3010 ?\�� | |
3011 ?\�� | |
3012 ?\� | |
3013 ?\�� | |
3014 nil | |
3015 ?\�� | |
3016 nil | |
3017 nil | |
3018 nil | |
3019 nil | |
3020 nil | |
3021 ?\�� | |
3022 ?\�� | |
3023 ?\�� | |
3024 ?\�� | |
3025 ?\�� | |
3026 ?\�� | |
3027 ?\�� | |
3028 ?\� | |
3029 ?\�� | |
3030 nil | |
3031 ?\�� | |
3032 nil | |
3033 nil | |
3034 nil | |
3035 nil | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
3036 ?\� |
42057 | 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 ?\峭 | |
3078 nil | |
3079 ?\峪 | |
3080 ?\崋 | |
3081 ?\崕 | |
3082 ?\崗 | |
3083 ?\嵜 | |
3084 ?\� | |
3085 ?\� | |
3086 ?\� | |
3087 ?\� | |
3088 ?\廾 | |
3089 ?\弃 | |
3090 ?\弉 | |
3091 ?\彝 | |
3092 ?\彜 | |
3093 nil | |
3094 nil | |
3095 nil | |
3096 nil | |
3097 nil | |
3098 nil | |
3099 nil | |
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 ?\廬 | |
3127 nil | |
3128 nil | |
3129 ?\�� | |
3130 ?\�� | |
3131 nil] | |
3132 nil ?h) ;; Hebrew | |
3133 | |
60371
49e4e175b817
(windows-1250, windows-125[2-8])
Reiner Steib <Reiner.Steib@gmx.de>
parents:
56100
diff
changeset
|
3134 ;;;###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
|
3135 ;;;###autoload(autoload-coding-system 'cp1256 '(require 'code-pages)) |
42057 | 3136 (cp-make-coding-system |
3137 windows-1256 | |
3138 [?\�� | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3139 ?\拆 |
42057 | 3140 ?\�� |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3141 ?\� |
42057 | 3142 ?\�� |
3143 ?\�� | |
3144 ?\�� | |
3145 ?\�� | |
56100
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 ?\�� |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3148 ?\拗 |
42057 | 3149 ?\�� |
56100
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 ?\� |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3154 ?\擯 |
42057 | 3155 ?\�� |
3156 ?\�� | |
3157 ?\�� | |
3158 ?\�� | |
3159 ?\�� | |
3160 ?\�� | |
3161 ?\�� | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3162 ?\擧 |
42057 | 3163 ?\�� |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3164 ?\� |
42057 | 3165 ?\�� |
56100
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 ?\�� |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3169 ?\攤 |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
3170 ?\� |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3171 ?\� |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3172 ?\蔵 |
42057 | 3173 ?\贈 |
3174 ?\造 | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3175 ?\促 |
42057 | 3176 ?\側 |
3177 ?\則 | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3178 ?\即 |
42057 | 3179 ?\息 |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3180 ?\攵 |
42057 | 3181 ?\束 |
3182 ?\測 | |
3183 ?\足 | |
3184 ?\速 | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3185 ?\俗 |
42057 | 3186 ?\属 |
3187 ?\賊 | |
56100
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 ?\悋 |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3210 ?\惡 |
42057 | 3211 ?\悸 |
3212 ?\惠 | |
3213 ?\惓 | |
3214 ?\悴 | |
3215 ?\忰 | |
3216 ?\悽 | |
3217 ?\惆 | |
3218 ?\悵 | |
3219 ?\惘 | |
3220 ?\慍 | |
3221 ?\愕 | |
3222 ?\愆 | |
3223 ?\惶 | |
3224 ?\惷 | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3225 ?\� |
42057 | 3226 ?\愀 |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3227 ?\惴 |
42057 | 3228 ?\惺 |
3229 ?\愃 | |
3230 ?\� | |
3231 ?\� | |
3232 ?\� | |
3233 ?\� | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3234 ?\� |
42057 | 3235 ?\� |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3236 ?\但 |
42057 | 3237 ?\� |
3238 ?\� | |
3239 ?\� | |
3240 ?\� | |
3241 ?\巽 | |
3242 ?\竪 | |
3243 ?\辿 | |
3244 ?\棚 | |
3245 ?\谷 | |
56100
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 ?\樽 |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3249 ?\誰 |
42057 | 3250 ?\� |
3251 ?\� | |
3252 ?\� | |
3253 ?\� | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3254 ?\担 |
42057 | 3255 ?\� |
3256 ?\� | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3257 ?\歎 |
42057 | 3258 ?\� |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3259 ?\湛 |
42057 | 3260 ?\� |
3261 ?\短 | |
3262 ?\端 | |
3263 ?\�� | |
3264 ?\�� | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
3265 ?\�] |
42057 | 3266 nil ?a) ;; Arabic |
3267 | |
60371
49e4e175b817
(windows-1250, windows-125[2-8])
Reiner Steib <Reiner.Steib@gmx.de>
parents:
56100
diff
changeset
|
3268 ;;;###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
|
3269 ;;;###autoload(autoload-coding-system 'cp1257 '(require 'code-pages)) |
42057 | 3270 (cp-make-coding-system |
3271 windows-1257 | |
3272 [?\�� | |
3273 nil | |
3274 ?\�� | |
3275 nil | |
3276 ?\�� | |
3277 ?\�� | |
3278 ?\�� | |
3279 ?\�� | |
3280 nil | |
3281 ?\�� | |
3282 nil | |
3283 ?\�� | |
3284 nil | |
3285 nil | |
3286 nil | |
3287 nil | |
3288 nil | |
3289 ?\�� | |
3290 ?\�� | |
3291 ?\�� | |
3292 ?\�� | |
3293 ?\�� | |
3294 ?\�� | |
3295 ?\�� | |
3296 nil | |
3297 ?\�� | |
3298 nil | |
3299 ?\�� | |
3300 nil | |
3301 nil | |
3302 nil | |
3303 nil | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
3304 ?\� |
42057 | 3305 nil |
3306 ?\蔵 | |
3307 ?\贈 | |
3308 ?\造 | |
3309 nil | |
3310 ?\側 | |
3311 ?\則 | |
3312 ?\� | |
3313 ?\息 | |
3314 ?\� | |
3315 ?\束 | |
3316 ?\測 | |
3317 ?\足 | |
3318 ?\速 | |
3319 ?\� | |
3320 ?\属 | |
3321 ?\賊 | |
3322 ?\族 | |
3323 ?\続 | |
3324 nil | |
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 ?\転 | |
3399 nil]) | |
3400 | |
60371
49e4e175b817
(windows-1250, windows-125[2-8])
Reiner Steib <Reiner.Steib@gmx.de>
parents:
56100
diff
changeset
|
3401 ;;;###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
|
3402 ;;;###autoload(autoload-coding-system 'cp1258 '(require 'code-pages)) |
42057 | 3403 (cp-make-coding-system |
3404 windows-1258 | |
3405 [?\�� | |
3406 nil | |
3407 ?\�� | |
3408 ?\� | |
3409 ?\�� | |
3410 ?\�� | |
3411 ?\�� | |
3412 ?\�� | |
3413 ?\� | |
3414 ?\�� | |
3415 nil | |
3416 ?\�� | |
3417 ?\� | |
3418 nil | |
3419 nil | |
3420 nil | |
3421 nil | |
3422 ?\�� | |
3423 ?\�� | |
3424 ?\�� | |
3425 ?\�� | |
3426 ?\�� | |
3427 ?\�� | |
3428 ?\�� | |
3429 ?\� | |
3430 ?\�� | |
3431 nil | |
3432 ?\�� | |
3433 ?\� | |
3434 nil | |
3435 nil | |
3436 ?\展 | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
3437 ?\� |
42057 | 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 ?\耽]) | |
3533 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
3534 ;;;###autoload(autoload-coding-system 'next '(require 'code-pages)) |
42057 | 3535 (cp-make-coding-system |
3536 next | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
3537 [?\� |
42057 | 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 ?\則 | |
3577 ?\造 | |
73242 | 3578 ?\�� |
42057 | 3579 ?\�� |
3580 ?\束 | |
73242 | 3581 ?\�� |
3582 ?\�� | |
42057 | 3583 ?\鍖� |
3584 ?\鍖� | |
3585 ?\速 | |
3586 ?\�� | |
3587 ?\�� | |
3588 ?\�� | |
3589 ?\揃 | |
3590 ?\側 | |
3591 ?\其 | |
3592 ?\�� | |
73242 | 3593 ?\�� |
3594 ?\�� | |
42057 | 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 ?\耽 | |
3663 nil | |
3664 nil] | |
3665 "NeXTstep encoding." ?N) | |
3666 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
3667 ;;;###autoload(autoload-coding-system 'koi8-t '(require 'code-pages)) |
42057 | 3668 (cp-make-coding-system |
3669 koi8-t ; used by glibc for tg_TJ | |
3670 [?\� | |
3671 ?\� | |
3672 ?\�� | |
3673 ?\� | |
3674 ?\�� | |
3675 ?\�� | |
3676 ?\�� | |
3677 ?\�� | |
3678 nil | |
3679 ?\�� | |
3680 ?\匈 | |
3681 ?\�� | |
3682 ?\匆 | |
3683 ?\匏 | |
3684 ?\匐 | |
3685 nil | |
3686 ?\� | |
3687 ?\�� | |
3688 ?\�� | |
3689 ?\�� | |
3690 ?\�� | |
3691 ?\�� | |
3692 ?\�� | |
3693 ?\�� | |
3694 nil | |
3695 ?\�� | |
3696 nil | |
3697 ?\�� | |
3698 nil | |
3699 nil | |
3700 nil | |
3701 nil | |
3702 nil | |
3703 ?\哢 | |
3704 ?\哺 | |
3705 ?\� | |
3706 ?\造 | |
3707 ?\咤 | |
3708 ?\側 | |
3709 ?\則 | |
3710 nil | |
3711 nil | |
3712 nil | |
3713 ?\束 | |
3714 ?\測 | |
3715 ?\足 | |
3716 ?\速 | |
3717 nil | |
3718 ?\属 | |
3719 ?\賊 | |
3720 ?\族 | |
3721 ?\� | |
3722 nil | |
3723 ?\哂 | |
3724 ?\其 | |
3725 ?\揃 | |
3726 nil | |
3727 ?\�� | |
3728 nil | |
3729 ?\損 | |
3730 nil | |
3731 nil | |
3732 nil | |
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 ?\乖] | |
3798 "Unicode-based KOI8-T encoding for Cyrillic") | |
3799 (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
|
3800 (define-coding-system-alias 'cyrillic-koi8-t 'koi8-t) |
42057 | 3801 |
3802 ;; Online final ISO draft: | |
3803 | |
47911 | 3804 ;; http://www.evertype.com/standards/iso8859/fdis8859-16-en.pdf |
42057 | 3805 |
3806 ;; Equivalent National Standard: | |
3807 ;; Romanian Standard SR 14111:1998, Romanian Standards Institution | |
3808 ;; (ASRO). | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
3809 |
42057 | 3810 ;; Intended usage: |
3811 | |
3812 ;; "This set of coded graphic characters is intended for use in data and | |
3813 ;; text processing applications and also for information interchange. The | |
3814 ;; set contains graphic characters used for general purpose applications in | |
3815 ;; typical office environments in at least the following languages: | |
3816 ;; Albanian, Croatian, English, Finnish, French, German, Hungarian, Irish | |
3817 ;; Gaelic (new orthography), Italian, Latin, Polish, Romanian, and | |
3818 ;; Slovenian. This set of coded graphic characters may be regarded as a | |
3819 ;; version of an 8-bit code according to ISO/IEC 2022 or ISO/IEC 4873 at | |
3820 ;; level 1." [ISO 8859-16:2001(E), p. 1] | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
3821 |
42057 | 3822 ;; 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
|
3823 |
42057 | 3824 ;; ISO 8859-16 was primarily designed for single-byte encoding the Romanian |
3825 ;; language. The UTF-8 charset is the preferred and in today's MIME software | |
3826 ;; 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
|
3827 ;;;###autoload(autoload-coding-system 'iso-8859-16 '(require 'code-pages)) |
42057 | 3828 (cp-make-coding-system |
3829 iso-latin-10 ; consistent with, e.g. Latin-1 | |
3830 [nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil | |
3831 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
|
3832 ?\� |
42057 | 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 ?\耽] | |
3928 "Unicode-based encoding for Latin-10 (MIME: ISO-8859-16)" | |
3929 ?r) ;; Romanian | |
3930 (coding-system-put 'iso-latin-10 'mime-charset 'iso-8859-16) | |
3931 (define-coding-system-alias 'iso-8859-16 'iso-latin-10) | |
3932 (define-coding-system-alias 'latin-10 'iso-latin-10) | |
3933 | |
3934 ;; Unicode-based alternative which has the possible advantage of | |
3935 ;; having its relative sparseness specified. | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
3936 ;;;###autoload(autoload-coding-system 'iso-8859-6 '(require 'code-pages)) |
42057 | 3937 (cp-make-coding-system |
3938 ;; The base system uses arabic-iso-8bit, but that's not a MIME charset. | |
3939 iso-8859-6 | |
73213
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 |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3941 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
|
3942 ?\� |
73213
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 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3946 ?造 |
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 nil |
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 ?足 |
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 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3969 ?� |
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 nil |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3973 ?� |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
3974 nil |
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 ?愃 |
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 nil |
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 ?� |
36e0d6fede4c
(iso-8859-6): Table fixed.
Kenichi Handa <handa@m17n.org>
parents:
72692
diff
changeset
|
4025 nil nil nil nil nil nil nil nil nil nil nil nil nil] |
42057 | 4026 "Unicode-based Arabic ISO/IEC 8859-6 (MIME: ISO-8859-6)" |
4027 ?6) | |
4028 (define-coding-system-alias 'arabic-iso-8bit 'iso-8859-6) | |
4029 | |
60371
49e4e175b817
(windows-1250, windows-125[2-8])
Reiner Steib <Reiner.Steib@gmx.de>
parents:
56100
diff
changeset
|
4030 ;;;###autoload(autoload-coding-system 'iso-8859-10 '(require 'code-pages)) |
42057 | 4031 (cp-make-coding-system |
4032 iso-latin-6 | |
4033 [nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil | |
4034 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
|
4035 ?\� |
42057 | 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 ?\銚] | |
4131 "Unicode-based encoding for Latin-6 (MIME: ISO-8859-10)") | |
4132 (coding-system-put 'iso-latin-6 'mime-charset 'iso-8859-10) | |
4133 (define-coding-system-alias 'iso-8859-10 'iso-latin-6) | |
4134 (define-coding-system-alias 'latin-6 'iso-latin-6) | |
4135 | |
4136 ;; 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
|
4137 ;;;###autoload(autoload-coding-system 'iso-8859-13 '(require 'code-pages)) |
42057 | 4138 (cp-make-coding-system |
4139 iso-latin-7 | |
4140 [nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil | |
4141 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
|
4142 ?\� |
61405
a29a1f9a1c25
(iso-latin-7): Fix the map.
Kenichi Handa <handa@m17n.org>
parents:
60371
diff
changeset
|
4143 ?\�� |
42057 | 4144 ?\蔵 |
4145 ?\贈 | |
4146 ?\造 | |
4147 ?\�� | |
4148 ?\側 | |
4149 ?\則 | |
61405
a29a1f9a1c25
(iso-latin-7): Fix the map.
Kenichi Handa <handa@m17n.org>
parents:
60371
diff
changeset
|
4150 ?\� |
42057 | 4151 ?\息 |
61405
a29a1f9a1c25
(iso-latin-7): Fix the map.
Kenichi Handa <handa@m17n.org>
parents:
60371
diff
changeset
|
4152 ?\� |
42057 | 4153 ?\束 |
4154 ?\測 | |
4155 ?\足 | |
4156 ?\速 | |
61405
a29a1f9a1c25
(iso-latin-7): Fix the map.
Kenichi Handa <handa@m17n.org>
parents:
60371
diff
changeset
|
4157 ?\� |
42057 | 4158 ?\属 |
4159 ?\賊 | |
4160 ?\族 | |
4161 ?\続 | |
4162 ?\�� | |
4163 ?\袖 | |
4164 ?\其 | |
4165 ?\揃 | |
61405
a29a1f9a1c25
(iso-latin-7): Fix the map.
Kenichi Handa <handa@m17n.org>
parents:
60371
diff
changeset
|
4166 ?\淡 |
42057 | 4167 ?\孫 |
61405
a29a1f9a1c25
(iso-latin-7): Fix the map.
Kenichi Handa <handa@m17n.org>
parents:
60371
diff
changeset
|
4168 ?\� |
42057 | 4169 ?\損 |
4170 ?\村 | |
4171 ?\遜 | |
4172 ?\他 | |
61405
a29a1f9a1c25
(iso-latin-7): Fix the map.
Kenichi Handa <handa@m17n.org>
parents:
60371
diff
changeset
|
4173 ?\脱 |
42057 | 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 ] | |
4239 "Unicode-based encoding for Latin-7 (MIME: ISO-8859-13)" | |
4240 ?l) ;; Lithuanian/Latvian | |
4241 (coding-system-put 'iso-latin-7 'mime-charset 'iso-8859-13) | |
4242 (define-coding-system-alias 'iso-8859-13 'iso-latin-7) | |
4243 (define-coding-system-alias 'latin-7 'iso-latin-7) | |
4244 | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4245 ;; Fixme: check on the C1 characters which libiconv includes. They |
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4246 ;; 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
|
4247 ;; official definition of georgian-ps. |
60371
49e4e175b817
(windows-1250, windows-125[2-8])
Reiner Steib <Reiner.Steib@gmx.de>
parents:
56100
diff
changeset
|
4248 ;;;###autoload(autoload-coding-system 'georgian-ps '(require 'code-pages)) |
42057 | 4249 (cp-make-coding-system |
4250 georgian-ps ; used by glibc for ka_GE | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4251 [?\� |
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4252 ?\� |
42057 | 4253 ?\�� |
4254 ?\� | |
4255 ?\�� | |
4256 ?\�� | |
4257 ?\�� | |
4258 ?\�� | |
4259 ?\� | |
4260 ?\�� | |
4261 ?\� | |
4262 ?\�� | |
4263 ?\� | |
49797
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 ?\� |
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4267 ?\� |
42057 | 4268 ?\�� |
4269 ?\�� | |
4270 ?\�� | |
4271 ?\�� | |
4272 ?\�� | |
4273 ?\�� | |
4274 ?\�� | |
4275 ?\� | |
4276 ?\�� | |
4277 ?\邸 | |
4278 ?\�� | |
4279 ?\� | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4280 ?\� |
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4281 ?\� |
42057 | 4282 ?\展 |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4283 ?\� |
42057 | 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 ?\耽] | |
4379 nil ?G) | |
4380 (coding-system-put 'georgian-ps 'mime-charset nil) ; not in IANA list | |
4381 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
4382 ;;;###autoload(autoload-coding-system 'cp720 '(require 'code-pages)) |
42057 | 4383 ;; From http://www.microsoft.com/globaldev/reference/oem/720.htm |
4384 (cp-make-coding-system | |
4385 cp720 | |
4386 [nil | |
4387 nil | |
4388 ?\辿 | |
4389 ?\但 | |
4390 nil | |
4391 ?\� | |
4392 nil | |
4393 ?\巽 | |
4394 ?\棚 | |
4395 ?\谷 | |
4396 ?\竪 | |
4397 ?\誰 | |
4398 ?\樽 | |
4399 nil | |
4400 nil | |
4401 nil | |
4402 nil | |
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 ?\�]) | |
4514 (coding-system-put 'cp720 'mime-charset nil) ; not in IANA list | |
4515 | |
64732
29c131ee3778
Add autoload cookies for all coding systems.
Kenichi Handa <handa@m17n.org>
parents:
64085
diff
changeset
|
4516 ;;;###autoload(autoload-coding-system 'cp1125 '(require 'code-pages)) |
42057 | 4517 ;; http://oss.software.ibm.com/cvs/icu/charset/data/ucm/ibm-1125_P100-2000.ucm |
4518 (cp-make-coding-system | |
4519 cp1125 | |
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 ?\� | |
4641 ?\� | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
4642 ?\揃 |
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
4643 ?\�� |
42057 | 4644 ?\�� |
4645 ?\造 | |
56100
f64396b94a00
(windows-1256, cp1125): Fix tables
Kenichi Handa <handa@m17n.org>
parents:
55475
diff
changeset
|
4646 ?\�� |
42057 | 4647 ?\�]) |
47911 | 4648 (define-coding-system-alias 'ruscii 'cp1125) |
4649 ;; Original name for cp1125, says Serhii Hlodin <hlodin@lutsk.bank.gov.ua> | |
42057 | 4650 (define-coding-system-alias 'cp866u 'cp1125) |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4651 (coding-system-put 'cp1125 'mime-charset nil) |
42057 | 4652 |
48774 | 4653 ;; Suggested by Anton Zinoviev <anton@lml.bas.bg>: Bulgarian DOS |
4654 ;; codepage. Table at | |
70723 | 4655 ;; <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
|
4656 ;;;###autoload(autoload-coding-system 'mik '(require 'code-pages)) |
48774 | 4657 (cp-make-coding-system |
4658 mik | |
4659 [?� ?� ?� ?� ?� ?� ?� ?� ?� ?� ?� ?� ?� ?� ?� ?� ?� ?弌 ?丐 ?丕 ?个 ?丱 ?丶 | |
4660 ?丼 ?丿 ?乂 ?乖 ?乘 ?亂 ?亅 ?豫 ?亊 ?舒 ?弍 ?于 ?亞 ?亟 ?亠 ?亢 ?亰 ?亳 ?亶 ?从 ?仍 ?仄 ?仆 | |
4661 ?仂 ?仗 ?� ?� ?� ?� ?� ?� ?� ?� ?� ?� ?� ?� ?� ?� ?� ?� ?�� ?�� ?�� ?�� ?�� | |
4662 ?�� ?�� ?�� ?�� ?�� ?�� ?�� ?�� ?�� ?�� ?�� ?�� ?�� ?�� ?�� ?�� ?�� ?則 ?�� ?�� ?�� ?�� ?�� | |
70723 | 4663 ?�� ?�� ?�� ?�� ?留 ?� ?� ?� ?裡 ?� ?袖 ?� ?陸 ?� ?立 ?隆 ?�� ?� ?竜 ?�� ?�� ?賊 ?�� |
48774 | 4664 ?�� ?�� ?�� ?歎 ?�� ?属 ?�� ?揃 ?�� ?�� ?族 ?�� ?�]) |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4665 (coding-system-put 'mik 'mime-charset nil) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49143
diff
changeset
|
4666 |
48774 | 4667 ;; Suggested by Anton Zinoviev <anton@lml.bas.bg>: similar to CP1251 |
4668 ;; and used for some non-Slavic Cyrillic languages. Table found at | |
4669 ;; <URL:ftp://ftp.logic.ru/pub/logic/linux/cyr-asian/PT154>. See also | |
4670 ;; <URL:http://lists.w3.org/Archives/Public/ietf-charsets/2002AprJun/0092.html, | |
4671 ;; 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
|
4672 ;;;###autoload(autoload-coding-system 'pt154 '(require 'code-pages)) |
48774 | 4673 (cp-make-coding-system |
4674 pt154 | |
4675 [?� ?� ?哺 ?� ?�� ?�� ?匐 ?勳 ?匆 ?勵 ?� ?哂 ?劬 ?� ?匣 ?匕 ?� ?�� ?�� ?�� ?�� ?�� ?�� | |
4676 ?�� ?匈 ?匏 ?辧 ?咤 ?劭 ?� ?匯 ?匚 ?� ?� ?� ?� ?哦 ?� ?勸 ?則 ?� ?息 ?� ?\束 ?測 ?哢 | |
61570
4b5610d9b02e
(cp-make-coding-system): Set
Kenichi Handa <handa@m17n.org>
parents:
61405
diff
changeset
|
4677 ?速 ?� ?属 ?勹 ?� ?� ?� ?唏 ?其 ?揃 ?� ?�� ?� ?\損 ?� ?勣 ?勦 ?� ?� ?� ?� ?� ?� |
48774 | 4678 ?� ?� ?� ?� ?� ?� ?� ?� ?� ?� ?� ?� ?弌 ?丐 ?丕 ?个 ?丱 ?丶 ?丼 ?丿 ?乂 ?乖 ?乘 |
4679 ?亂 ?亅 ?豫 ?亊 ?舒 ?弍 ?于 ?亞 ?亟 ?亠 ?亢 ?亰 ?亳 ?亶 ?从 ?仍 ?仄 ?仆 ?仂 ?仗 ?� ?� ?� | |
4680 ?� ?� ?� ?� ?� ?� ?� ?� ?� ?� ?� ?� ?�]) | |
49797
bc572bfebdfc
Undo `Trailing whitepace deleted.'
Dave Love <fx@gnu.org>
parents:
49598
diff
changeset
|
4681 |
52796
af41ec2032d0
(iso-8859-11): Add autoload cookie.
Kenichi Handa <handa@m17n.org>
parents:
52434
diff
changeset
|
4682 ;;;###autoload(autoload-coding-system 'iso-8859-11 '(require 'code-pages)) |
48022 | 4683 (cp-make-coding-system |
4684 iso-8859-11 | |
48774 | 4685 [nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil |
4686 nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil | |
4687 ?� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� | |
4688 ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� | |
4689 ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� | |
4690 ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� ?犖� nil nil nil nil ?犖� | |
4691 ?犢� ?犢� ?犢� ?犢� ?犢� ?犢� ?犢� ?犢� ?犢� ?犢� ?犢� ?犢� ?犢� ?犢� ?犢� ?犢� | |
4692 ?犢� ?犢� ?犢� ?犢� ?犢� ?犢� ?犢� ?犢� ?犢� ?犢� ?犢� ?犢� nil nil nil nil] | |
48022 | 4693 "ISO-8859-11. This is `thai-tis620' with the addition of no-break-space.") |
4694 | |
55469 | 4695 (dotimes (i 9) |
42057 | 4696 (let ((w (intern (format "windows-125%d" i))) |
4697 (c (intern (format "cp125%d" i)))) | |
55469 | 4698 ;; Define cp125* as aliases for all windows-125*, so on Windows |
4699 ;; we can just concat "cp" to the ANSI codepage we get from the system | |
4700 ;; 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
|
4701 (when (coding-system-p w) |
68326 | 4702 (define-coding-system-alias c w) |
62795
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
4703 ;; 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
|
4704 ;; canonical names. |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
4705 (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
|
4706 (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
|
4707 (if slot |
9b285ff39db2
Don't register a coding system into
Kenichi Handa <handa@m17n.org>
parents:
62274
diff
changeset
|
4708 (push (cons c (cdr slot)) non-iso-charset-alist))))))) |
42057 | 4709 |
4710 (provide 'code-pages) | |
4711 | |
52401 | 4712 ;;; arch-tag: 8b6e3c73-b271-4198-866d-ea6d0ceff1b2 |
42057 | 4713 ;;; code-pages.el ends here |