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