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