]> code.delx.au - gnu-emacs/blob - lisp/international/mule.el
* mule.el (coding-system-iso-2022-flags): Add `level-4'. (Bug#8522)
[gnu-emacs] / lisp / international / mule.el
1 ;;; mule.el --- basic commands for multilingual environment
2
3 ;; Copyright (C) 1997-2013 Free Software Foundation, Inc.
4 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
5 ;; 2005, 2006, 2007, 2008, 2009, 2010, 2011
6 ;; National Institute of Advanced Industrial Science and Technology (AIST)
7 ;; Registration Number H14PRO021
8 ;; Copyright (C) 2003
9 ;; National Institute of Advanced Industrial Science and Technology (AIST)
10 ;; Registration Number H13PRO009
11
12 ;; Keywords: mule, multilingual, character set, coding system
13
14 ;; This file is part of GNU Emacs.
15
16 ;; GNU Emacs is free software: you can redistribute it and/or modify
17 ;; it under the terms of the GNU General Public License as published by
18 ;; the Free Software Foundation, either version 3 of the License, or
19 ;; (at your option) any later version.
20
21 ;; GNU Emacs is distributed in the hope that it will be useful,
22 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
23 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 ;; GNU General Public License for more details.
25
26 ;; You should have received a copy of the GNU General Public License
27 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
28
29 ;;; Commentary:
30
31 ;;; Code:
32
33 ;; FIXME? Are these still relevant? Nothing uses them AFAICS.
34 (defconst mule-version "6.0 (HANACHIRUSATO)" "\
35 Version number and name of this version of MULE (multilingual environment).")
36
37 (defconst mule-version-date "2003.9.1" "\
38 Distribution date of this version of MULE (multilingual environment).")
39
40 \f
41 ;;; CHARSET
42
43 ;; Backward compatibility code for handling emacs-mule charsets.
44 (defvar private-char-area-1-min #xF0000)
45 (defvar private-char-area-1-max #xFFFFE)
46 (defvar private-char-area-2-min #x100000)
47 (defvar private-char-area-2-max #x10FFFE)
48
49 ;; Table of emacs-mule charsets indexed by their emacs-mule ID.
50 (defvar emacs-mule-charset-table (make-vector 256 nil))
51 (aset emacs-mule-charset-table 0 'ascii)
52
53 ;; Convert the argument of old-style call of define-charset to a
54 ;; property list used by the new-style.
55 ;; INFO-VECTOR is a vector of the format:
56 ;; [DIMENSION CHARS WIDTH DIRECTION ISO-FINAL-CHAR ISO-GRAPHIC-PLANE
57 ;; SHORT-NAME LONG-NAME DESCRIPTION]
58
59 (defun convert-define-charset-argument (emacs-mule-id info-vector)
60 (let* ((dim (aref info-vector 0))
61 (chars (aref info-vector 1))
62 (total (if (= dim 1) chars (* chars chars)))
63 (code-space (if (= dim 1) (if (= chars 96) [32 127] [33 126])
64 (if (= chars 96) [32 127 32 127] [33 126 33 126])))
65 code-offset)
66 (if (integerp emacs-mule-id)
67 (or (= emacs-mule-id 0)
68 (and (>= emacs-mule-id 129) (< emacs-mule-id 256))
69 (error "Invalid CHARSET-ID: %d" emacs-mule-id))
70 (let (from-id to-id)
71 (if (= dim 1) (setq from-id 160 to-id 224)
72 (setq from-id 224 to-id 255))
73 (while (and (< from-id to-id)
74 (not (aref emacs-mule-charset-table from-id)))
75 (setq from-id (1+ from-id)))
76 (if (= from-id to-id)
77 (error "No more room for the new Emacs-mule charset"))
78 (setq emacs-mule-id from-id)))
79 (if (> (- private-char-area-1-max private-char-area-1-min) total)
80 (setq code-offset private-char-area-1-min
81 private-char-area-1-min (+ private-char-area-1-min total))
82 (if (> (- private-char-area-2-max private-char-area-2-min) total)
83 (setq code-offset private-char-area-2-min
84 private-char-area-2-min (+ private-char-area-2-min total))
85 (error "No more space for a new charset")))
86 (list :dimension dim
87 :code-space code-space
88 :iso-final-char (aref info-vector 4)
89 :code-offset code-offset
90 :emacs-mule-id emacs-mule-id)))
91
92 (defun define-charset (name docstring &rest props)
93 "Define NAME (symbol) as a charset with DOCSTRING.
94 The remaining arguments must come in pairs ATTRIBUTE VALUE. ATTRIBUTE
95 may be any symbol. The following have special meanings, and one of
96 `:code-offset', `:map', `:subset', `:superset' must be specified.
97
98 `:short-name'
99
100 VALUE must be a short string to identify the charset. If omitted,
101 NAME is used.
102
103 `:long-name'
104
105 VALUE must be a string longer than `:short-name' to identify the
106 charset. If omitted, the value of the `:short-name' attribute is used.
107
108 `:dimension'
109
110 VALUE must be an integer 0, 1, 2, or 3, specifying the dimension of
111 code-points of the charsets. If omitted, it is calculated from the
112 value of the `:code-space' attribute.
113
114 `:code-space'
115
116 VALUE must be a vector of length at most 8 specifying the byte code
117 range of each dimension in this format:
118 [ MIN-1 MAX-1 MIN-2 MAX-2 ... ]
119 where MIN-N is the minimum byte value of Nth dimension of code-point,
120 MAX-N is the maximum byte value of that.
121
122 `:min-code'
123
124 VALUE must be an integer specifying the minimum code point of the
125 charset. If omitted, it is calculated from `:code-space'. VALUE may
126 be a cons (HIGH . LOW), where HIGH is the most significant 16 bits of
127 the code point and LOW is the least significant 16 bits.
128
129 `:max-code'
130
131 VALUE must be an integer specifying the maximum code point of the
132 charset. If omitted, it is calculated from `:code-space'. VALUE may
133 be a cons (HIGH . LOW), where HIGH is the most significant 16 bits of
134 the code point and LOW is the least significant 16 bits.
135
136 `:iso-final-char'
137
138 VALUE must be a character in the range 32 to 127 (inclusive)
139 specifying the final char of the charset for ISO-2022 encoding. If
140 omitted, the charset can't be encoded by ISO-2022 based
141 coding-systems.
142
143 `:iso-revision-number'
144
145 VALUE must be an integer in the range 0..63, specifying the revision
146 number of the charset for ISO-2022 encoding.
147
148 `:emacs-mule-id'
149
150 VALUE must be an integer of 0, 129..255. If omitted, the charset
151 can't be encoded by coding-systems of type `emacs-mule'.
152
153 `:ascii-compatible-p'
154
155 VALUE must be nil or t (default nil). If VALUE is t, the charset is
156 compatible with ASCII, i.e. the first 128 code points map to ASCII.
157
158 `:supplementary-p'
159
160 VALUE must be nil or t. If the VALUE is t, the charset is
161 supplementary, which means it is used only as a parent or a
162 subset of some other charset, or it is provided just for backward
163 compatibility.
164
165 `:invalid-code'
166
167 VALUE must be a nonnegative integer that can be used as an invalid
168 code point of the charset. If the minimum code is 0 and the maximum
169 code is greater than Emacs's maximum integer value, `:invalid-code'
170 should not be omitted.
171
172 `:code-offset'
173
174 VALUE must be an integer added to the index number of a character to
175 get the corresponding character code.
176
177 `:map'
178
179 VALUE must be vector or string.
180
181 If it is a vector, the format is [ CODE-1 CHAR-1 CODE-2 CHAR-2 ... ],
182 where CODE-n is a code-point of the charset, and CHAR-n is the
183 corresponding character code.
184
185 If it is a string, it is a name of file that contains the above
186 information. Each line of the file must be this format:
187 0xXXX 0xYYY
188 where XXX is a hexadecimal representation of CODE-n and YYY is a
189 hexadecimal representation of CHAR-n. A line starting with `#' is a
190 comment line.
191
192 `:subset'
193
194 VALUE must be a list:
195 ( PARENT MIN-CODE MAX-CODE OFFSET )
196 PARENT is a parent charset. MIN-CODE and MAX-CODE specify the range
197 of characters inherited from the parent. OFFSET is an integer value
198 to add to a code point of the parent charset to get the corresponding
199 code point of this charset.
200
201 `:superset'
202
203 VALUE must be a list of parent charsets. The charset inherits
204 characters from them. Each element of the list may be a cons (PARENT
205 . OFFSET), where PARENT is a parent charset, and OFFSET is an offset
206 value to add to a code point of PARENT to get the corresponding code
207 point of this charset.
208
209 `:unify-map'
210
211 VALUE must be vector or string.
212
213 If it is a vector, the format is [ CODE-1 CHAR-1 CODE-2 CHAR-2 ... ],
214 where CODE-n is a code-point of the charset, and CHAR-n is the
215 corresponding Unicode character code.
216
217 If it is a string, it is a name of file that contains the above
218 information. The file format is the same as what described for `:map'
219 attribute."
220 (when (vectorp (car props))
221 ;; Old style code:
222 ;; (define-charset CHARSET-ID CHARSET-SYMBOL INFO-VECTOR)
223 ;; Convert the argument to make it fit with the current style.
224 (let ((vec (car props)))
225 (setq props (convert-define-charset-argument name vec)
226 name docstring
227 docstring (aref vec 8))))
228 (let ((attrs (mapcar 'list '(:dimension
229 :code-space
230 :min-code
231 :max-code
232 :iso-final-char
233 :iso-revision-number
234 :emacs-mule-id
235 :ascii-compatible-p
236 :supplementary-p
237 :invalid-code
238 :code-offset
239 :map
240 :subset
241 :superset
242 :unify-map
243 :plist))))
244
245 ;; If :dimension is omitted, get the dimension from :code-space.
246 (let ((dimension (plist-get props :dimension)))
247 (or dimension
248 (let ((code-space (plist-get props :code-space)))
249 (setq dimension (if code-space (/ (length code-space) 2) 4))
250 (setq props (plist-put props :dimension dimension)))))
251
252 (let ((code-space (plist-get props :code-space)))
253 (or code-space
254 (let ((dimension (plist-get props :dimension)))
255 (setq code-space (make-vector 8 0))
256 (dotimes (i dimension)
257 (aset code-space (1+ (* i 2)) #xFF))
258 (setq props (plist-put props :code-space code-space)))))
259
260 ;; If :emacs-mule-id is specified, update emacs-mule-charset-table.
261 (let ((emacs-mule-id (plist-get props :emacs-mule-id)))
262 (if (integerp emacs-mule-id)
263 (aset emacs-mule-charset-table emacs-mule-id name)))
264
265 (dolist (slot attrs)
266 (setcdr slot (purecopy (plist-get props (car slot)))))
267
268 ;; Make sure that the value of :code-space is a vector of 8
269 ;; elements.
270 (let* ((slot (assq :code-space attrs))
271 (val (cdr slot))
272 (len (length val)))
273 (if (< len 8)
274 (setcdr slot
275 (vconcat val (make-vector (- 8 len) 0)))))
276
277 ;; Add :name and :docstring properties to PROPS.
278 (setq props
279 (cons :name (cons name (cons :docstring (cons (purecopy docstring) props)))))
280 (or (plist-get props :short-name)
281 (plist-put props :short-name (symbol-name name)))
282 (or (plist-get props :long-name)
283 (plist-put props :long-name (plist-get props :short-name)))
284 (plist-put props :base name)
285 ;; We can probably get a worthwhile amount in purespace.
286 (setq props
287 (mapcar (lambda (elt)
288 (if (stringp elt)
289 (purecopy elt)
290 elt))
291 props))
292 (setcdr (assq :plist attrs) props)
293
294 (apply 'define-charset-internal name (mapcar 'cdr attrs))))
295
296
297 (defun load-with-code-conversion (fullname file &optional noerror nomessage)
298 "Execute a file of Lisp code named FILE whose absolute name is FULLNAME.
299 The file contents are decoded before evaluation if necessary.
300 If optional third arg NOERROR is non-nil,
301 report no error if FILE doesn't exist.
302 Print messages at start and end of loading unless
303 optional fourth arg NOMESSAGE is non-nil.
304 Return t if file exists."
305 (if (null (file-readable-p fullname))
306 (and (null noerror)
307 (signal 'file-error (list "Cannot open load file" file)))
308 ;; Read file with code conversion, and then eval.
309 (let* ((buffer
310 ;; We can't use `generate-new-buffer' because files.el
311 ;; is not yet loaded.
312 (get-buffer-create (generate-new-buffer-name " *load*")))
313 (load-in-progress t)
314 (source (save-match-data (string-match "\\.el\\'" fullname))))
315 (unless nomessage
316 (if source
317 (message "Loading %s (source)..." file)
318 (message "Loading %s..." file)))
319 (when purify-flag
320 (push (purecopy file) preloaded-file-list))
321 (unwind-protect
322 (let ((load-file-name fullname)
323 (set-auto-coding-for-load t)
324 (inhibit-file-name-operation nil))
325 (with-current-buffer buffer
326 ;; So that we don't get completely screwed if the
327 ;; file is encoded in some complicated character set,
328 ;; read it with real decoding, as a multibyte buffer.
329 (set-buffer-multibyte t)
330 ;; Don't let deactivate-mark remain set.
331 (let (deactivate-mark)
332 (insert-file-contents fullname))
333 ;; If the loaded file was inserted with no-conversion or
334 ;; raw-text coding system, make the buffer unibyte.
335 ;; Otherwise, eval-buffer might try to interpret random
336 ;; binary junk as multibyte characters.
337 (if (and enable-multibyte-characters
338 (or (eq (coding-system-type last-coding-system-used)
339 'raw-text)))
340 (set-buffer-multibyte nil))
341 ;; Make `kill-buffer' quiet.
342 (set-buffer-modified-p nil))
343 ;; Have the original buffer current while we eval.
344 (eval-buffer buffer nil
345 ;; This is compatible with what `load' does.
346 (if purify-flag file fullname)
347 nil t))
348 (let (kill-buffer-hook kill-buffer-query-functions)
349 (kill-buffer buffer)))
350 (do-after-load-evaluation fullname)
351
352 (unless (or nomessage noninteractive)
353 (if source
354 (message "Loading %s (source)...done" file)
355 (message "Loading %s...done" file)))
356 t)))
357
358 (defun charset-info (charset)
359 "Return a vector of information of CHARSET.
360 This function is provided for backward compatibility.
361
362 The elements of the vector are:
363 CHARSET-ID, BYTES, DIMENSION, CHARS, WIDTH, DIRECTION,
364 LEADING-CODE-BASE, LEADING-CODE-EXT,
365 ISO-FINAL-CHAR, ISO-GRAPHIC-PLANE,
366 REVERSE-CHARSET, SHORT-NAME, LONG-NAME, DESCRIPTION,
367 PLIST.
368 where
369 CHARSET-ID is always 0.
370 BYTES is always 0.
371 DIMENSION is the number of bytes of a code-point of the charset:
372 1, 2, 3, or 4.
373 CHARS is the number of characters in a dimension:
374 94, 96, 128, or 256.
375 WIDTH is always 0.
376 DIRECTION is always 0.
377 LEADING-CODE-BASE is always 0.
378 LEADING-CODE-EXT is always 0.
379 ISO-FINAL-CHAR (character) is the final character of the
380 corresponding ISO 2022 charset. If the charset is not assigned
381 any final character, the value is -1.
382 ISO-GRAPHIC-PLANE is always 0.
383 REVERSE-CHARSET is always -1.
384 SHORT-NAME (string) is the short name to refer to the charset.
385 LONG-NAME (string) is the long name to refer to the charset
386 DESCRIPTION (string) is the description string of the charset.
387 PLIST (property list) may contain any type of information a user
388 want to put and get by functions `put-charset-property' and
389 `get-charset-property' respectively."
390 (vector 0
391 0
392 (charset-dimension charset)
393 (charset-chars charset)
394 0
395 0
396 0
397 0
398 (charset-iso-final-char charset)
399 0
400 -1
401 (get-charset-property charset :short-name)
402 (get-charset-property charset :short-name)
403 (charset-description charset)
404 (charset-plist charset)))
405
406 ;; It is better not to use backquote in this file,
407 ;; because that makes a bootstrapping problem
408 ;; if you need to recompile all the Lisp files using interpreted code.
409
410 (defun charset-id (charset)
411 "Always return 0. This is provided for backward compatibility."
412 (declare (obsolete nil "23.1"))
413 0)
414
415 (defmacro charset-bytes (charset)
416 "Always return 0. This is provided for backward compatibility."
417 (declare (obsolete nil "23.1"))
418 0)
419
420 (defun get-charset-property (charset propname)
421 "Return the value of CHARSET's PROPNAME property.
422 This is the last value stored with
423 (put-charset-property CHARSET PROPNAME VALUE)."
424 (plist-get (charset-plist charset) propname))
425
426 (defun put-charset-property (charset propname value)
427 "Set CHARSETS's PROPNAME property to value VALUE.
428 It can be retrieved with `(get-charset-property CHARSET PROPNAME)'."
429 (set-charset-plist charset
430 (plist-put (charset-plist charset) propname
431 (if (stringp value)
432 (purecopy value)
433 value))))
434
435 (defun charset-description (charset)
436 "Return description string of CHARSET."
437 (plist-get (charset-plist charset) :docstring))
438
439 (defun charset-dimension (charset)
440 "Return dimension of CHARSET."
441 (plist-get (charset-plist charset) :dimension))
442
443 (defun charset-chars (charset &optional dimension)
444 "Return number of characters contained in DIMENSION of CHARSET.
445 DIMENSION defaults to the first dimension."
446 (unless dimension (setq dimension 1))
447 (let ((code-space (plist-get (charset-plist charset) :code-space)))
448 (1+ (- (aref code-space (1- (* 2 dimension)))
449 (aref code-space (- (* 2 dimension) 2))))))
450
451 (defun charset-iso-final-char (charset)
452 "Return ISO-2022 final character of CHARSET.
453 Return -1 if charset isn't an ISO 2022 one."
454 (or (plist-get (charset-plist charset) :iso-final-char)
455 -1))
456
457 (defmacro charset-short-name (charset)
458 "Return short name of CHARSET."
459 (plist-get (charset-plist charset) :short-name))
460
461 (defmacro charset-long-name (charset)
462 "Return long name of CHARSET."
463 (plist-get (charset-plist charset) :long-name))
464
465 (defun charset-list ()
466 "Return list of all charsets ever defined."
467 (declare (obsolete charset-list "23.1"))
468 charset-list)
469
470 \f
471 ;;; CHARACTER
472 (define-obsolete-function-alias 'char-valid-p 'characterp "23.1")
473
474 (defun generic-char-p (char)
475 "Always return nil. This is provided for backward compatibility."
476 (declare (obsolete nil "23.1"))
477 nil)
478
479 (defun make-char-internal (charset-id &optional code1 code2)
480 (let ((charset (aref emacs-mule-charset-table charset-id)))
481 (or charset
482 (error "Invalid Emacs-mule charset ID: %d" charset-id))
483 (make-char charset code1 code2)))
484 \f
485 ;; Save the ASCII case table in case we need it later. Some locales
486 ;; (such as Turkish) modify the case behavior of ASCII characters,
487 ;; which can interfere with networking code that uses ASCII strings.
488
489 (defvar ascii-case-table
490 ;; Code copied from copy-case-table to avoid requiring case-table.el
491 (let ((tbl (copy-sequence (standard-case-table)))
492 (up (char-table-extra-slot (standard-case-table) 0)))
493 (if up (set-char-table-extra-slot tbl 0 (copy-sequence up)))
494 (set-char-table-extra-slot tbl 1 nil)
495 (set-char-table-extra-slot tbl 2 nil)
496 tbl)
497 "Case table for the ASCII character set.")
498 \f
499 ;; Coding system stuff
500
501 ;; Coding system is a symbol that has been defined by the function
502 ;; `define-coding-system'.
503
504 (defconst coding-system-iso-2022-flags
505 '(long-form
506 ascii-at-eol
507 ascii-at-cntl
508 7-bit
509 locking-shift
510 single-shift
511 designation
512 revision
513 direction
514 init-at-bol
515 designate-at-bol
516 safe
517 latin-extra
518 composition
519 euc-tw-shift
520 use-roman
521 use-oldjis
522 level-4)
523 "List of symbols that control ISO-2022 encoder/decoder.
524
525 The value of the `:flags' attribute in the argument of the function
526 `define-coding-system' must be one of them.
527
528 If `long-form' is specified, use a long designation sequence on
529 encoding for the charsets `japanese-jisx0208-1978', `chinese-gb2312',
530 and `japanese-jisx0208'. The long designation sequence doesn't
531 conform to ISO 2022, but is used by such coding systems as
532 `compound-text'.
533
534 If `ascii-at-eol' is specified, designate ASCII to g0 at end of line
535 on encoding.
536
537 If `ascii-at-cntl' is specified, designate ASCII to g0 before control
538 codes and SPC on encoding.
539
540 If `7-bit' is specified, use 7-bit code only on encoding.
541
542 If `locking-shift' is specified, decode locking-shift code correctly
543 on decoding, and use locking-shift to invoke a graphic element on
544 encoding.
545
546 If `single-shift' is specified, decode single-shift code correctly on
547 decoding, and use single-shift to invoke a graphic element on encoding.
548
549 If `designation' is specified, decode designation code correctly on
550 decoding, and use designation to designate a charset to a graphic
551 element on encoding.
552
553 If `revision' is specified, produce an escape sequence to specify
554 revision number of a charset on encoding. Such an escape sequence is
555 always correctly decoded on decoding.
556
557 If `direction' is specified, decode ISO6429's code for specifying
558 direction correctly, and produce the code on encoding.
559
560 If `init-at-bol' is specified, on encoding, it is assumed that
561 invocation and designation statuses are reset at each beginning of
562 line even if `ascii-at-eol' is not specified; thus no codes for
563 resetting them are produced.
564
565 If `safe' is specified, on encoding, characters not supported by a
566 coding are replaced with `?'.
567
568 If `latin-extra' is specified, the code-detection routine assumes that a
569 code specified in `latin-extra-code-table' (which see) is valid.
570
571 If `composition' is specified, an escape sequence to specify
572 composition sequence is correctly decoded on decoding, and is produced
573 on encoding.
574
575 If `euc-tw-shift' is specified, the EUC-TW specific shifting code is
576 correctly decoded on decoding, and is produced on encoding.
577
578 If `use-roman' is specified, JIS0201-1976-Roman is designated instead
579 of ASCII.
580
581 If `use-oldjis' is specified, JIS0208-1976 is designated instead of
582 JIS0208-1983.
583
584 If `level-4' is specified, the decoder assumes the implementation
585 lavel \"4\" for 8-bit codes which means that GL is identified as the
586 single-shift area. The default implementation level for 8-bit
587 code is \"4A\" which means that GR is identified as the
588 single-shift area.")
589
590 (defun define-coding-system (name docstring &rest props)
591 "Define NAME (a symbol) as a coding system with DOCSTRING and attributes.
592 The remaining arguments must come in pairs ATTRIBUTE VALUE. ATTRIBUTE
593 may be any symbol.
594
595 The following attributes have special meanings. Those labeled as
596 \"(required)\" should not be omitted.
597
598 `:mnemonic' (required)
599
600 VALUE is a character to display on mode line for the coding system.
601
602 `:coding-type' (required)
603
604 VALUE must be one of `charset', `utf-8', `utf-16', `iso-2022',
605 `emacs-mule', `shift-jis', `ccl', `raw-text', `undecided'.
606
607 `:eol-type'
608
609 VALUE is the EOL (end-of-line) format of the coding system. It must be
610 one of `unix', `dos', `mac'. The symbol `unix' means Unix-like EOL
611 \(i.e. single LF), `dos' means DOS-like EOL \(i.e. sequence of CR LF),
612 and `mac' means Mac-like EOL \(i.e. single CR). If omitted, Emacs
613 detects the EOL format automatically when decoding.
614
615 `:charset-list'
616
617 VALUE must be a list of charsets supported by the coding system. On
618 encoding by the coding system, if a character belongs to multiple
619 charsets in the list, a charset that comes earlier in the list is
620 selected. If `:coding-type' is `iso-2022', VALUE may be `iso-2022',
621 which indicates that the coding system supports all ISO-2022 based
622 charsets. If `:coding-type' is `emacs-mule', VALUE may be
623 `emacs-mule', which indicates that the coding system supports all
624 charsets that have the `:emacs-mule-id' property.
625
626 `:ascii-compatible-p'
627
628 If VALUE is non-nil, the coding system decodes all 7-bit bytes into
629 the corresponding ASCII characters, and encodes all ASCII characters
630 back to the corresponding 7-bit bytes. VALUE defaults to nil.
631
632 `:decode-translation-table'
633
634 VALUE must be a translation table to use on decoding.
635
636 `:encode-translation-table'
637
638 VALUE must be a translation table to use on encoding.
639
640 `:post-read-conversion'
641
642 VALUE must be a function to call after some text is inserted and
643 decoded by the coding system itself and before any functions in
644 `after-insert-functions' are called. This function is passed one
645 argument; the number of characters in the text to convert, with
646 point at the start of the text. The function should leave point
647 the same, and return the new character count.
648
649 `:pre-write-conversion'
650
651 VALUE must be a function to call after all functions in
652 `write-region-annotate-functions' and `buffer-file-format' are
653 called, and before the text is encoded by the coding system
654 itself. This function should convert the whole text in the
655 current buffer. For backward compatibility, this function is
656 passed two arguments which can be ignored.
657
658 `:default-char'
659
660 VALUE must be a character. On encoding, a character not supported by
661 the coding system is replaced with VALUE.
662
663 `:for-unibyte'
664
665 VALUE non-nil means that visiting a file with the coding system
666 results in a unibyte buffer.
667
668 `:mime-charset'
669
670 VALUE must be a symbol whose name is that of a MIME charset converted
671 to lower case.
672
673 `:mime-text-unsuitable'
674
675 VALUE non-nil means the `:mime-charset' property names a charset which
676 is unsuitable for the top-level media type \"text\".
677
678 `:flags'
679
680 VALUE must be a list of symbols that control the ISO-2022 converter.
681 Each must be a member of the list `coding-system-iso-2022-flags'
682 \(which see). This attribute is meaningful only when `:coding-type'
683 is `iso-2022'.
684
685 `:designation'
686
687 VALUE must be a vector [G0-USAGE G1-USAGE G2-USAGE G3-USAGE].
688 GN-USAGE specifies the usage of graphic register GN as follows.
689
690 If it is nil, no charset can be designated to GN.
691
692 If it is a charset, the charset is initially designated to GN, and
693 never used by the other charsets.
694
695 If it is a list, the elements must be charsets, nil, 94, or 96. GN
696 can be used by all the listed charsets. If the list contains 94, any
697 iso-2022 charset whose code-space ranges are 94 long can be designated
698 to GN. If the list contains 96, any charsets whose whose ranges are
699 96 long can be designated to GN. If the first element is a charset,
700 that charset is initially designated to GN.
701
702 This attribute is meaningful only when `:coding-type' is `iso-2022'.
703
704 `:bom'
705
706 This attributes specifies whether the coding system uses a `byte order
707 mark'. VALUE must be nil, t, or cons of coding systems whose
708 `:coding-type' is `utf-16' or `utf-8'.
709
710 If the value is nil, on decoding, don't treat the first two-byte as
711 BOM, and on encoding, don't produce BOM bytes.
712
713 If the value is t, on decoding, skip the first two-byte as BOM, and on
714 encoding, produce BOM bytes according to the value of `:endian'.
715
716 If the value is cons, on decoding, check the first two-byte. If they
717 are 0xFE 0xFF, use the car part coding system of the value. If they
718 are 0xFF 0xFE, use the cdr part coding system of the value.
719 Otherwise, treat them as bytes for a normal character. On encoding,
720 produce BOM bytes according to the value of `:endian'.
721
722 This attribute is meaningful only when `:coding-type' is `utf-16' or
723 `utf-8'.
724
725 `:endian'
726
727 VALUE must be `big' or `little' specifying big-endian and
728 little-endian respectively. The default value is `big'.
729
730 This attribute is meaningful only when `:coding-type' is `utf-16'.
731
732 `:ccl-decoder'
733
734 VALUE is a symbol representing the registered CCL program used for
735 decoding. This attribute is meaningful only when `:coding-type' is
736 `ccl'.
737
738 `:ccl-encoder'
739
740 VALUE is a symbol representing the registered CCL program used for
741 encoding. This attribute is meaningful only when `:coding-type' is
742 `ccl'.
743
744 `:inhibit-null-byte-detection'
745
746 VALUE non-nil means Emacs ignore null bytes on code detection.
747 See the variable `inhibit-null-byte-detection'. This attribute
748 is meaningful only when `:coding-type' is `undecided'.
749
750 `:inhibit-iso-escape-detection'
751
752 VALUE non-nil means Emacs ignores ISO-2022 escape sequences on
753 code detection. See the variable `inhibit-iso-escape-detection'.
754 This attribute is meaningful only when `:coding-type' is
755 `undecided'.
756
757 `:prefer-utf-8'
758
759 VALUE non-nil means Emacs prefers UTF-8 on code detection for
760 non-ASCII files. This attribute is meaningful only when
761 `:coding-type' is `undecided'."
762 (let* ((common-attrs (mapcar 'list
763 '(:mnemonic
764 :coding-type
765 :charset-list
766 :ascii-compatible-p
767 :decode-translation-table
768 :encode-translation-table
769 :post-read-conversion
770 :pre-write-conversion
771 :default-char
772 :for-unibyte
773 :plist
774 :eol-type)))
775 (coding-type (plist-get props :coding-type))
776 (spec-attrs (mapcar 'list
777 (cond ((eq coding-type 'iso-2022)
778 '(:initial
779 :reg-usage
780 :request
781 :flags))
782 ((eq coding-type 'utf-8)
783 '(:bom))
784 ((eq coding-type 'utf-16)
785 '(:bom
786 :endian))
787 ((eq coding-type 'ccl)
788 '(:ccl-decoder
789 :ccl-encoder
790 :valids))
791 ((eq coding-type 'undecided)
792 '(:inhibit-null-byte-detection
793 :inhibit-iso-escape-detection
794 :prefer-utf-8))))))
795
796 (dolist (slot common-attrs)
797 (setcdr slot (plist-get props (car slot))))
798
799 (dolist (slot spec-attrs)
800 (setcdr slot (plist-get props (car slot))))
801
802 (if (eq coding-type 'iso-2022)
803 (let ((designation (plist-get props :designation))
804 (flags (plist-get props :flags))
805 (initial (make-vector 4 nil))
806 (reg-usage (cons 4 4))
807 request elt)
808 (dotimes (i 4)
809 (setq elt (aref designation i))
810 (cond ((charsetp elt)
811 (aset initial i elt)
812 (setq request (cons (cons elt i) request)))
813 ((consp elt)
814 (aset initial i (car elt))
815 (if (charsetp (car elt))
816 (setq request (cons (cons (car elt) i) request)))
817 (dolist (e (cdr elt))
818 (cond ((charsetp e)
819 (setq request (cons (cons e i) request)))
820 ((eq e 94)
821 (setcar reg-usage i))
822 ((eq e 96)
823 (setcdr reg-usage i))
824 ((eq e t)
825 (setcar reg-usage i)
826 (setcdr reg-usage i)))))))
827 (setcdr (assq :initial spec-attrs) initial)
828 (setcdr (assq :reg-usage spec-attrs) reg-usage)
829 (setcdr (assq :request spec-attrs) request)
830
831 ;; Change :flags value from a list to a bit-mask.
832 (let ((bits 0)
833 (i 0))
834 (dolist (elt coding-system-iso-2022-flags)
835 (if (memq elt flags)
836 (setq bits (logior bits (lsh 1 i))))
837 (setq i (1+ i)))
838 (setcdr (assq :flags spec-attrs) bits))))
839
840 ;; Add :name and :docstring properties to PROPS.
841 (setq props
842 (cons :name (cons name (cons :docstring (cons (purecopy docstring)
843 props)))))
844 (setcdr (assq :plist common-attrs) props)
845 (apply 'define-coding-system-internal
846 name (mapcar 'cdr (append common-attrs spec-attrs)))))
847
848 (defun coding-system-doc-string (coding-system)
849 "Return the documentation string for CODING-SYSTEM."
850 (plist-get (coding-system-plist coding-system) :docstring))
851
852 (defun coding-system-mnemonic (coding-system)
853 "Return the mnemonic character of CODING-SYSTEM.
854 The mnemonic character of a coding system is used in mode line to
855 indicate the coding system. If CODING-SYSTEM is nil, return ?=."
856 (plist-get (coding-system-plist coding-system) :mnemonic))
857
858 (defun coding-system-type (coding-system)
859 "Return the coding type of CODING-SYSTEM.
860 A coding type is a symbol indicating the encoding method of CODING-SYSTEM.
861 See the function `define-coding-system' for more detail."
862 (plist-get (coding-system-plist coding-system) :coding-type))
863
864 (defun coding-system-charset-list (coding-system)
865 "Return list of charsets supported by CODING-SYSTEM.
866 If CODING-SYSTEM supports all ISO-2022 charsets, return `iso-2022'.
867 If CODING-SYSTEM supports all emacs-mule charsets, return `emacs-mule'."
868 (plist-get (coding-system-plist coding-system) :charset-list))
869
870 (defun coding-system-category (coding-system)
871 "Return a category symbol of CODING-SYSTEM."
872 (plist-get (coding-system-plist coding-system) :category))
873
874 (defun coding-system-get (coding-system prop)
875 "Extract a value from CODING-SYSTEM's property list for property PROP.
876 For compatibility with Emacs 20/21, this accepts old-style symbols
877 like `mime-charset' as well as the current style like `:mime-charset'."
878 (or (plist-get (coding-system-plist coding-system) prop)
879 (if (not (keywordp prop))
880 ;; For backward compatibility.
881 (if (eq prop 'ascii-incompatible)
882 (not (plist-get (coding-system-plist coding-system)
883 :ascii-compatible-p))
884 (plist-get (coding-system-plist coding-system)
885 (intern (concat ":" (symbol-name prop))))))))
886
887 (defun coding-system-eol-type-mnemonic (coding-system)
888 "Return the string indicating end-of-line format of CODING-SYSTEM."
889 (let* ((eol-type (coding-system-eol-type coding-system))
890 (val (cond ((eq eol-type 0) eol-mnemonic-unix)
891 ((eq eol-type 1) eol-mnemonic-dos)
892 ((eq eol-type 2) eol-mnemonic-mac)
893 (t eol-mnemonic-undecided))))
894 (if (stringp val)
895 val
896 (char-to-string val))))
897
898 (defun coding-system-lessp (x y)
899 (cond ((eq x 'no-conversion) t)
900 ((eq y 'no-conversion) nil)
901 ((eq x 'emacs-mule) t)
902 ((eq y 'emacs-mule) nil)
903 ((eq x 'undecided) t)
904 ((eq y 'undecided) nil)
905 (t (let ((c1 (coding-system-mnemonic x))
906 (c2 (coding-system-mnemonic y)))
907 (or (< (downcase c1) (downcase c2))
908 (and (not (> (downcase c1) (downcase c2)))
909 (< c1 c2)))))))
910
911 (defun coding-system-equal (coding-system-1 coding-system-2)
912 "Return t if and only if CODING-SYSTEM-1 and CODING-SYSTEM-2 are identical.
913 Two coding systems are identical if both symbols are equal
914 or one is an alias of the other."
915 (or (eq coding-system-1 coding-system-2)
916 (and (equal (coding-system-plist coding-system-1)
917 (coding-system-plist coding-system-2))
918 (let ((eol-type-1 (coding-system-eol-type coding-system-1))
919 (eol-type-2 (coding-system-eol-type coding-system-2)))
920 (or (eq eol-type-1 eol-type-2)
921 (and (vectorp eol-type-1) (vectorp eol-type-2)))))))
922
923 (defun add-to-coding-system-list (coding-system)
924 "Add CODING-SYSTEM to variable `coding-system-list' while keeping it sorted."
925 (if (or (null coding-system-list)
926 (coding-system-lessp coding-system (car coding-system-list)))
927 (setq coding-system-list (cons coding-system coding-system-list))
928 (let ((len (length coding-system-list))
929 mid (tem coding-system-list))
930 (while (> len 1)
931 (setq mid (nthcdr (/ len 2) tem))
932 (if (coding-system-lessp (car mid) coding-system)
933 (setq tem mid
934 len (- len (/ len 2)))
935 (setq len (/ len 2))))
936 (setcdr tem (cons coding-system (cdr tem))))))
937
938 (defun coding-system-list (&optional base-only)
939 "Return a list of all existing non-subsidiary coding systems.
940 If optional arg BASE-ONLY is non-nil, only base coding systems are
941 listed. The value doesn't include subsidiary coding systems which are
942 made from bases and aliases automatically for various end-of-line
943 formats (e.g. iso-latin-1-unix, koi8-r-dos)."
944 (let ((codings nil))
945 (dolist (coding coding-system-list)
946 (if (eq (coding-system-base coding) coding)
947 (if base-only
948 (setq codings (cons coding codings))
949 (dolist (alias (coding-system-aliases coding))
950 (setq codings (cons alias codings))))))
951 codings))
952
953 (defconst char-coding-system-table nil
954 "It exists just for backward compatibility, and the value is always nil.")
955 (make-obsolete-variable 'char-coding-system-table nil "23.1")
956
957 (defun transform-make-coding-system-args (name type &optional doc-string props)
958 "For internal use only.
959 Transform XEmacs style args for `make-coding-system' to Emacs style.
960 Value is a list of transformed arguments."
961 (let ((mnemonic (string-to-char (or (plist-get props 'mnemonic) "?")))
962 (eol-type (plist-get props 'eol-type))
963 properties tmp)
964 (cond
965 ((eq eol-type 'lf) (setq eol-type 'unix))
966 ((eq eol-type 'crlf) (setq eol-type 'dos))
967 ((eq eol-type 'cr) (setq eol-type 'mac)))
968 (if (setq tmp (plist-get props 'post-read-conversion))
969 (setq properties (plist-put properties 'post-read-conversion tmp)))
970 (if (setq tmp (plist-get props 'pre-write-conversion))
971 (setq properties (plist-put properties 'pre-write-conversion tmp)))
972 (cond
973 ((eq type 'shift-jis)
974 `(,name 1 ,mnemonic ,doc-string () ,properties ,eol-type))
975 ((eq type 'iso2022) ; This is not perfect.
976 (if (plist-get props 'escape-quoted)
977 (error "escape-quoted is not supported: %S"
978 `(,name ,type ,doc-string ,props)))
979 (let ((g0 (plist-get props 'charset-g0))
980 (g1 (plist-get props 'charset-g1))
981 (g2 (plist-get props 'charset-g2))
982 (g3 (plist-get props 'charset-g3))
983 (use-roman
984 (and
985 (eq (cadr (assoc 'latin-jisx0201
986 (plist-get props 'input-charset-conversion)))
987 'ascii)
988 (eq (cadr (assoc 'ascii
989 (plist-get props 'output-charset-conversion)))
990 'latin-jisx0201)))
991 (use-oldjis
992 (and
993 (eq (cadr (assoc 'japanese-jisx0208-1978
994 (plist-get props 'input-charset-conversion)))
995 'japanese-jisx0208)
996 (eq (cadr (assoc 'japanese-jisx0208
997 (plist-get props 'output-charset-conversion)))
998 'japanese-jisx0208-1978))))
999 (if (charsetp g0)
1000 (if (plist-get props 'force-g0-on-output)
1001 (setq g0 `(nil ,g0))
1002 (setq g0 `(,g0 t))))
1003 (if (charsetp g1)
1004 (if (plist-get props 'force-g1-on-output)
1005 (setq g1 `(nil ,g1))
1006 (setq g1 `(,g1 t))))
1007 (if (charsetp g2)
1008 (if (plist-get props 'force-g2-on-output)
1009 (setq g2 `(nil ,g2))
1010 (setq g2 `(,g2 t))))
1011 (if (charsetp g3)
1012 (if (plist-get props 'force-g3-on-output)
1013 (setq g3 `(nil ,g3))
1014 (setq g3 `(,g3 t))))
1015 `(,name 2 ,mnemonic ,doc-string
1016 (,g0 ,g1 ,g2 ,g3
1017 ,(plist-get props 'short)
1018 ,(not (plist-get props 'no-ascii-eol))
1019 ,(not (plist-get props 'no-ascii-cntl))
1020 ,(plist-get props 'seven)
1021 t
1022 ,(not (plist-get props 'lock-shift))
1023 ,use-roman
1024 ,use-oldjis
1025 ,(plist-get props 'no-iso6429)
1026 nil nil nil nil)
1027 ,properties ,eol-type)))
1028 ((eq type 'big5)
1029 `(,name 3 ,mnemonic ,doc-string () ,properties ,eol-type))
1030 ((eq type 'ccl)
1031 `(,name 4 ,mnemonic ,doc-string
1032 (,(plist-get props 'decode) . ,(plist-get props 'encode))
1033 ,properties ,eol-type))
1034 (t
1035 (error "unsupported XEmacs style make-coding-style arguments: %S"
1036 `(,name ,type ,doc-string ,props))))))
1037
1038 (defun make-coding-system (coding-system type mnemonic doc-string
1039 &optional
1040 flags
1041 properties
1042 eol-type)
1043 "Define a new coding system CODING-SYSTEM (symbol).
1044 This function is provided for backward compatibility."
1045 (declare (obsolete define-coding-system "23.1"))
1046 ;; For compatibility with XEmacs, we check the type of TYPE. If it
1047 ;; is a symbol, perhaps, this function is called with XEmacs-style
1048 ;; arguments. Here, try to transform that kind of arguments to
1049 ;; Emacs style.
1050 (if (symbolp type)
1051 (let ((args (transform-make-coding-system-args coding-system type
1052 mnemonic doc-string)))
1053 (setq coding-system (car args)
1054 type (nth 1 args)
1055 mnemonic (nth 2 args)
1056 doc-string (nth 3 args)
1057 flags (nth 4 args)
1058 properties (nth 5 args)
1059 eol-type (nth 6 args))))
1060
1061 (setq type
1062 (cond ((eq type 0) 'emacs-mule)
1063 ((eq type 1) 'shift-jis)
1064 ((eq type 2) 'iso2022)
1065 ((eq type 3) 'big5)
1066 ((eq type 4) 'ccl)
1067 ((eq type 5) 'raw-text)
1068 (t
1069 (error "Invalid coding system type: %s" type))))
1070
1071 (setq properties
1072 (let ((plist nil) key)
1073 (dolist (elt properties)
1074 (setq key (car elt))
1075 (cond ((eq key 'post-read-conversion)
1076 (setq key :post-read-conversion))
1077 ((eq key 'pre-write-conversion)
1078 (setq key :pre-write-conversion))
1079 ((eq key 'translation-table-for-decode)
1080 (setq key :decode-translation-table))
1081 ((eq key 'translation-table-for-encode)
1082 (setq key :encode-translation-table))
1083 ((eq key 'safe-charsets)
1084 (setq key :charset-list))
1085 ((eq key 'mime-charset)
1086 (setq key :mime-charset))
1087 ((eq key 'valid-codes)
1088 (setq key :valids)))
1089 (setq plist (plist-put plist key (cdr elt))))
1090 plist))
1091 (setq properties (plist-put properties :mnemonic mnemonic))
1092 (plist-put properties :coding-type type)
1093 (cond ((eq eol-type 0) (setq eol-type 'unix))
1094 ((eq eol-type 1) (setq eol-type 'dos))
1095 ((eq eol-type 2) (setq eol-type 'mac))
1096 ((vectorp eol-type) (setq eol-type nil)))
1097 (plist-put properties :eol-type eol-type)
1098
1099 (cond
1100 ((eq type 'iso2022)
1101 (plist-put properties :flags
1102 (list (and (or (consp (nth 0 flags))
1103 (consp (nth 1 flags))
1104 (consp (nth 2 flags))
1105 (consp (nth 3 flags))) 'designation)
1106 (or (nth 4 flags) 'long-form)
1107 (and (nth 5 flags) 'ascii-at-eol)
1108 (and (nth 6 flags) 'ascii-at-cntl)
1109 (and (nth 7 flags) '7-bit)
1110 (and (nth 8 flags) 'locking-shift)
1111 (and (nth 9 flags) 'single-shift)
1112 (and (nth 10 flags) 'use-roman)
1113 (and (nth 11 flags) 'use-oldjis)
1114 (or (nth 12 flags) 'direction)
1115 (and (nth 13 flags) 'init-at-bol)
1116 (and (nth 14 flags) 'designate-at-bol)
1117 (and (nth 15 flags) 'safe)
1118 (and (nth 16 flags) 'latin-extra)))
1119 (plist-put properties :designation
1120 (let ((vec (make-vector 4 nil)))
1121 (dotimes (i 4)
1122 (let ((spec (nth i flags)))
1123 (if (eq spec t)
1124 (aset vec i '(94 96))
1125 (if (consp spec)
1126 (progn
1127 (if (memq t spec)
1128 (setq spec (append (delq t spec) '(94 96))))
1129 (aset vec i spec))))))
1130 vec)))
1131
1132 ((eq type 'ccl)
1133 (plist-put properties :ccl-decoder (car flags))
1134 (plist-put properties :ccl-encoder (cdr flags))))
1135
1136 (apply 'define-coding-system coding-system doc-string properties))
1137
1138 (defun merge-coding-systems (first second)
1139 "Fill in any unspecified aspects of coding system FIRST from SECOND.
1140 Return the resulting coding system."
1141 (let ((base (coding-system-base second))
1142 (eol (coding-system-eol-type second)))
1143 ;; If FIRST doesn't specify text conversion, merge with that of SECOND.
1144 (if (eq (coding-system-base first) 'undecided)
1145 (setq first (coding-system-change-text-conversion first base)))
1146 ;; If FIRST doesn't specify eol conversion, merge with that of SECOND.
1147 (if (and (vectorp (coding-system-eol-type first))
1148 (numberp eol) (>= eol 0) (<= eol 2))
1149 (setq first (coding-system-change-eol-conversion
1150 first eol)))
1151 first))
1152
1153 (defun autoload-coding-system (symbol form)
1154 "Define SYMBOL as a coding-system that is defined on demand.
1155
1156 FORM is a form to evaluate to define the coding-system."
1157 (put symbol 'coding-system-define-form form)
1158 (setq coding-system-alist (cons (list (symbol-name symbol))
1159 coding-system-alist))
1160 (dolist (elt '("-unix" "-dos" "-mac"))
1161 (let ((name (concat (symbol-name symbol) elt)))
1162 (put (intern name) 'coding-system-define-form form)
1163 (setq coding-system-alist (cons (list name) coding-system-alist)))))
1164
1165 ;; This variable is set in these two cases:
1166 ;; (1) A file is read by a coding system specified explicitly.
1167 ;; `after-insert-file-set-coding' sets the car of this value to
1168 ;; `coding-system-for-read', and sets the cdr to nil.
1169 ;; (2) `set-buffer-file-coding-system' is called.
1170 ;; The cdr of this value is set to the specified coding system.
1171 ;; This variable is used for decoding in `revert-buffer' and encoding
1172 ;; in `select-safe-coding-system'.
1173 ;;
1174 ;; When saving a buffer, if `buffer-file-coding-system-explicit' is
1175 ;; already non-nil, `basic-save-buffer-1' sets its CAR to the value of
1176 ;; `last-coding-system-used'. (It used to set it unconditionally, but
1177 ;; that seems unnecessary; see Bug#4533.)
1178
1179 (defvar buffer-file-coding-system-explicit nil
1180 "The file coding system explicitly specified for the current buffer.
1181 The value is a cons of coding systems for reading (decoding) and
1182 writing (encoding).
1183 Internal use only.")
1184 (make-variable-buffer-local 'buffer-file-coding-system-explicit)
1185 (put 'buffer-file-coding-system-explicit 'permanent-local t)
1186
1187 (defun read-buffer-file-coding-system ()
1188 (let* ((bcss (find-coding-systems-region (point-min) (point-max)))
1189 (css-table
1190 (unless (equal bcss '(undecided))
1191 (append '("dos" "unix" "mac")
1192 (delq nil (mapcar (lambda (cs)
1193 (if (memq (coding-system-base cs) bcss)
1194 (symbol-name cs)))
1195 coding-system-list)))))
1196 (combined-table
1197 (if css-table
1198 (completion-table-in-turn css-table coding-system-alist)
1199 coding-system-alist))
1200 (auto-cs
1201 (unless find-file-literally
1202 (save-excursion
1203 (save-restriction
1204 (widen)
1205 (goto-char (point-min))
1206 (funcall set-auto-coding-function
1207 (or buffer-file-name "") (buffer-size))))))
1208 (preferred
1209 (let ((bfcs (default-value 'buffer-file-coding-system)))
1210 (cons (and (or (equal bcss '(undecided))
1211 (memq (coding-system-base bfcs) bcss))
1212 bfcs)
1213 (mapcar (lambda (cs)
1214 (and (coding-system-p cs)
1215 (coding-system-get cs :mime-charset)
1216 (or (equal bcss '(undecided))
1217 (memq (coding-system-base cs) bcss))
1218 cs))
1219 (coding-system-priority-list)))))
1220 (default
1221 (let ((current (coding-system-base buffer-file-coding-system)))
1222 ;; Generally use as a default the first preferred coding-system
1223 ;; different from the current coding-system, except for
1224 ;; the case of auto-cs since choosing anything else is asking
1225 ;; for trouble (would lead to using a different coding
1226 ;; system than specified in the coding tag).
1227 (or auto-cs
1228 (car (delq nil
1229 (mapcar (lambda (cs)
1230 (if (eq current (coding-system-base cs))
1231 nil
1232 cs))
1233 preferred))))))
1234 (completion-ignore-case t)
1235 (completion-pcm--delim-wild-regex ; Let "u8" complete to "utf-8".
1236 (concat completion-pcm--delim-wild-regex
1237 "\\|\\([[:alpha:]]\\)[[:digit:]]"))
1238 (cs (completing-read
1239 (format "Coding system for saving file (default %s): " default)
1240 combined-table
1241 nil t nil 'coding-system-history
1242 (if default (symbol-name default)))))
1243 (unless (zerop (length cs)) (intern cs))))
1244
1245 (defun set-buffer-file-coding-system (coding-system &optional force nomodify)
1246 "Set the file coding-system of the current buffer to CODING-SYSTEM.
1247 This means that when you save the buffer, it will be converted
1248 according to CODING-SYSTEM. For a list of possible values of
1249 CODING-SYSTEM, use \\[list-coding-systems].
1250
1251 If CODING-SYSTEM leaves the text conversion unspecified, or if it leaves
1252 the end-of-line conversion unspecified, FORCE controls what to do.
1253 If FORCE is nil, get the unspecified aspect (or aspects) from the buffer's
1254 previous `buffer-file-coding-system' value (if it is specified there).
1255 Otherwise, leave it unspecified.
1256
1257 This marks the buffer modified so that the succeeding \\[save-buffer]
1258 surely saves the buffer with CODING-SYSTEM. From a program, if you
1259 don't want to mark the buffer modified, specify t for NOMODIFY.
1260 If you know exactly what coding system you want to use,
1261 just set the variable `buffer-file-coding-system' directly."
1262 (interactive
1263 (list (read-buffer-file-coding-system)
1264 current-prefix-arg))
1265 (check-coding-system coding-system)
1266 (if (and coding-system buffer-file-coding-system (null force))
1267 (setq coding-system
1268 (merge-coding-systems coding-system buffer-file-coding-system)))
1269 (when (and (called-interactively-p 'interactive)
1270 (not (memq 'emacs (coding-system-get coding-system
1271 :charset-list))))
1272 ;; Check whether save would succeed, and jump to the offending char(s)
1273 ;; if not.
1274 (let ((css (find-coding-systems-region (point-min) (point-max))))
1275 (unless (or (eq (car css) 'undecided)
1276 (memq (coding-system-base coding-system) css))
1277 (setq coding-system (select-safe-coding-system-interactively
1278 (point-min) (point-max) css
1279 (list coding-system))))))
1280 (setq buffer-file-coding-system coding-system)
1281 (if buffer-file-coding-system-explicit
1282 (setcdr buffer-file-coding-system-explicit coding-system)
1283 (setq buffer-file-coding-system-explicit (cons nil coding-system)))
1284 (unless nomodify
1285 (set-buffer-modified-p t))
1286 (force-mode-line-update))
1287
1288 (defun revert-buffer-with-coding-system (coding-system &optional force)
1289 "Visit the current buffer's file again using coding system CODING-SYSTEM.
1290 For a list of possible values of CODING-SYSTEM, use \\[list-coding-systems].
1291
1292 If CODING-SYSTEM leaves the text conversion unspecified, or if it leaves
1293 the end-of-line conversion unspecified, FORCE controls what to do.
1294 If FORCE is nil, get the unspecified aspect (or aspects) from the buffer's
1295 previous `buffer-file-coding-system' value (if it is specified there).
1296 Otherwise, determine it from the file contents as usual for visiting a file."
1297 (interactive "zCoding system for visited file (default nil): \nP")
1298 (check-coding-system coding-system)
1299 (if (and coding-system buffer-file-coding-system (null force))
1300 (setq coding-system
1301 (merge-coding-systems coding-system buffer-file-coding-system)))
1302 (let ((coding-system-for-read coding-system))
1303 (revert-buffer)))
1304
1305 (defun set-file-name-coding-system (coding-system)
1306 "Set coding system for decoding and encoding file names to CODING-SYSTEM.
1307 It actually just set the variable `file-name-coding-system' (which see)
1308 to CODING-SYSTEM."
1309 (interactive "zCoding system for file names (default nil): ")
1310 (check-coding-system coding-system)
1311 (if (and coding-system
1312 (not (coding-system-get coding-system :ascii-compatible-p))
1313 (not (coding-system-get coding-system :suitable-for-file-name)))
1314 (error "%s is not suitable for file names" coding-system))
1315 (setq file-name-coding-system coding-system))
1316
1317 (defvar default-terminal-coding-system nil
1318 "Default value for the terminal coding system.
1319 This is normally set according to the selected language environment.
1320 See also the command `set-terminal-coding-system'.")
1321
1322 (defun set-terminal-coding-system (coding-system &optional terminal)
1323 "Set coding system of terminal output to CODING-SYSTEM.
1324 All text output to TERMINAL will be encoded
1325 with the specified coding system.
1326
1327 For a list of possible values of CODING-SYSTEM, use \\[list-coding-systems].
1328 The default is determined by the selected language environment
1329 or by the previous use of this command.
1330
1331 TERMINAL may be a terminal object, a frame, or nil for the
1332 selected frame's terminal. The setting has no effect on
1333 graphical terminals."
1334 (interactive
1335 (list (let ((default (if (and (not (terminal-coding-system))
1336 default-terminal-coding-system)
1337 default-terminal-coding-system)))
1338 (read-coding-system
1339 (format "Coding system for terminal display (default %s): "
1340 default)
1341 default))))
1342 (if (and (not coding-system)
1343 (not (terminal-coding-system)))
1344 (setq coding-system default-terminal-coding-system))
1345 (if coding-system
1346 (setq default-terminal-coding-system coding-system))
1347 (set-terminal-coding-system-internal coding-system terminal)
1348 (redraw-frame (selected-frame)))
1349
1350 (defvar default-keyboard-coding-system nil
1351 "Default value of the keyboard coding system.
1352 This is normally set according to the selected language environment.
1353 See also the command `set-keyboard-coding-system'.")
1354
1355 (defun set-keyboard-coding-system (coding-system &optional terminal)
1356 "Set coding system for keyboard input on TERMINAL to CODING-SYSTEM.
1357
1358 For a list of possible values of CODING-SYSTEM, use \\[list-coding-systems].
1359 The default is determined by the selected language environment
1360 or by the previous use of this command.
1361
1362 If CODING-SYSTEM is nil or the coding-type of CODING-SYSTEM is
1363 `raw-text', the decoding of keyboard input is disabled.
1364
1365 TERMINAL may be a terminal object, a frame, or nil for the
1366 selected frame's terminal. The setting has no effect on
1367 graphical terminals."
1368 (interactive
1369 (list (let* ((coding (keyboard-coding-system nil))
1370 (default (if (eq (coding-system-type coding) 'raw-text)
1371 default-keyboard-coding-system)))
1372 (read-coding-system
1373 (format "Coding system for keyboard input (default %s): "
1374 default)
1375 default))))
1376 (let ((coding-type (coding-system-type coding-system))
1377 (saved-meta-mode
1378 (terminal-parameter terminal 'keyboard-coding-saved-meta-mode)))
1379 (if (not (eq coding-type 'raw-text))
1380 (let (accept-8-bit)
1381 (if (not (or (coding-system-get coding-system :suitable-for-keyboard)
1382 (coding-system-get coding-system :ascii-compatible-p)))
1383 (error "Unsuitable coding system for keyboard: %s" coding-system))
1384 (cond ((memq coding-type '(charset utf-8 shift-jis big5 ccl))
1385 (setq accept-8-bit t))
1386 ((eq coding-type 'iso-2022)
1387 (let ((flags (coding-system-get coding-system :flags)))
1388 (or (memq '7-bit flags)
1389 (setq accept-8-bit t))))
1390 (t
1391 (error "Unsupported coding system for keyboard: %s"
1392 coding-system)))
1393 (if accept-8-bit
1394 (progn
1395 (or saved-meta-mode
1396 (set-terminal-parameter terminal
1397 'keyboard-coding-saved-meta-mode
1398 (cons (nth 2 (current-input-mode))
1399 nil)))
1400 (set-input-meta-mode 8 terminal))
1401 (when saved-meta-mode
1402 (set-input-meta-mode (car saved-meta-mode) terminal)
1403 (set-terminal-parameter terminal
1404 'keyboard-coding-saved-meta-mode
1405 nil)))
1406 ;; Avoid end-of-line conversion.
1407 (setq coding-system
1408 (coding-system-change-eol-conversion coding-system 'unix)))
1409
1410 (when saved-meta-mode
1411 (set-input-meta-mode (car saved-meta-mode) terminal)
1412 (set-terminal-parameter terminal
1413 'keyboard-coding-saved-meta-mode
1414 nil))))
1415 (set-keyboard-coding-system-internal coding-system terminal)
1416 (setq keyboard-coding-system coding-system))
1417
1418 (defcustom keyboard-coding-system nil
1419 "Specify coding system for keyboard input.
1420 If you set this on a terminal which can't distinguish Meta keys from
1421 8-bit characters, you will have to use ESC to type Meta characters.
1422 See Info node `Terminal Coding' and Info node `Unibyte Mode'.
1423
1424 On non-windowing terminals, this is set from the locale by default.
1425
1426 Setting this variable directly does not take effect;
1427 use either \\[customize] or \\[set-keyboard-coding-system]."
1428 :type '(coding-system :tag "Coding system")
1429 :link '(info-link "(emacs)Terminal Coding")
1430 :link '(info-link "(emacs)Unibyte Mode")
1431 :set (lambda (symbol value)
1432 ;; Don't load encoded-kb unnecessarily.
1433 (if (or value (boundp 'encoded-kbd-setup-display))
1434 (set-keyboard-coding-system value)
1435 (set-default 'keyboard-coding-system nil))) ; must initialize
1436 :version "22.1"
1437 :group 'keyboard
1438 :group 'mule)
1439
1440 (defun set-buffer-process-coding-system (decoding encoding)
1441 "Set coding systems for the process associated with the current buffer.
1442 DECODING is the coding system to be used to decode input from the process,
1443 ENCODING is the coding system to be used to encode output to the process.
1444
1445 For a list of possible coding systems, use \\[list-coding-systems]."
1446 (interactive
1447 "zCoding-system for output from the process: \nzCoding-system for input to the process: ")
1448 (let ((proc (get-buffer-process (current-buffer))))
1449 (if (null proc)
1450 (error "No process")
1451 (check-coding-system decoding)
1452 (check-coding-system encoding)
1453 (set-process-coding-system proc decoding encoding)))
1454 (force-mode-line-update))
1455
1456 (defalias 'set-clipboard-coding-system 'set-selection-coding-system)
1457
1458 (defun set-selection-coding-system (coding-system)
1459 "Make CODING-SYSTEM used for communicating with other X clients.
1460 When sending or receiving text via cut_buffer, selection, and clipboard,
1461 the text is encoded or decoded by CODING-SYSTEM."
1462 (interactive "zCoding system for X selection: ")
1463 (check-coding-system coding-system)
1464 (setq selection-coding-system coding-system))
1465
1466 ;; Coding system lastly specified by the command
1467 ;; set-next-selection-coding-system.
1468 (defvar last-next-selection-coding-system nil)
1469
1470 (defun set-next-selection-coding-system (coding-system)
1471 "Use CODING-SYSTEM for next communication with other window system clients.
1472 This setting is effective for the next communication only."
1473 (interactive
1474 (list (read-coding-system
1475 (if last-next-selection-coding-system
1476 (format "Coding system for the next selection (default %S): "
1477 last-next-selection-coding-system)
1478 "Coding system for the next selection: ")
1479 last-next-selection-coding-system)))
1480 (if coding-system
1481 (setq last-next-selection-coding-system coding-system)
1482 (setq coding-system last-next-selection-coding-system))
1483 (check-coding-system coding-system)
1484
1485 (setq next-selection-coding-system coding-system))
1486
1487 (defun set-coding-priority (arg)
1488 "Set priority of coding categories according to ARG.
1489 ARG is a list of coding categories ordered by priority.
1490
1491 This function is provided for backward compatibility."
1492 (declare (obsolete set-coding-system-priority "23.1"))
1493 (apply 'set-coding-system-priority
1494 (mapcar #'(lambda (x) (symbol-value x)) arg)))
1495
1496 ;;; X selections
1497
1498 (defvar ctext-non-standard-encodings-alist
1499 (mapcar 'purecopy
1500 '(("big5-0" big5 2 big5)
1501 ("ISO8859-14" iso-8859-14 1 latin-iso8859-14)
1502 ("ISO8859-15" iso-8859-15 1 latin-iso8859-15)
1503 ("gbk-0" gbk 2 chinese-gbk)
1504 ("koi8-r" koi8-r 1 koi8-r)
1505 ("microsoft-cp1251" windows-1251 1 windows-1251)))
1506 "Alist of non-standard encoding names vs the corresponding usages in CTEXT.
1507
1508 It controls how extended segments of a compound text are handled
1509 by the coding system `compound-text-with-extensions'.
1510
1511 Each element has the form (ENCODING-NAME CODING-SYSTEM N-OCTET CHARSET).
1512
1513 ENCODING-NAME is an encoding name of an \"extended segment\".
1514
1515 CODING-SYSTEM is the coding-system to encode (or decode) the
1516 characters into (or from) the extended segment.
1517
1518 N-OCTET is the number of octets (bytes) that encodes a character
1519 in the segment. It can be 0 (meaning the number of octets per
1520 character is variable), 1, 2, 3, or 4.
1521
1522 CHARSET is a character set containing characters that are encoded
1523 in the segment. It can be a list of character sets.
1524
1525 On decoding CTEXT, all encoding names listed here are recognized.
1526
1527 On encoding CTEXT, encoding names in the variable
1528 `ctext-non-standard-encodings' (which see) and in the information
1529 listed for the current language environment under the key
1530 `ctext-non-standard-encodings' are used.")
1531
1532 (defvar ctext-non-standard-encodings nil
1533 "List of non-standard encoding names used in extended segments of CTEXT.
1534 Each element must be one of the names listed in the variable
1535 `ctext-non-standard-encodings-alist' (which see).")
1536
1537 (defvar ctext-non-standard-encodings-regexp
1538 (purecopy
1539 (string-to-multibyte
1540 (concat
1541 ;; For non-standard encodings.
1542 "\\(\e%/[0-4][\200-\377][\200-\377]\\([^\002]+\\)\002\\)"
1543 "\\|"
1544 ;; For UTF-8 encoding.
1545 "\\(\e%G[^\e]*\e%@\\)"))))
1546
1547 ;; Functions to support "Non-Standard Character Set Encodings" defined
1548 ;; by the COMPOUND-TEXT spec. They also support "The UTF-8 encoding"
1549 ;; described in the section 7 of the documentation of COMPOUND-TEXT
1550 ;; distributed with XFree86.
1551
1552 (defun ctext-post-read-conversion (len)
1553 "Decode LEN characters encoded as Compound Text with Extended Segments."
1554 ;; We don't need the following because it is expected that this
1555 ;; function is mainly used for decoding X selection which is not
1556 ;; that big data.
1557 ;;(buffer-disable-undo) ; minimize consing due to insertions and deletions
1558 (save-match-data
1559 (save-restriction
1560 (narrow-to-region (point) (+ (point) len))
1561 (let ((case-fold-search nil)
1562 last-coding-system-used
1563 pos bytes)
1564 (decode-coding-region (point-min) (point-max) 'ctext)
1565 (while (re-search-forward ctext-non-standard-encodings-regexp
1566 nil 'move)
1567 (setq pos (match-beginning 0))
1568 (if (match-beginning 1)
1569 ;; ESC % / [0-4] M L --ENCODING-NAME-- \002 --BYTES--
1570 (let* ((M (multibyte-char-to-unibyte (char-after (+ pos 4))))
1571 (L (multibyte-char-to-unibyte (char-after (+ pos 5))))
1572 (encoding (match-string 2))
1573 (encoding-info (assoc-string
1574 encoding
1575 ctext-non-standard-encodings-alist t))
1576 (coding (if encoding-info
1577 (nth 1 encoding-info)
1578 (setq encoding (intern (downcase encoding)))
1579 (and (coding-system-p encoding)
1580 encoding))))
1581 (setq bytes (- (+ (* (- M 128) 128) (- L 128))
1582 (- (point) (+ pos 6))))
1583 (when coding
1584 (delete-region pos (point))
1585 (forward-char bytes)
1586 (decode-coding-region (- (point) bytes) (point) coding)))
1587 ;; ESC % G --UTF-8-BYTES-- ESC % @
1588 (delete-char -3)
1589 (delete-region pos (+ pos 3))
1590 (decode-coding-region pos (point) 'utf-8))))
1591 (goto-char (point-min))
1592 (- (point-max) (point)))))
1593
1594 (defvar ctext-standard-encodings
1595 '(ascii latin-jisx0201 katakana-jisx0201
1596 latin-iso8859-1 latin-iso8859-2 latin-iso8859-3 latin-iso8859-4
1597 greek-iso8859-7 arabic-iso8859-6 hebrew-iso8859-8 cyrillic-iso8859-5
1598 latin-iso8859-9
1599 chinese-gb2312 japanese-jisx0208 korean-ksc5601)
1600 "List of approved standard encodings (i.e. charsets) of X's Compound Text.
1601 Coding-system `compound-text-with-extensions' encodes a character
1602 belonging to any of those charsets using the normal ISO2022
1603 designation sequence unless the current language environment or
1604 the variable `ctext-non-standard-encodings' decide to use an extended
1605 segment of CTEXT for that character. See also the documentation
1606 of `ctext-non-standard-encodings-alist'.")
1607
1608 ;; Return an alist of CHARSET vs CTEXT-USAGE-INFO generated from
1609 ;; `ctext-non-standard-encodings' and a list specified by the key
1610 ;; `ctext-non-standard-encodings' for the current language
1611 ;; environment. CTEXT-USAGE-INFO is one of the element of
1612 ;; `ctext-non-standard-encodings-alist' or nil. In the former case, a
1613 ;; character in CHARSET is encoded using extended segment. In the
1614 ;; latter case, a character in CHARSET is encoded using normal ISO2022
1615 ;; designation sequence. If a character is not in any of CHARSETs, it
1616 ;; is encoded using UTF-8 encoding extension.
1617
1618 (defun ctext-non-standard-encodings-table ()
1619 (let* ((table (append ctext-non-standard-encodings
1620 (copy-sequence
1621 (get-language-info current-language-environment
1622 'ctext-non-standard-encodings))))
1623 (tail table)
1624 elt)
1625 (while tail
1626 (setq elt (car tail))
1627 (let* ((slot (assoc elt ctext-non-standard-encodings-alist))
1628 (charset (nth 3 slot)))
1629 (if (charsetp charset)
1630 (setcar tail
1631 (cons (plist-get (charset-plist charset) :base) slot))
1632 (setcar tail (cons (car charset) slot))
1633 (dolist (cs (cdr charset))
1634 (setcdr tail
1635 (cons (cons (plist-get (charset-plist (car cs)) :base) slot)
1636 (cdr tail)))
1637 (setq tail (cdr tail))))
1638 (setq tail (cdr tail))))
1639 table))
1640
1641 (defun ctext-pre-write-conversion (from to)
1642 "Encode characters between FROM and TO as Compound Text w/Extended Segments.
1643
1644 If FROM is a string, generate a new temp buffer, insert the text,
1645 and convert it in the temporary buffer. Otherwise, convert
1646 in-place."
1647 (save-match-data
1648 ;; Setup a working buffer if necessary.
1649 (when (stringp from)
1650 (set-buffer (generate-new-buffer " *temp"))
1651 (set-buffer-multibyte (multibyte-string-p from))
1652 (insert from)
1653 (setq from (point-min) to (point-max)))
1654 (save-restriction
1655 (narrow-to-region from to)
1656 (goto-char from)
1657 (let ((encoding-table (ctext-non-standard-encodings-table))
1658 (charset-list (sort-charsets
1659 (copy-sequence ctext-standard-encodings)))
1660 (end-pos (make-marker))
1661 last-coding-system-used
1662 last-pos charset encoding-info)
1663 (dolist (elt encoding-table)
1664 (push (car elt) charset-list))
1665 (setq end-pos (point-marker))
1666 (while (re-search-forward "[^\0-\177]+" nil t)
1667 ;; Found a sequence of non-ASCII characters.
1668 (set-marker end-pos (match-end 0))
1669 (goto-char (match-beginning 0))
1670 (setq last-pos (point)
1671 charset (char-charset (following-char) charset-list))
1672 (forward-char 1)
1673 (while (and (< (point) end-pos)
1674 (eq charset (char-charset (following-char) charset-list)))
1675 (forward-char 1))
1676 (if charset
1677 (if (setq encoding-info (cdr (assq charset encoding-table)))
1678 ;; Encode this range using an extended segment.
1679 (let ((encoding-name (car encoding-info))
1680 (coding-system (nth 1 encoding-info))
1681 (noctets (nth 2 encoding-info))
1682 len)
1683 (encode-coding-region last-pos (point) coding-system)
1684 (setq len (+ (length encoding-name) 1
1685 (- (point) last-pos)))
1686 ;; According to the spec of CTEXT, it is not
1687 ;; necessary to produce this extra designation
1688 ;; sequence, but some buggy application
1689 ;; (e.g. crxvt-gb) requires it.
1690 (insert "\e(B")
1691 (save-excursion
1692 (goto-char last-pos)
1693 (insert (format "\e%%/%d" noctets))
1694 (insert-byte (+ (/ len 128) 128) 1)
1695 (insert-byte (+ (% len 128) 128) 1)
1696 (insert encoding-name)
1697 (insert 2)))
1698 ;; Encode this range as characters in CHARSET.
1699 (put-text-property last-pos (point) 'charset charset))
1700 ;; Encode this range using UTF-8 encoding extension.
1701 (encode-coding-region last-pos (point) 'mule-utf-8)
1702 (save-excursion
1703 (goto-char last-pos)
1704 (insert "\e%G"))
1705 (insert "\e%@")))
1706 (goto-char (point-min)))))
1707 ;; Must return nil, as build_annotations_2 expects that.
1708 nil)
1709
1710 ;;; FILE I/O
1711
1712 ;; TODO many elements of this list are also in inhibit-local-variables-regexps.
1713 (defcustom auto-coding-alist
1714 ;; .exe and .EXE are added to support archive-mode looking at DOS
1715 ;; self-extracting exe archives.
1716 (mapcar (lambda (arg) (cons (purecopy (car arg)) (cdr arg)))
1717 '(("\\.\\(\
1718 arc\\|zip\\|lzh\\|lha\\|zoo\\|[jew]ar\\|xpi\\|rar\\|7z\\|\
1719 ARC\\|ZIP\\|LZH\\|LHA\\|ZOO\\|[JEW]AR\\|XPI\\|RAR\\|7Z\\)\\'"
1720 . no-conversion-multibyte)
1721 ("\\.\\(exe\\|EXE\\)\\'" . no-conversion)
1722 ("\\.\\(sx[dmicw]\\|odt\\|tar\\|t[bg]z\\)\\'" . no-conversion)
1723 ("\\.\\(gz\\|Z\\|bz\\|bz2\\|xz\\|gpg\\)\\'" . no-conversion)
1724 ("\\.\\(jpe?g\\|png\\|gif\\|tiff?\\|p[bpgn]m\\)\\'" . no-conversion)
1725 ("\\.pdf\\'" . no-conversion)
1726 ("/#[^/]+#\\'" . utf-8-emacs-unix)))
1727 "Alist of filename patterns vs corresponding coding systems.
1728 Each element looks like (REGEXP . CODING-SYSTEM).
1729 A file whose name matches REGEXP is decoded by CODING-SYSTEM on reading.
1730
1731 The settings in this alist take priority over `coding:' tags
1732 in the file (see the function `set-auto-coding')
1733 and the contents of `file-coding-system-alist'."
1734 :version "24.1" ; added xz
1735 :group 'files
1736 :group 'mule
1737 :type '(repeat (cons (regexp :tag "File name regexp")
1738 (symbol :tag "Coding system"))))
1739
1740 (defcustom auto-coding-regexp-alist
1741 (mapcar (lambda (arg) (cons (purecopy (car arg)) (cdr arg)))
1742 '(("\\`BABYL OPTIONS:[ \t]*-\\*-[ \t]*rmail[ \t]*-\\*-" . no-conversion)
1743 ("\\`\xFE\xFF" . utf-16be-with-signature)
1744 ("\\`\xFF\xFE" . utf-16le-with-signature)
1745 ("\\`\xEF\xBB\xBF" . utf-8-with-signature)
1746 ("\\`;ELC\024\0\0\0" . emacs-mule))) ; Emacs 20-compiled
1747 "Alist of patterns vs corresponding coding systems.
1748 Each element looks like (REGEXP . CODING-SYSTEM).
1749 A file whose first bytes match REGEXP is decoded by CODING-SYSTEM on reading.
1750
1751 The settings in this alist take priority over `coding:' tags
1752 in the file (see the function `set-auto-coding')
1753 and the contents of `file-coding-system-alist'."
1754 :group 'files
1755 :group 'mule
1756 :type '(repeat (cons (regexp :tag "Regexp")
1757 (symbol :tag "Coding system"))))
1758
1759 (defun auto-coding-regexp-alist-lookup (from to)
1760 "Lookup `auto-coding-regexp-alist' for the contents of the current buffer.
1761 The value is a coding system is specified for the region FROM and TO,
1762 or nil."
1763 (save-excursion
1764 (goto-char from)
1765 (let ((alist auto-coding-regexp-alist)
1766 coding-system)
1767 (while (and alist (not coding-system))
1768 (let ((regexp (car (car alist))))
1769 (if enable-multibyte-characters
1770 (setq regexp (string-to-multibyte regexp)))
1771 (if (re-search-forward regexp to t)
1772 (setq coding-system (cdr (car alist)))
1773 (setq alist (cdr alist)))))
1774 coding-system)))
1775
1776 ;; See the bottom of this file for built-in auto coding functions.
1777 (defcustom auto-coding-functions '(sgml-xml-auto-coding-function
1778 sgml-html-meta-auto-coding-function)
1779 "A list of functions which attempt to determine a coding system.
1780
1781 Each function in this list should be written to operate on the
1782 current buffer, but should not modify it in any way. The buffer
1783 will contain undecoded text of parts of the file. Each function
1784 should take one argument, SIZE, which says how many characters
1785 \(starting from point) it should look at.
1786
1787 If one of these functions succeeds in determining a coding
1788 system, it should return that coding system. Otherwise, it
1789 should return nil.
1790
1791 If a file has a `coding:' tag, that takes precedence over these
1792 functions, so they won't be called at all."
1793 :group 'files
1794 :group 'mule
1795 :type '(repeat function))
1796
1797 (defvar set-auto-coding-for-load nil
1798 "Non-nil means respect a \"unibyte: t\" entry in file local variables.
1799 Emacs binds this variable to t when loading or byte-compiling Emacs Lisp
1800 files.")
1801
1802 (defun auto-coding-alist-lookup (filename)
1803 "Return the coding system specified by `auto-coding-alist' for FILENAME."
1804 (let ((alist auto-coding-alist)
1805 (case-fold-search (memq system-type '(windows-nt ms-dos cygwin)))
1806 coding-system)
1807 (while (and alist (not coding-system))
1808 (if (string-match (car (car alist)) filename)
1809 (setq coding-system (cdr (car alist)))
1810 (setq alist (cdr alist))))
1811 coding-system))
1812
1813 (put 'enable-character-translation 'permanent-local t)
1814 (put 'enable-character-translation 'safe-local-variable 'booleanp)
1815
1816 (defun find-auto-coding (filename size)
1817 "Find a coding system for a file FILENAME of which SIZE bytes follow point.
1818 These bytes should include at least the first 1k of the file
1819 and the last 3k of the file, but the middle may be omitted.
1820
1821 The function checks FILENAME against the variable `auto-coding-alist'.
1822 If FILENAME doesn't match any entries in the variable, it checks the
1823 contents of the current buffer following point against
1824 `auto-coding-regexp-alist'. If no match is found, it checks for a
1825 `coding:' tag in the first one or two lines following point. If no
1826 `coding:' tag is found, it checks any local variables list in the last
1827 3K bytes out of the SIZE bytes. Finally, if none of these methods
1828 succeed, it checks to see if any function in `auto-coding-functions'
1829 gives a match.
1830
1831 If a coding system is specified, the return value is a cons
1832 \(CODING . SOURCE), where CODING is the specified coding system and
1833 SOURCE is a symbol `auto-coding-alist', `auto-coding-regexp-alist',
1834 `:coding', or `auto-coding-functions' indicating by what CODING is
1835 specified. Note that the validity of CODING is not checked;
1836 it's the caller's responsibility to check it.
1837
1838 If nothing is specified, the return value is nil."
1839 (or (let ((coding-system (auto-coding-alist-lookup filename)))
1840 (if coding-system
1841 (cons coding-system 'auto-coding-alist)))
1842 ;; Try using `auto-coding-regexp-alist'.
1843 (let ((coding-system (auto-coding-regexp-alist-lookup (point)
1844 (+ (point) size))))
1845 (if coding-system
1846 (cons coding-system 'auto-coding-regexp-alist)))
1847 (let* ((case-fold-search t)
1848 (head-start (point))
1849 (head-end (+ head-start (min size 1024)))
1850 (tail-start (+ head-start (max (- size 3072) 0)))
1851 (tail-end (+ head-start size))
1852 coding-system head-found tail-found pos char-trans)
1853 ;; Try a short cut by searching for the string "coding:"
1854 ;; and for "unibyte:" at the head and tail of SIZE bytes.
1855 (setq head-found (or (search-forward "coding:" head-end t)
1856 (search-forward "unibyte:" head-end t)
1857 (search-forward "enable-character-translation:"
1858 head-end t)))
1859 (if (and head-found (> head-found tail-start))
1860 ;; Head and tail are overlapped.
1861 (setq tail-found head-found)
1862 (goto-char tail-start)
1863 (setq tail-found (or (search-forward "coding:" tail-end t)
1864 (search-forward "unibyte:" tail-end t)
1865 (search-forward "enable-character-translation:"
1866 tail-end t))))
1867
1868 ;; At first check the head.
1869 (when head-found
1870 (goto-char head-start)
1871 (setq head-end (set-auto-mode-1))
1872 (setq head-start (point))
1873 (when (and head-end (< head-found head-end))
1874 (goto-char head-start)
1875 (when (and set-auto-coding-for-load
1876 (re-search-forward
1877 "\\(.*;\\)?[ \t]*unibyte:[ \t]*\\([^ ;]+\\)"
1878 head-end t))
1879 (display-warning 'mule
1880 (format "\"unibyte: t\" (in %s) is obsolete; \
1881 use \"coding: 'raw-text\" instead."
1882 (file-relative-name filename))
1883 :warning)
1884 (setq coding-system 'raw-text))
1885 (when (and (not coding-system)
1886 (re-search-forward
1887 "\\(.*;\\)?[ \t]*coding:[ \t]*\\([^ ;]+\\)"
1888 head-end t))
1889 (setq coding-system (intern (match-string 2))))
1890 (when (re-search-forward
1891 "\\(.*;\\)?[ \t]*enable-character-translation:[ \t]*\\([^ ;]+\\)"
1892 head-end t)
1893 (setq char-trans (match-string 2)))))
1894
1895 ;; If no coding: tag in the head, check the tail.
1896 ;; Here we must pay attention to the case that the end-of-line
1897 ;; is just "\r" and we can't use "^" nor "$" in regexp.
1898 (when (and tail-found (or (not coding-system) (not char-trans)))
1899 (goto-char tail-start)
1900 (re-search-forward "[\r\n]\^L" tail-end t)
1901 (if (re-search-forward
1902 "[\r\n]\\([^[\r\n]*\\)[ \t]*Local Variables:[ \t]*\\([^\r\n]*\\)[\r\n]"
1903 tail-end t)
1904 ;; The prefix is what comes before "local variables:" in its
1905 ;; line. The suffix is what comes after "local variables:"
1906 ;; in its line.
1907 (let* ((prefix (regexp-quote (match-string 1)))
1908 (suffix (regexp-quote (match-string 2)))
1909 (re-coding
1910 (concat
1911 "[\r\n]" prefix
1912 ;; N.B. without the \n below, the regexp can
1913 ;; eat newlines.
1914 "[ \t]*coding[ \t]*:[ \t]*\\([^ \t\r\n]+\\)[ \t]*"
1915 suffix "[\r\n]"))
1916 (re-unibyte
1917 (concat
1918 "[\r\n]" prefix
1919 "[ \t]*unibyte[ \t]*:[ \t]*\\([^ \t\r\n]+\\)[ \t]*"
1920 suffix "[\r\n]"))
1921 (re-char-trans
1922 (concat
1923 "[\r\n]" prefix
1924 "[ \t]*enable-character-translation[ \t]*:[ \t]*\\([^ \t\r\n]+\\)[ \t]*"
1925 suffix "[\r\n]"))
1926 (re-end
1927 (concat "[\r\n]" prefix "[ \t]*End *:[ \t]*" suffix
1928 "[\r\n]?"))
1929 (pos (1- (point))))
1930 (forward-char -1) ; skip back \r or \n.
1931 (re-search-forward re-end tail-end 'move)
1932 (setq tail-end (point))
1933 (goto-char pos)
1934 (when (and set-auto-coding-for-load
1935 (re-search-forward re-unibyte tail-end t))
1936 (display-warning 'mule "`unibyte: t' is obsolete; \
1937 use \"coding: 'raw-text\" instead." :warning)
1938 (setq coding-system 'raw-text))
1939 (when (and (not coding-system)
1940 (re-search-forward re-coding tail-end t))
1941 (setq coding-system (intern (match-string 1))))
1942 (when (and (not char-trans)
1943 (re-search-forward re-char-trans tail-end t))
1944 (setq char-trans (match-string 1))))))
1945 (if coding-system
1946 ;; If the coding-system name ends with "!", remove it and
1947 ;; set char-trans to "nil".
1948 (let ((name (symbol-name coding-system)))
1949 (if (= (aref name (1- (length name))) ?!)
1950 (setq coding-system (intern (substring name 0 -1))
1951 char-trans "nil"))))
1952 (when (and char-trans
1953 (not (setq char-trans (intern char-trans))))
1954 (make-local-variable 'enable-character-translation)
1955 (setq enable-character-translation nil))
1956 (if coding-system
1957 (cons coding-system :coding)))
1958 ;; Finally, try all the `auto-coding-functions'.
1959 (let ((funcs auto-coding-functions)
1960 (coding-system nil))
1961 (while (and funcs (not coding-system))
1962 (setq coding-system (condition-case e
1963 (save-excursion
1964 (goto-char (point-min))
1965 (funcall (pop funcs) size))
1966 (error nil))))
1967 (if coding-system
1968 (cons coding-system 'auto-coding-functions)))))
1969
1970 (defun set-auto-coding (filename size)
1971 "Return coding system for a file FILENAME of which SIZE bytes follow point.
1972 See `find-auto-coding' for how the coding system is found.
1973 Return nil if an invalid coding system is found.
1974
1975 The variable `set-auto-coding-function' (which see) is set to this
1976 function by default."
1977 (let ((found (find-auto-coding filename size)))
1978 (if (and found (coding-system-p (car found)))
1979 (car found))))
1980
1981 (setq set-auto-coding-function 'set-auto-coding)
1982
1983 (defun after-insert-file-set-coding (inserted &optional visit)
1984 "Set `buffer-file-coding-system' of current buffer after text is inserted.
1985 INSERTED is the number of characters that were inserted, as figured
1986 in the situation before this function. Return the number of characters
1987 inserted, as figured in the situation after. The two numbers can be
1988 different if the buffer has become unibyte.
1989 The optional second arg VISIT non-nil means that we are visiting a file."
1990 (if (and visit
1991 coding-system-for-read
1992 (not (eq coding-system-for-read 'auto-save-coding)))
1993 (setq buffer-file-coding-system-explicit
1994 (cons coding-system-for-read nil)))
1995 (if last-coding-system-used
1996 (let ((coding-system
1997 (find-new-buffer-file-coding-system last-coding-system-used)))
1998 (if coding-system
1999 (setq buffer-file-coding-system coding-system))))
2000 inserted)
2001
2002 ;; The coding-spec and eol-type of coding-system returned is decided
2003 ;; independently in the following order.
2004 ;; 1. That of buffer-file-coding-system locally bound.
2005 ;; 2. That of CODING.
2006
2007 (defun find-new-buffer-file-coding-system (coding)
2008 "Return a coding system for a buffer when a file of CODING is inserted.
2009 The local variable `buffer-file-coding-system' of the current buffer
2010 is set to the returned value.
2011 Return nil if there's no need to set `buffer-file-coding-system'."
2012 (let (local-coding local-eol
2013 found-coding found-eol
2014 new-coding new-eol)
2015 (if (null coding)
2016 ;; Nothing found about coding.
2017 nil
2018
2019 ;; Get information of `buffer-file-coding-system' in LOCAL-EOL
2020 ;; and LOCAL-CODING.
2021 (setq local-eol (coding-system-eol-type buffer-file-coding-system))
2022 (if (null (numberp local-eol))
2023 ;; But eol-type is not yet set.
2024 (setq local-eol nil))
2025 (if (and buffer-file-coding-system
2026 (not (eq (coding-system-type buffer-file-coding-system)
2027 'undecided)))
2028 (setq local-coding (coding-system-base buffer-file-coding-system)))
2029
2030 (if (and (local-variable-p 'buffer-file-coding-system)
2031 local-eol local-coding)
2032 ;; The current buffer has already set full coding-system, we
2033 ;; had better not change it.
2034 nil
2035
2036 (setq found-eol (coding-system-eol-type coding))
2037 (if (null (numberp found-eol))
2038 ;; But eol-type is not found.
2039 ;; If EOL conversions are inhibited, force unix eol-type.
2040 (setq found-eol (if inhibit-eol-conversion 0)))
2041 (setq found-coding (coding-system-base coding))
2042
2043 (if (and (not found-eol) (eq found-coding 'undecided))
2044 ;; No valid coding information found.
2045 nil
2046
2047 ;; Some coding information (eol or text) found.
2048
2049 ;; The local setting takes precedence over the found one.
2050 (setq new-coding (if (local-variable-p 'buffer-file-coding-system)
2051 (or local-coding found-coding)
2052 (or found-coding local-coding)))
2053 (setq new-eol (if (local-variable-p 'buffer-file-coding-system)
2054 (or local-eol found-eol)
2055 (or found-eol local-eol)))
2056
2057 (let ((eol-type (coding-system-eol-type new-coding)))
2058 (if (and (numberp new-eol) (vectorp eol-type))
2059 (aref eol-type new-eol)
2060 new-coding)))))))
2061
2062 (defun modify-coding-system-alist (target-type regexp coding-system)
2063 "Modify one of look up tables for finding a coding system on I/O operation.
2064 There are three of such tables, `file-coding-system-alist',
2065 `process-coding-system-alist', and `network-coding-system-alist'.
2066
2067 TARGET-TYPE specifies which of them to modify.
2068 If it is `file', it affects `file-coding-system-alist' (which see).
2069 If it is `process', it affects `process-coding-system-alist' (which see).
2070 If it is `network', it affects `network-coding-system-alist' (which see).
2071
2072 REGEXP is a regular expression matching a target of I/O operation.
2073 The target is a file name if TARGET-TYPE is `file', a program name if
2074 TARGET-TYPE is `process', or a network service name or a port number
2075 to connect to if TARGET-TYPE is `network'.
2076
2077 CODING-SYSTEM is a coding system to perform code conversion on the I/O
2078 operation, or a cons cell (DECODING . ENCODING) specifying the coding
2079 systems for decoding and encoding respectively, or a function symbol
2080 which, when called, returns such a cons cell."
2081 (or (memq target-type '(file process network))
2082 (error "Invalid target type: %s" target-type))
2083 (or (stringp regexp)
2084 (and (eq target-type 'network) (integerp regexp))
2085 (error "Invalid regular expression: %s" regexp))
2086 (if (symbolp coding-system)
2087 (if (not (fboundp coding-system))
2088 (progn
2089 (check-coding-system coding-system)
2090 (setq coding-system (cons coding-system coding-system))))
2091 (check-coding-system (car coding-system))
2092 (check-coding-system (cdr coding-system)))
2093 (cond ((eq target-type 'file)
2094 (let ((slot (assoc regexp file-coding-system-alist)))
2095 (if slot
2096 (setcdr slot coding-system)
2097 (setq file-coding-system-alist
2098 (cons (cons regexp coding-system)
2099 file-coding-system-alist)))))
2100 ((eq target-type 'process)
2101 (let ((slot (assoc regexp process-coding-system-alist)))
2102 (if slot
2103 (setcdr slot coding-system)
2104 (setq process-coding-system-alist
2105 (cons (cons regexp coding-system)
2106 process-coding-system-alist)))))
2107 (t
2108 (let ((slot (assoc regexp network-coding-system-alist)))
2109 (if slot
2110 (setcdr slot coding-system)
2111 (setq network-coding-system-alist
2112 (cons (cons regexp coding-system)
2113 network-coding-system-alist)))))))
2114
2115 (defun decode-coding-inserted-region (from to filename
2116 &optional visit beg end replace)
2117 "Decode the region between FROM and TO as if it is read from file FILENAME.
2118 The idea is that the text between FROM and TO was just inserted somehow.
2119 Optional arguments VISIT, BEG, END, and REPLACE are the same as those
2120 of the function `insert-file-contents'.
2121 Part of the job of this function is setting `buffer-undo-list' appropriately."
2122 (save-excursion
2123 (save-restriction
2124 (let ((coding coding-system-for-read)
2125 undo-list-saved)
2126 (if visit
2127 ;; Temporarily turn off undo recording, if we're decoding the
2128 ;; text of a visited file.
2129 (setq buffer-undo-list t)
2130 ;; Otherwise, if we can recognize the undo elt for the insertion,
2131 ;; remove it and get ready to replace it later.
2132 ;; In the mean time, turn off undo recording.
2133 (let ((last (car-safe buffer-undo-list)))
2134 (if (and (consp last) (eql (car last) from) (eql (cdr last) to))
2135 (setq undo-list-saved (cdr buffer-undo-list)
2136 buffer-undo-list t))))
2137 (narrow-to-region from to)
2138 (goto-char (point-min))
2139 (or coding
2140 (setq coding (funcall set-auto-coding-function
2141 filename (- (point-max) (point-min)))))
2142 (or coding
2143 (setq coding (car (find-operation-coding-system
2144 'insert-file-contents
2145 (cons filename (current-buffer))
2146 visit beg end replace))))
2147 (if (coding-system-p coding)
2148 (or enable-multibyte-characters
2149 (setq coding
2150 (coding-system-change-text-conversion coding 'raw-text)))
2151 (setq coding nil))
2152 (if coding
2153 (decode-coding-region (point-min) (point-max) coding)
2154 (setq last-coding-system-used coding))
2155 ;; If we're decoding the text of a visited file,
2156 ;; the undo list should start out empty.
2157 (if visit
2158 (setq buffer-undo-list nil)
2159 ;; If we decided to replace the undo entry for the insertion,
2160 ;; do so now.
2161 (if undo-list-saved
2162 (setq buffer-undo-list
2163 (cons (cons from (point-max)) undo-list-saved))))))))
2164
2165 (defun recode-region (start end new-coding coding)
2166 "Re-decode the region (previously decoded by CODING) by NEW-CODING."
2167 (interactive
2168 (list (region-beginning) (region-end)
2169 (read-coding-system "Text was really in: ")
2170 (let ((coding (or buffer-file-coding-system last-coding-system-used)))
2171 (read-coding-system
2172 (concat "But was interpreted as"
2173 (if coding (format " (default %S): " coding) ": "))
2174 coding))))
2175 (or (and new-coding coding)
2176 (error "Coding system not specified"))
2177 ;; Check it before we encode the region.
2178 (check-coding-system new-coding)
2179 (save-restriction
2180 (narrow-to-region start end)
2181 (encode-coding-region (point-min) (point-max) coding)
2182 (decode-coding-region (point-min) (point-max) new-coding))
2183 (if (region-active-p)
2184 (deactivate-mark)))
2185
2186 (defun make-translation-table (&rest args)
2187 "Make a translation table from arguments.
2188 A translation table is a char table intended for character
2189 translation in CCL programs.
2190
2191 Each argument is a list of elements of the form (FROM . TO), where FROM
2192 is a character to be translated to TO.
2193
2194 The arguments and forms in each argument are processed in the given
2195 order, and if a previous form already translates TO to some other
2196 character, say TO-ALT, FROM is also translated to TO-ALT."
2197 (let ((table (make-char-table 'translation-table))
2198 revlist)
2199 (dolist (elts args)
2200 (dolist (elt elts)
2201 (let ((from (car elt))
2202 (to (cdr elt))
2203 to-alt rev-from rev-to)
2204 ;; If we have already translated TO to TO-ALT, FROM should
2205 ;; also be translated to TO-ALT.
2206 (if (setq to-alt (aref table to))
2207 (setq to to-alt))
2208 (aset table from to)
2209 ;; If we have already translated some chars to FROM, they
2210 ;; should also be translated to TO.
2211 (when (setq rev-from (assq from revlist))
2212 (dolist (elt (cdr rev-from))
2213 (aset table elt to))
2214 (setq revlist (delq rev-from revlist)
2215 rev-from (cdr rev-from)))
2216 ;; Now update REVLIST.
2217 (setq rev-to (assq to revlist))
2218 (if rev-to
2219 (setcdr rev-to (cons from (cdr rev-to)))
2220 (setq rev-to (list to from)
2221 revlist (cons rev-to revlist)))
2222 (if rev-from
2223 (setcdr rev-to (append rev-from (cdr rev-to)))))))
2224 ;; Return TABLE just created.
2225 (set-char-table-extra-slot table 1 1)
2226 table))
2227
2228 (defun make-translation-table-from-vector (vec)
2229 "Make translation table from decoding vector VEC.
2230 VEC is an array of 256 elements to map unibyte codes to multibyte
2231 characters. Elements may be nil for undefined code points."
2232 (let ((table (make-char-table 'translation-table))
2233 (rev-table (make-char-table 'translation-table))
2234 ch)
2235 (dotimes (i 256)
2236 (setq ch (aref vec i))
2237 (when ch
2238 (aset table i ch)
2239 (if (>= ch 256)
2240 (aset rev-table ch i))))
2241 (set-char-table-extra-slot table 0 rev-table)
2242 (set-char-table-extra-slot table 1 1)
2243 (set-char-table-extra-slot rev-table 1 1)
2244 table))
2245
2246 (defun make-translation-table-from-alist (alist)
2247 "Make translation table from N<->M mapping in ALIST.
2248 ALIST is an alist, each element has the form (FROM . TO).
2249 FROM and TO are a character or a vector of characters.
2250 If FROM is a character, that character is translated to TO.
2251 If FROM is a vector of characters, that sequence is translated to TO.
2252 The first extra-slot of the value is a translation table for reverse mapping."
2253 (let ((tables (vector (make-char-table 'translation-table)
2254 (make-char-table 'translation-table)))
2255 table max-lookup from to idx val)
2256 (dotimes (i 2)
2257 (setq table (aref tables i))
2258 (setq max-lookup 1)
2259 (dolist (elt alist)
2260 (if (= i 0)
2261 (setq from (car elt) to (cdr elt))
2262 (setq from (cdr elt) to (car elt)))
2263 (if (characterp from)
2264 (setq idx from)
2265 (setq idx (aref from 0)
2266 max-lookup (max max-lookup (length from))))
2267 (setq val (aref table idx))
2268 (if val
2269 (progn
2270 (or (consp val)
2271 (setq val (list (cons (vector idx) val))))
2272 (if (characterp from)
2273 (setq from (vector from)))
2274 (setq val (nconc val (list (cons from to)))))
2275 (if (characterp from)
2276 (setq val to)
2277 (setq val (list (cons from to)))))
2278 (aset table idx val))
2279 (set-char-table-extra-slot table 1 max-lookup))
2280 (set-char-table-extra-slot (aref tables 0) 0 (aref tables 1))
2281 (aref tables 0)))
2282
2283 (defun define-translation-table (symbol &rest args)
2284 "Define SYMBOL as the name of translation table made by ARGS.
2285 This sets up information so that the table can be used for
2286 translations in a CCL program.
2287
2288 If the first element of ARGS is a char-table whose purpose is
2289 `translation-table', just define SYMBOL to name it. (Note that this
2290 function does not bind SYMBOL.)
2291
2292 Any other ARGS should be suitable as arguments of the function
2293 `make-translation-table' (which see).
2294
2295 This function sets properties `translation-table' and
2296 `translation-table-id' of SYMBOL to the created table itself and the
2297 identification number of the table respectively. It also registers
2298 the table in `translation-table-vector'."
2299 (let ((table (if (and (char-table-p (car args))
2300 (eq (char-table-subtype (car args))
2301 'translation-table))
2302 (car args)
2303 (apply 'make-translation-table args)))
2304 (len (length translation-table-vector))
2305 (id 0)
2306 (done nil))
2307 (put symbol 'translation-table table)
2308 (while (not done)
2309 (if (>= id len)
2310 (setq translation-table-vector
2311 (vconcat translation-table-vector (make-vector len nil))))
2312 (let ((slot (aref translation-table-vector id)))
2313 (if (or (not slot)
2314 (eq (car slot) symbol))
2315 (progn
2316 (aset translation-table-vector id (cons symbol table))
2317 (setq done t))
2318 (setq id (1+ id)))))
2319 (put symbol 'translation-table-id id)
2320 id))
2321
2322 (defun translate-region (start end table)
2323 "From START to END, translate characters according to TABLE.
2324 TABLE is a string or a char-table.
2325 If TABLE is a string, the Nth character in it is the mapping
2326 for the character with code N.
2327 If TABLE is a char-table, the element for character N is the mapping
2328 for the character with code N.
2329 It returns the number of characters changed."
2330 (interactive
2331 (list (region-beginning)
2332 (region-end)
2333 (let (table l)
2334 (dotimes (i (length translation-table-vector))
2335 (if (consp (aref translation-table-vector i))
2336 (push (list (symbol-name
2337 (car (aref translation-table-vector i)))) l)))
2338 (if (not l)
2339 (error "No translation table defined"))
2340 (while (not table)
2341 (setq table (completing-read "Translation table: " l nil t)))
2342 (intern table))))
2343 (if (symbolp table)
2344 (let ((val (get table 'translation-table)))
2345 (or (char-table-p val)
2346 (error "Invalid translation table name: %s" table))
2347 (setq table val)))
2348 (translate-region-internal start end table))
2349
2350 (defmacro with-category-table (table &rest body)
2351 "Execute BODY like `progn' with TABLE the current category table.
2352 The category table of the current buffer is saved, BODY is evaluated,
2353 then the saved table is restored, even in case of an abnormal exit.
2354 Value is what BODY returns."
2355 (declare (indent 1) (debug t))
2356 (let ((old-table (make-symbol "old-table"))
2357 (old-buffer (make-symbol "old-buffer")))
2358 `(let ((,old-table (category-table))
2359 (,old-buffer (current-buffer)))
2360 (unwind-protect
2361 (progn
2362 (set-category-table ,table)
2363 ,@body)
2364 (with-current-buffer ,old-buffer
2365 (set-category-table ,old-table))))))
2366
2367 (defun define-translation-hash-table (symbol table)
2368 "Define SYMBOL as the name of the hash translation TABLE for use in CCL.
2369
2370 Analogous to `define-translation-table', but updates
2371 `translation-hash-table-vector' and the table is for use in the CCL
2372 `lookup-integer' and `lookup-character' functions."
2373 (unless (and (symbolp symbol)
2374 (hash-table-p table))
2375 (error "Bad args to define-translation-hash-table"))
2376 (let ((len (length translation-hash-table-vector))
2377 (id 0)
2378 done)
2379 (put symbol 'translation-hash-table table)
2380 (while (not done)
2381 (if (>= id len)
2382 (setq translation-hash-table-vector
2383 (vconcat translation-hash-table-vector [nil])))
2384 (let ((slot (aref translation-hash-table-vector id)))
2385 (if (or (not slot)
2386 (eq (car slot) symbol))
2387 (progn
2388 (aset translation-hash-table-vector id (cons symbol table))
2389 (setq done t))
2390 (setq id (1+ id)))))
2391 (put symbol 'translation-hash-table-id id)
2392 id))
2393
2394 ;;; Initialize some variables.
2395
2396 (put 'use-default-ascent 'char-table-extra-slots 0)
2397 (setq use-default-ascent (make-char-table 'use-default-ascent))
2398 (put 'ignore-relative-composition 'char-table-extra-slots 0)
2399 (setq ignore-relative-composition
2400 (make-char-table 'ignore-relative-composition))
2401
2402 ;;; Built-in auto-coding-functions:
2403
2404 (defun sgml-xml-auto-coding-function (size)
2405 "Determine whether the buffer is XML, and if so, its encoding.
2406 This function is intended to be added to `auto-coding-functions'."
2407 (setq size (+ (point) size))
2408 (when (re-search-forward "\\`[[:space:]\n]*<\\?xml" size t)
2409 (let ((end (save-excursion
2410 ;; This is a hack.
2411 (re-search-forward "[\"']\\s-*\\?>" size t))))
2412 (when end
2413 (if (re-search-forward "encoding=[\"']\\(.+?\\)[\"']" end t)
2414 (let* ((match (match-string 1))
2415 (sym (intern (downcase match))))
2416 (if (coding-system-p sym)
2417 sym
2418 (message "Warning: unknown coding system \"%s\"" match)
2419 nil))
2420 ;; Files without an encoding tag should be UTF-8. But users
2421 ;; may be naive about encodings, and have saved the file from
2422 ;; another editor that does not help them get the encoding right.
2423 ;; Detect the encoding and warn the user if it is detected as
2424 ;; something other than UTF-8.
2425 (let ((detected
2426 (with-coding-priority '(utf-8)
2427 (coding-system-base
2428 (detect-coding-region (point-min) size t)))))
2429 ;; Pure ASCII always comes back as undecided.
2430 (if (memq detected '(utf-8 undecided))
2431 'utf-8
2432 (warn "File contents detected as %s.
2433 Consider adding an encoding attribute to the xml declaration,
2434 or saving as utf-8, as mandated by the xml specification." detected)
2435 detected)))))))
2436
2437 (defun sgml-html-meta-auto-coding-function (size)
2438 "If the buffer has an HTML meta tag, use it to determine encoding.
2439 This function is intended to be added to `auto-coding-functions'."
2440 (let ((case-fold-search t))
2441 (setq size (min (+ (point) size)
2442 (save-excursion
2443 ;; Limit the search by the end of the HTML header.
2444 (or (search-forward "</head>" (+ (point) size) t)
2445 ;; In case of no header, search only 10 lines.
2446 (forward-line 10))
2447 (point))))
2448 ;; Make sure that the buffer really contains an HTML document, by
2449 ;; checking that it starts with a doctype or a <HTML> start tag
2450 ;; (allowing for whitespace at bob). Note: 'DOCTYPE NETSCAPE' is
2451 ;; useful for Mozilla bookmark files.
2452 (when (and (re-search-forward "\\`[[:space:]\n]*\\(<!doctype[[:space:]\n]+\\(html\\|netscape\\)\\|<html\\)" size t)
2453 (re-search-forward "<meta\\s-+\\(http-equiv=[\"']?content-type[\"']?\\s-+content=[\"']text/\\sw+;\\s-*\\)?charset=[\"']?\\(.+?\\)[\"'\\s-/>]" size t))
2454 (let* ((match (match-string 2))
2455 (sym (intern (downcase match))))
2456 (if (coding-system-p sym)
2457 sym
2458 (message "Warning: unknown coding system \"%s\"" match)
2459 nil)))))
2460
2461 (defun xml-find-file-coding-system (args)
2462 "Determine the coding system of an XML file without a declaration.
2463 Strictly speaking, the file should be utf-8, but mistakes are
2464 made, and there are genuine cases where XML fragments are saved,
2465 with the encoding properly specified in a master document, or
2466 added by processing software."
2467 (if (eq (car args) 'insert-file-contents)
2468 (let ((detected
2469 (with-coding-priority '(utf-8)
2470 (coding-system-base
2471 (detect-coding-region (point-min) (point-max) t)))))
2472 ;; Pure ASCII always comes back as undecided.
2473 (cond
2474 ((memq detected '(utf-8 undecided))
2475 'utf-8)
2476 ((eq detected 'utf-16le-with-signature) 'utf-16le-with-signature)
2477 ((eq detected 'utf-16be-with-signature) 'utf-16be-with-signature)
2478 (t
2479 (warn "File contents detected as %s.
2480 Consider adding an xml declaration with the encoding specified,
2481 or saving as utf-8, as mandated by the xml specification." detected)
2482 detected)))
2483 ;; Don't interfere with the user's wishes for saving the buffer.
2484 ;; We did what we could when the buffer was created to ensure the
2485 ;; correct encoding was used, or the user was warned, so any
2486 ;; non-conformity here is deliberate on the part of the user.
2487 'undecided))
2488
2489 ;;;
2490 (provide 'mule)
2491
2492 ;;; mule.el ends here