(isearch-search-string): Simplify and convert docstring.
[emacs.git] / lisp / international / mule.el
blob8ae45e8b3cbef71039ed0eb3875b120dced1aa96
1 ;;; mule.el --- basic commands for multilingual environment
3 ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
4 ;; Free Software Foundation, Inc.
5 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
6 ;; 2005, 2006, 2007, 2008
7 ;; National Institute of Advanced Industrial Science and Technology (AIST)
8 ;; Registration Number H14PRO021
9 ;; Copyright (C) 2003
10 ;; National Institute of Advanced Industrial Science and Technology (AIST)
11 ;; Registration Number H13PRO009
13 ;; Keywords: mule, multilingual, character set, coding system
15 ;; This file is part of GNU Emacs.
17 ;; GNU Emacs is free software: you can redistribute it and/or modify
18 ;; it under the terms of the GNU General Public License as published by
19 ;; the Free Software Foundation, either version 3 of the License, or
20 ;; (at your option) any later version.
22 ;; GNU Emacs is distributed in the hope that it will be useful,
23 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
24 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 ;; GNU General Public License for more details.
27 ;; You should have received a copy of the GNU General Public License
28 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
30 ;;; Commentary:
32 ;;; Code:
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 calll 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 mininum 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 maxinum 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' 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 (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 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 ;; We can probably get a worthwhile amount in purespace.
285 (setq props
286 (mapcar (lambda (elt)
287 (if (stringp elt)
288 (purecopy elt)
289 elt))
290 props))
291 (setcdr (assq :plist attrs) props)
293 (apply 'define-charset-internal name (mapcar 'cdr attrs))))
296 (defun load-with-code-conversion (fullname file &optional noerror nomessage)
297 "Execute a file of Lisp code named FILE whose absolute name is FULLNAME.
298 The file contents are decoded before evaluation if necessary.
299 If optional third arg NOERROR is non-nil,
300 report no error if FILE doesn't exist.
301 Print messages at start and end of loading unless
302 optional fourth arg NOMESSAGE is non-nil.
303 Return t if file exists."
304 (if (null (file-readable-p fullname))
305 (and (null noerror)
306 (signal 'file-error (list "Cannot open load file" file)))
307 ;; Read file with code conversion, and then eval.
308 (let* ((buffer
309 ;; To avoid any autoloading, set default-major-mode to
310 ;; fundamental-mode.
311 (let ((default-major-mode 'fundamental-mode))
312 ;; We can't use `generate-new-buffer' because files.el
313 ;; is not yet loaded.
314 (get-buffer-create (generate-new-buffer-name " *load*"))))
315 (load-in-progress t)
316 (source (save-match-data (string-match "\\.el\\'" fullname))))
317 (unless nomessage
318 (if source
319 (message "Loading %s (source)..." file)
320 (message "Loading %s..." file)))
321 (when purify-flag
322 (push file preloaded-file-list))
323 (unwind-protect
324 (let ((load-file-name fullname)
325 (set-auto-coding-for-load t)
326 (inhibit-file-name-operation nil))
327 (with-current-buffer buffer
328 ;; So that we don't get completely screwed if the
329 ;; file is encoded in some complicated character set,
330 ;; read it with real decoding, as a multibyte buffer,
331 ;; even if this is a --unibyte Emacs session.
332 (set-buffer-multibyte t)
333 ;; Don't let deactivate-mark remain set.
334 (let (deactivate-mark)
335 (insert-file-contents fullname))
336 ;; If the loaded file was inserted with no-conversion or
337 ;; raw-text coding system, make the buffer unibyte.
338 ;; Otherwise, eval-buffer might try to interpret random
339 ;; binary junk as multibyte characters.
340 (if (and enable-multibyte-characters
341 (or (eq (coding-system-type last-coding-system-used)
342 'raw-text)))
343 (set-buffer-multibyte nil))
344 ;; Make `kill-buffer' quiet.
345 (set-buffer-modified-p nil))
346 ;; Have the original buffer current while we eval.
347 (eval-buffer buffer nil
348 ;; This is compatible with what `load' does.
349 (if purify-flag file fullname)
350 ;; If this Emacs is running with --unibyte,
351 ;; convert multibyte strings to unibyte
352 ;; after reading them.
353 ;; (not default-enable-multibyte-characters)
354 nil t
356 (let (kill-buffer-hook kill-buffer-query-functions)
357 (kill-buffer buffer)))
358 (unless purify-flag
359 (do-after-load-evaluation fullname))
361 (unless (or nomessage noninteractive)
362 (if source
363 (message "Loading %s (source)...done" file)
364 (message "Loading %s...done" file)))
365 t)))
367 (defun charset-info (charset)
368 "Return a vector of information of CHARSET.
369 This function is provided for backward compatibility.
371 The elements of the vector are:
372 CHARSET-ID, BYTES, DIMENSION, CHARS, WIDTH, DIRECTION,
373 LEADING-CODE-BASE, LEADING-CODE-EXT,
374 ISO-FINAL-CHAR, ISO-GRAPHIC-PLANE,
375 REVERSE-CHARSET, SHORT-NAME, LONG-NAME, DESCRIPTION,
376 PLIST.
377 where
378 CHARSET-ID is always 0.
379 BYTES is always 0.
380 DIMENSION is the number of bytes of a code-point of the charset:
381 1, 2, 3, or 4.
382 CHARS is the number of characters in a dimension:
383 94, 96, 128, or 256.
384 WIDTH is always 0.
385 DIRECTION is always 0.
386 LEADING-CODE-BASE is always 0.
387 LEADING-CODE-EXT is always 0.
388 ISO-FINAL-CHAR (character) is the final character of the
389 corresponding ISO 2022 charset. If the charset is not assigned
390 any final character, the value is -1.
391 ISO-GRAPHIC-PLANE is always 0.
392 REVERSE-CHARSET is always -1.
393 SHORT-NAME (string) is the short name to refer to the charset.
394 LONG-NAME (string) is the long name to refer to the charset
395 DESCRIPTION (string) is the description string of the charset.
396 PLIST (property list) may contain any type of information a user
397 want to put and get by functions `put-charset-property' and
398 `get-charset-property' respectively."
399 (vector 0
401 (charset-dimension charset)
402 (charset-chars charset)
407 (charset-iso-final-char charset)
410 (get-charset-property charset :short-name)
411 (get-charset-property charset :short-name)
412 (charset-description charset)
413 (charset-plist charset)))
415 ;; It is better not to use backquote in this file,
416 ;; because that makes a bootstrapping problem
417 ;; if you need to recompile all the Lisp files using interpreted code.
419 (defun charset-id (charset)
420 "Always return 0. This is provided for backward compatibility."
422 (make-obsolete 'charset-id "do not use it." "23.1")
424 (defmacro charset-bytes (charset)
425 "Always return 0. This is provided for backward compatibility."
427 (make-obsolete 'charset-bytes "do not use it." "23.1")
429 (defun get-charset-property (charset propname)
430 "Return the value of CHARSET's PROPNAME property.
431 This is the last value stored with
432 (put-charset-property CHARSET PROPNAME VALUE)."
433 (plist-get (charset-plist charset) propname))
435 (defun put-charset-property (charset propname value)
436 "Set CHARSETS's PROPNAME property to value VALUE.
437 It can be retrieved with `(get-charset-property CHARSET PROPNAME)'."
438 (set-charset-plist charset
439 (plist-put (charset-plist charset) propname value)))
441 (defun charset-description (charset)
442 "Return description string of CHARSET."
443 (plist-get (charset-plist charset) :docstring))
445 (defun charset-dimension (charset)
446 "Return dimension of CHARSET."
447 (plist-get (charset-plist charset) :dimension))
449 (defun charset-chars (charset &optional dimension)
450 "Return number of characters contained in DIMENSION of CHARSET.
451 DIMENSION defaults to the first dimension."
452 (unless dimension (setq dimension 1))
453 (let ((code-space (plist-get (charset-plist charset) :code-space)))
454 (1+ (- (aref code-space (1- (* 2 dimension)))
455 (aref code-space (- (* 2 dimension) 2))))))
457 (defun charset-iso-final-char (charset)
458 "Return ISO-2022 final character of CHARSET.
459 Return -1 if charset isn't an ISO 2022 one."
460 (or (plist-get (charset-plist charset) :iso-final-char)
461 -1))
463 (defmacro charset-short-name (charset)
464 "Return short name of CHARSET."
465 (plist-get (charset-plist charset) :short-name))
467 (defmacro charset-long-name (charset)
468 "Return long name of CHARSET."
469 (plist-get (charset-plist charset) :long-name))
471 (defun charset-list ()
472 "Return list of all charsets ever defined."
473 charset-list)
474 (make-obsolete 'charset-list "use variable `charset-list'." "23.1")
477 ;;; CHARACTER
478 (define-obsolete-function-alias 'char-valid-p 'characterp "23.1")
480 (defun generic-char-p (char)
481 "Always return nil. This is provided for backward compatibility."
482 nil)
483 (make-obsolete 'generic-char-p "generic characters no longer exist." "23.1")
485 (defun make-char-internal (charset-id &optional code1 code2)
486 (let ((charset (aref emacs-mule-charset-table charset-id)))
487 (or charset
488 (error "Invalid Emacs-mule charset ID: %d" charset-id))
489 (make-char charset code1 code2)))
491 ;; Save the ASCII case table in case we need it later. Some locales
492 ;; (such as Turkish) modify the case behavior of ASCII characters,
493 ;; which can interfere with networking code that uses ASCII strings.
495 (defvar ascii-case-table
496 ;; Code copied from copy-case-table to avoid requiring case-table.el
497 (let ((tbl (copy-sequence (standard-case-table)))
498 (up (char-table-extra-slot (standard-case-table) 0)))
499 (if up (set-char-table-extra-slot tbl 0 (copy-sequence up)))
500 (set-char-table-extra-slot tbl 1 nil)
501 (set-char-table-extra-slot tbl 2 nil)
502 tbl)
503 "Case table for the ASCII character set.")
505 ;; Coding system stuff
507 ;; Coding system is a symbol that has been defined by the function
508 ;; `define-coding-system'.
510 (defconst coding-system-iso-2022-flags
511 '(long-form
512 ascii-at-eol
513 ascii-at-cntl
514 7-bit
515 locking-shift
516 single-shift
517 designation
518 revision
519 direction
520 init-at-bol
521 designate-at-bol
522 safe
523 latin-extra
524 composition
525 euc-tw-shift
526 use-roman
527 use-oldjis)
528 "List of symbols that control ISO-2022 encoder/decoder.
530 The value of the `:flags' attribute in the argument of the function
531 `define-coding-system' must be one of them.
533 If `long-form' is specified, use a long designation sequence on
534 encoding for the charsets `japanese-jisx0208-1978', `chinese-gb2312',
535 and `japanese-jisx0208'. The long designation sequence doesn't
536 conform to ISO 2022, but is used by such coding systems as
537 `compound-text'.
539 If `ascii-at-eol' is specified, designate ASCII to g0 at end of line
540 on encoding.
542 If `ascii-at-cntl' is specified, designate ASCII to g0 before control
543 codes and SPC on encoding.
545 If `7-bit' is specified, use 7-bit code only on encoding.
547 If `locking-shift' is specified, decode locking-shift code correctly
548 on decoding, and use locking-shift to invoke a graphic element on
549 encoding.
551 If `single-shift' is specified, decode single-shift code correctly on
552 decoding, and use single-shift to invoke a graphic element on encoding.
554 If `designation' is specified, decode designation code correctly on
555 decoding, and use designation to designate a charset to a graphic
556 element on encoding.
558 If `revision' is specified, produce an escape sequence to specify
559 revision number of a charset on encoding. Such an escape sequence is
560 always correctly decoded on decoding.
562 If `direction' is specified, decode ISO6429's code for specifying
563 direction correctly, and produce the code on encoding.
565 If `init-at-bol' is specified, on encoding, it is assumed that
566 invocation and designation statuses are reset at each beginning of
567 line even if `ascii-at-eol' is not specified; thus no codes for
568 resetting them are produced.
570 If `safe' is specified, on encoding, characters not supported by a
571 coding are replaced with `?'.
573 If `latin-extra' is specified, the code-detection routine assumes that a
574 code specified in `latin-extra-code-table' (which see) is valid.
576 If `composition' is specified, an escape sequence to specify
577 composition sequence is correctly decoded on decoding, and is produced
578 on encoding.
580 If `euc-tw-shift' is specified, the EUC-TW specific shifting code is
581 correctly decoded on decoding, and is produced on encoding.
583 If `use-roman' is specified, JIS0201-1976-Roman is designated instead
584 of ASCII.
586 If `use-oldjis' is specified, JIS0208-1976 is designated instead of
587 JIS0208-1983.")
589 (defun define-coding-system (name docstring &rest props)
590 "Define NAME (a symbol) as a coding system with DOCSTRING and attributes.
591 The remaining arguments must come in pairs ATTRIBUTE VALUE. ATTRIBUTE
592 may be any symbol.
594 The following attributes have special meanings. Those labeled as
595 \"(required)\", should not be omitted.
597 `:mnemonic' (required)
599 VALUE is a character to display on mode line for the coding system.
601 `:coding-type' (required)
603 VALUE must be one of `charset', `utf-8', `utf-16', `iso-2022',
604 `emacs-mule', `shift-jis', `ccl', `raw-text', `undecided'.
606 `:eol-type'
608 VALUE is the EOL (end-of-line) format of the coding system. It must be
609 one of `unix', `dos', `mac'. The symbol `unix' means Unix-like EOL
610 \(i.e. single LF), `dos' means DOS-like EOL \(i.e. sequence of CR LF),
611 and `mac' means MAC-like EOL \(i.e. single CR). If omitted, on
612 decoding by the coding system, Emacs automatically detects the EOL
613 format of the source text.
615 `:charset-list'
617 VALUE must be a list of charsets supported by the coding system. On
618 encoding by the coding system, if a character belongs to multiple
619 charsets in the list, a charset that comes earlier in the list is
620 selected. If `:coding-type' is `iso-2022', VALUE may be `iso-2022',
621 which indicates that the coding system supports all ISO-2022 based
622 charsets. If `:coding-type' is `emacs-mule', VALUE may be
623 `emacs-mule', which indicates that the coding system supports all
624 charsets that have the `:emacs-mule-id' property.
626 `:ascii-compatible-p'
628 If VALUE is non-nil, the coding system decodes all 7-bit bytes into
629 the corresponding ASCII characters, and encodes all ASCII characters
630 back to the corresponding 7-bit bytes. VALUE defaults to nil.
632 `:decode-translation-table'
634 VALUE must be a translation table to use on decoding.
636 `:encode-translation-table'
638 VALUE must be a translation table to use on encoding.
640 `:post-read-conversion'
642 VALUE must be a function to call after some text is inserted and
643 decoded by the coding system itself and before any functions in
644 `after-insert-functions' are called. The arguments to this function
645 are the same as those of a function in `after-insert-file-functions',
646 i.e. LENGTH of the text to be decoded with point at the head of it,
647 and the function should leave point unchanged.
649 `:pre-write-conversion'
651 VALUE must be a function to call after all functions in
652 `write-region-annotate-functions' and `buffer-file-format' are called,
653 and before the text is encoded by the coding system itself. The
654 arguments to this function are the same as those of a function in
655 `write-region-annotate-functions'.
657 `:default-char'
659 VALUE must be a character. On encoding, a character not supported by
660 the coding system is replaced with VALUE.
662 `:for-unibyte'
664 VALUE non-nil means that visiting a file with the coding system
665 results in a unibyte buffer.
667 `:eol-type'
669 VALUE must be `unix', `dos', `mac'. The symbol `unix' means Unix-like
670 EOL (LF), `dos' means DOS-like EOL (CRLF), and `mac' means MAC-like
671 EOL (CR). If omitted, on decoding, the coding system detects EOL
672 format automatically, and on encoding, uses Unix-like EOL.
674 `:mime-charset'
676 VALUE must be a symbol whose name is that of a MIME charset converted
677 to lower case.
679 `:mime-text-unsuitable'
681 VALUE non-nil means the `:mime-charset' property names a charset which
682 is unsuitable for the top-level media type \"text\".
684 `:flags'
686 VALUE must be a list of symbols that control the ISO-2022 converter.
687 Each must be a member of the list `coding-system-iso-2022-flags'
688 \(which see). This attribute has a meaning only when `:coding-type'
689 is `iso-2022'.
691 `:designation'
693 VALUE must be a vector [G0-USAGE G1-USAGE G2-USAGE G3-USAGE].
694 GN-USAGE specifies the usage of graphic register GN as follows.
696 If it is nil, no charset can be designated to GN.
698 If it is a charset, the charset is initially designated to GN, and
699 never used by the other charsets.
701 If it is a list, the elements must be charsets, nil, 94, or 96. GN
702 can be used by all the listed charsets. If the list contains 94, any
703 iso-2022 charset whose code-space ranges are 94 long can be designated
704 to GN. If the list contains 96, any charsets whose whose ranges are
705 96 long can be designated to GN. If the first element is a charset,
706 that charset is initially designated to GN.
708 This attribute has a meaning only when `:coding-type' is `iso-2022'.
710 `:bom'
712 This attributes specifies whether the coding system uses a `byte order
713 mark'. VALUE must nil, t, or cons of coding systems whose
714 `:coding-type' is `utf-16'.
716 If the value is nil, on decoding, don't treat the first two-byte as
717 BOM, and on encoding, don't produce BOM bytes.
719 If the value is t, on decoding, skip the first two-byte as BOM, and on
720 encoding, produce BOM bytes accoding to the value of `:endian'.
722 If the value is cons, on decoding, check the first two-byte. If theyq
723 are 0xFE 0xFF, use the car part coding system of the value. If they
724 are 0xFF 0xFE, use the car part coding system of the value.
725 Otherwise, treat them as bytes for a normal character. On encoding,
726 produce BOM bytes accoding to the value of `:endian'.
728 This attribute has a meaning only when `:coding-type' is `utf-16'.
730 `:endian'
732 VALUE must be `big' or `little' specifying big-endian and
733 little-endian respectively. The default value is `big'.
735 This attribute has a meaning only when `:coding-type' is `utf-16'.
737 `:ccl-decoder'
739 VALUE is a symbol representing the registered CCL program used for
740 decoding. This attribute has a meaning only when `:coding-type' is
741 `ccl'.
743 `:ccl-encoder'
745 VALUE is a symbol representing the registered CCL program used for
746 encoding. This attribute has a meaning only when `:coding-type' is
747 `ccl'."
748 (let* ((common-attrs (mapcar 'list
749 '(:mnemonic
750 :coding-type
751 :charset-list
752 :ascii-compatible-p
753 :decode-translation-table
754 :encode-translation-table
755 :post-read-conversion
756 :pre-write-conversion
757 :default-char
758 :for-unibyte
759 :plist
760 :eol-type)))
761 (coding-type (plist-get props :coding-type))
762 (spec-attrs (mapcar 'list
763 (cond ((eq coding-type 'iso-2022)
764 '(:initial
765 :reg-usage
766 :request
767 :flags))
768 ((eq coding-type 'utf-8)
769 '(:bom))
770 ((eq coding-type 'utf-16)
771 '(:bom
772 :endian))
773 ((eq coding-type 'ccl)
774 '(:ccl-decoder
775 :ccl-encoder
776 :valids))))))
778 (dolist (slot common-attrs)
779 (setcdr slot (plist-get props (car slot))))
781 (dolist (slot spec-attrs)
782 (setcdr slot (plist-get props (car slot))))
784 (if (eq coding-type 'iso-2022)
785 (let ((designation (plist-get props :designation))
786 (flags (plist-get props :flags))
787 (initial (make-vector 4 nil))
788 (reg-usage (cons 4 4))
789 request elt)
790 (dotimes (i 4)
791 (setq elt (aref designation i))
792 (cond ((charsetp elt)
793 (aset initial i elt)
794 (setq request (cons (cons elt i) request)))
795 ((consp elt)
796 (aset initial i (car elt))
797 (if (charsetp (car elt))
798 (setq request (cons (cons (car elt) i) request)))
799 (dolist (e (cdr elt))
800 (cond ((charsetp e)
801 (setq request (cons (cons e i) request)))
802 ((eq e 94)
803 (setcar reg-usage i))
804 ((eq e 96)
805 (setcdr reg-usage i))
806 ((eq e t)
807 (setcar reg-usage i)
808 (setcdr reg-usage i)))))))
809 (setcdr (assq :initial spec-attrs) initial)
810 (setcdr (assq :reg-usage spec-attrs) reg-usage)
811 (setcdr (assq :request spec-attrs) request)
813 ;; Change :flags value from a list to a bit-mask.
814 (let ((bits 0)
815 (i 0))
816 (dolist (elt coding-system-iso-2022-flags)
817 (if (memq elt flags)
818 (setq bits (logior bits (lsh 1 i))))
819 (setq i (1+ i)))
820 (setcdr (assq :flags spec-attrs) bits))))
822 ;; Add :name and :docstring properties to PROPS.
823 (setq props
824 (cons :name (cons name (cons :docstring (cons (purecopy docstring)
825 props)))))
826 (setcdr (assq :plist common-attrs) props)
827 (apply 'define-coding-system-internal
828 name (mapcar 'cdr (append common-attrs spec-attrs)))))
830 (defun coding-system-doc-string (coding-system)
831 "Return the documentation string for CODING-SYSTEM."
832 (plist-get (coding-system-plist coding-system) :docstring))
834 (defun coding-system-mnemonic (coding-system)
835 "Return the mnemonic character of CODING-SYSTEM.
836 The mnemonic character of a coding system is used in mode line to
837 indicate the coding system. If CODING-SYSTEM is nil, return ?=."
838 (plist-get (coding-system-plist coding-system) :mnemonic))
840 (defun coding-system-type (coding-system)
841 "Return the coding type of CODING-SYSTEM.
842 A coding type is a symbol indicating the encoding method of CODING-SYSTEM.
843 See the function `define-coding-system' for more detail."
844 (plist-get (coding-system-plist coding-system) :coding-type))
846 (defun coding-system-charset-list (coding-system)
847 "Return list of charsets supported by CODING-SYSTEM.
848 If CODING-SYSTEM supports all ISO-2022 charsets, return `iso-2022'.
849 If CODING-SYSTEM supports all emacs-mule charsets, return `emacs-mule'."
850 (plist-get (coding-system-plist coding-system) :charset-list))
852 (defun coding-system-category (coding-system)
853 "Return a category symbol of CODING-SYSTEM."
854 (plist-get (coding-system-plist coding-system) :category))
856 (defun coding-system-get (coding-system prop)
857 "Extract a value from CODING-SYSTEM's property list for property PROP.
858 For compatibility with Emacs 20/21, this accepts old-style symbols
859 like `mime-charset' as well as the current style like `:mime-charset'."
860 (or (plist-get (coding-system-plist coding-system) prop)
861 (if (not (keywordp prop))
862 ;; For backward compatiblity.
863 (if (eq prop 'ascii-incompatible)
864 (not (plist-get (coding-system-plist coding-system)
865 :ascii-compatible-p))
866 (plist-get (coding-system-plist coding-system)
867 (intern (concat ":" (symbol-name prop))))))))
869 (defun coding-system-eol-type-mnemonic (coding-system)
870 "Return the string indicating end-of-line format of CODING-SYSTEM."
871 (let* ((eol-type (coding-system-eol-type coding-system))
872 (val (cond ((eq eol-type 0) eol-mnemonic-unix)
873 ((eq eol-type 1) eol-mnemonic-dos)
874 ((eq eol-type 2) eol-mnemonic-mac)
875 (t eol-mnemonic-undecided))))
876 (if (stringp val)
878 (char-to-string val))))
880 (defun coding-system-lessp (x y)
881 (cond ((eq x 'no-conversion) t)
882 ((eq y 'no-conversion) nil)
883 ((eq x 'emacs-mule) t)
884 ((eq y 'emacs-mule) nil)
885 ((eq x 'undecided) t)
886 ((eq y 'undecided) nil)
887 (t (let ((c1 (coding-system-mnemonic x))
888 (c2 (coding-system-mnemonic y)))
889 (or (< (downcase c1) (downcase c2))
890 (and (not (> (downcase c1) (downcase c2)))
891 (< c1 c2)))))))
893 (defun coding-system-equal (coding-system-1 coding-system-2)
894 "Return t if and only if CODING-SYSTEM-1 and CODING-SYSTEM-2 are identical.
895 Two coding systems are identical if both symbols are equal
896 or one is an alias of the other."
897 (or (eq coding-system-1 coding-system-2)
898 (and (equal (coding-system-plist coding-system-1)
899 (coding-system-plist coding-system-2))
900 (let ((eol-type-1 (coding-system-eol-type coding-system-1))
901 (eol-type-2 (coding-system-eol-type coding-system-2)))
902 (or (eq eol-type-1 eol-type-2)
903 (and (vectorp eol-type-1) (vectorp eol-type-2)))))))
905 (defun add-to-coding-system-list (coding-system)
906 "Add CODING-SYSTEM to `coding-system-list' while keeping it sorted."
907 (if (or (null coding-system-list)
908 (coding-system-lessp coding-system (car coding-system-list)))
909 (setq coding-system-list (cons coding-system coding-system-list))
910 (let ((len (length coding-system-list))
911 mid (tem coding-system-list))
912 (while (> len 1)
913 (setq mid (nthcdr (/ len 2) tem))
914 (if (coding-system-lessp (car mid) coding-system)
915 (setq tem mid
916 len (- len (/ len 2)))
917 (setq len (/ len 2))))
918 (setcdr tem (cons coding-system (cdr tem))))))
920 (defun coding-system-list (&optional base-only)
921 "Return a list of all existing non-subsidiary coding systems.
922 If optional arg BASE-ONLY is non-nil, only base coding systems are
923 listed. The value doesn't include subsidiary coding systems which are
924 made from bases and aliases automatically for various end-of-line
925 formats (e.g. iso-latin-1-unix, koi8-r-dos)."
926 (let ((codings nil))
927 (dolist (coding coding-system-list)
928 (if (eq (coding-system-base coding) coding)
929 (if base-only
930 (setq codings (cons coding codings))
931 (dolist (alias (coding-system-aliases coding))
932 (setq codings (cons alias codings))))))
933 codings))
935 (defconst char-coding-system-table nil
936 "It exists just for backward compatibility, and the value is always nil.")
937 (make-obsolete-variable 'char-coding-system-table nil "23.1")
939 (defun transform-make-coding-system-args (name type &optional doc-string props)
940 "For internal use only.
941 Transform XEmacs style args for `make-coding-system' to Emacs style.
942 Value is a list of transformed arguments."
943 (let ((mnemonic (string-to-char (or (plist-get props 'mnemonic) "?")))
944 (eol-type (plist-get props 'eol-type))
945 properties tmp)
946 (cond
947 ((eq eol-type 'lf) (setq eol-type 'unix))
948 ((eq eol-type 'crlf) (setq eol-type 'dos))
949 ((eq eol-type 'cr) (setq eol-type 'mac)))
950 (if (setq tmp (plist-get props 'post-read-conversion))
951 (setq properties (plist-put properties 'post-read-conversion tmp)))
952 (if (setq tmp (plist-get props 'pre-write-conversion))
953 (setq properties (plist-put properties 'pre-write-conversion tmp)))
954 (cond
955 ((eq type 'shift-jis)
956 `(,name 1 ,mnemonic ,doc-string () ,properties ,eol-type))
957 ((eq type 'iso2022) ; This is not perfect.
958 (if (plist-get props 'escape-quoted)
959 (error "escape-quoted is not supported: %S"
960 `(,name ,type ,doc-string ,props)))
961 (let ((g0 (plist-get props 'charset-g0))
962 (g1 (plist-get props 'charset-g1))
963 (g2 (plist-get props 'charset-g2))
964 (g3 (plist-get props 'charset-g3))
965 (use-roman
966 (and
967 (eq (cadr (assoc 'latin-jisx0201
968 (plist-get props 'input-charset-conversion)))
969 'ascii)
970 (eq (cadr (assoc 'ascii
971 (plist-get props 'output-charset-conversion)))
972 'latin-jisx0201)))
973 (use-oldjis
974 (and
975 (eq (cadr (assoc 'japanese-jisx0208-1978
976 (plist-get props 'input-charset-conversion)))
977 'japanese-jisx0208)
978 (eq (cadr (assoc 'japanese-jisx0208
979 (plist-get props 'output-charset-conversion)))
980 'japanese-jisx0208-1978))))
981 (if (charsetp g0)
982 (if (plist-get props 'force-g0-on-output)
983 (setq g0 `(nil ,g0))
984 (setq g0 `(,g0 t))))
985 (if (charsetp g1)
986 (if (plist-get props 'force-g1-on-output)
987 (setq g1 `(nil ,g1))
988 (setq g1 `(,g1 t))))
989 (if (charsetp g2)
990 (if (plist-get props 'force-g2-on-output)
991 (setq g2 `(nil ,g2))
992 (setq g2 `(,g2 t))))
993 (if (charsetp g3)
994 (if (plist-get props 'force-g3-on-output)
995 (setq g3 `(nil ,g3))
996 (setq g3 `(,g3 t))))
997 `(,name 2 ,mnemonic ,doc-string
998 (,g0 ,g1 ,g2 ,g3
999 ,(plist-get props 'short)
1000 ,(not (plist-get props 'no-ascii-eol))
1001 ,(not (plist-get props 'no-ascii-cntl))
1002 ,(plist-get props 'seven)
1004 ,(not (plist-get props 'lock-shift))
1005 ,use-roman
1006 ,use-oldjis
1007 ,(plist-get props 'no-iso6429)
1008 nil nil nil nil)
1009 ,properties ,eol-type)))
1010 ((eq type 'big5)
1011 `(,name 3 ,mnemonic ,doc-string () ,properties ,eol-type))
1012 ((eq type 'ccl)
1013 `(,name 4 ,mnemonic ,doc-string
1014 (,(plist-get props 'decode) . ,(plist-get props 'encode))
1015 ,properties ,eol-type))
1017 (error "unsupported XEmacs style make-coding-style arguments: %S"
1018 `(,name ,type ,doc-string ,props))))))
1020 (defun make-coding-system (coding-system type mnemonic doc-string
1021 &optional
1022 flags
1023 properties
1024 eol-type)
1025 "Define a new coding system CODING-SYSTEM (symbol).
1026 This function is provided for backward compatibility."
1027 ;; For compatiblity with XEmacs, we check the type of TYPE. If it
1028 ;; is a symbol, perhaps, this function is called with XEmacs-style
1029 ;; arguments. Here, try to transform that kind of arguments to
1030 ;; Emacs style.
1031 (if (symbolp type)
1032 (let ((args (transform-make-coding-system-args coding-system type
1033 mnemonic doc-string)))
1034 (setq coding-system (car args)
1035 type (nth 1 args)
1036 mnemonic (nth 2 args)
1037 doc-string (nth 3 args)
1038 flags (nth 4 args)
1039 properties (nth 5 args)
1040 eol-type (nth 6 args))))
1042 (setq type
1043 (cond ((eq type 0) 'emacs-mule)
1044 ((eq type 1) 'shift-jis)
1045 ((eq type 2) 'iso2022)
1046 ((eq type 3) 'big5)
1047 ((eq type 4) 'ccl)
1048 ((eq type 5) 'raw-text)
1050 (error "Invalid coding system type: %s" type))))
1052 (setq properties
1053 (let ((plist nil) key)
1054 (dolist (elt properties)
1055 (setq key (car elt))
1056 (cond ((eq key 'post-read-conversion)
1057 (setq key :post-read-conversion))
1058 ((eq key 'pre-write-conversion)
1059 (setq key :pre-write-conversion))
1060 ((eq key 'translation-table-for-decode)
1061 (setq key :decode-translation-table))
1062 ((eq key 'translation-table-for-encode)
1063 (setq key :encode-translation-table))
1064 ((eq key 'safe-charsets)
1065 (setq key :charset-list))
1066 ((eq key 'mime-charset)
1067 (setq key :mime-charset))
1068 ((eq key 'valid-codes)
1069 (setq key :valids)))
1070 (setq plist (plist-put plist key (cdr elt))))
1071 plist))
1072 (setq properties (plist-put properties :mnemonic mnemonic))
1073 (plist-put properties :coding-type type)
1074 (cond ((eq eol-type 0) (setq eol-type 'unix))
1075 ((eq eol-type 1) (setq eol-type 'dos))
1076 ((eq eol-type 2) (setq eol-type 'mac))
1077 ((vectorp eol-type) (setq eol-type nil)))
1078 (plist-put properties :eol-type eol-type)
1080 (cond
1081 ((eq type 'iso2022)
1082 (plist-put properties :flags
1083 (list (and (or (consp (nth 0 flags))
1084 (consp (nth 1 flags))
1085 (consp (nth 2 flags))
1086 (consp (nth 3 flags))) 'designation)
1087 (or (nth 4 flags) 'long-form)
1088 (and (nth 5 flags) 'ascii-at-eol)
1089 (and (nth 6 flags) 'ascii-at-cntl)
1090 (and (nth 7 flags) '7-bit)
1091 (and (nth 8 flags) 'locking-shift)
1092 (and (nth 9 flags) 'single-shift)
1093 (and (nth 10 flags) 'use-roman)
1094 (and (nth 11 flags) 'use-oldjis)
1095 (or (nth 12 flags) 'direction)
1096 (and (nth 13 flags) 'init-at-bol)
1097 (and (nth 14 flags) 'designate-at-bol)
1098 (and (nth 15 flags) 'safe)
1099 (and (nth 16 flags) 'latin-extra)))
1100 (plist-put properties :designation
1101 (let ((vec (make-vector 4 nil)))
1102 (dotimes (i 4)
1103 (let ((spec (nth i flags)))
1104 (if (eq spec t)
1105 (aset vec i '(94 96))
1106 (if (consp spec)
1107 (progn
1108 (if (memq t spec)
1109 (setq spec (append (delq t spec) '(94 96))))
1110 (aset vec i spec))))))
1111 vec)))
1113 ((eq type 'ccl)
1114 (plist-put properties :ccl-decoder (car flags))
1115 (plist-put properties :ccl-encoder (cdr flags))))
1117 (apply 'define-coding-system coding-system doc-string properties))
1119 (make-obsolete 'make-coding-system 'define-coding-system "23.1")
1121 (defun merge-coding-systems (first second)
1122 "Fill in any unspecified aspects of coding system FIRST from SECOND.
1123 Return the resulting coding system."
1124 (let ((base (coding-system-base second))
1125 (eol (coding-system-eol-type second)))
1126 ;; If FIRST doesn't specify text conversion, merge with that of SECOND.
1127 (if (eq (coding-system-base first) 'undecided)
1128 (setq first (coding-system-change-text-conversion first base)))
1129 ;; If FIRST doesn't specify eol conversion, merge with that of SECOND.
1130 (if (and (vectorp (coding-system-eol-type first))
1131 (numberp eol) (>= eol 0) (<= eol 2))
1132 (setq first (coding-system-change-eol-conversion
1133 first eol)))
1134 first))
1136 (defun autoload-coding-system (symbol form)
1137 "Define SYMBOL as a coding-system that is defined on demand.
1139 FORM is a form to evaluate to define the coding-system."
1140 (put symbol 'coding-system-define-form form)
1141 (setq coding-system-alist (cons (list (symbol-name symbol))
1142 coding-system-alist))
1143 (dolist (elt '("-unix" "-dos" "-mac"))
1144 (let ((name (concat (symbol-name symbol) elt)))
1145 (put (intern name) 'coding-system-define-form form)
1146 (setq coding-system-alist (cons (list name) coding-system-alist)))))
1148 (defun set-buffer-file-coding-system (coding-system &optional force nomodify)
1149 "Set the file coding-system of the current buffer to CODING-SYSTEM.
1150 This means that when you save the buffer, it will be converted
1151 according to CODING-SYSTEM. For a list of possible values of
1152 CODING-SYSTEM, use \\[list-coding-systems].
1154 If CODING-SYSTEM leaves the text conversion unspecified, or if it leaves
1155 the end-of-line conversion unspecified, FORCE controls what to do.
1156 If FORCE is nil, get the unspecified aspect (or aspects) from the buffer's
1157 previous `buffer-file-coding-system' value (if it is specified there).
1158 Otherwise, leave it unspecified.
1160 This marks the buffer modified so that the succeeding \\[save-buffer]
1161 surely saves the buffer with CODING-SYSTEM. From a program, if you
1162 don't want to mark the buffer modified, specify t for NOMODIFY.
1163 If you know exactly what coding system you want to use,
1164 just set the variable `buffer-file-coding-system' directly."
1165 (interactive "zCoding system for saving file (default nil): \nP")
1166 (check-coding-system coding-system)
1167 (if (and coding-system buffer-file-coding-system (null force))
1168 (setq coding-system
1169 (merge-coding-systems coding-system buffer-file-coding-system)))
1170 (setq buffer-file-coding-system coding-system)
1171 ;; This is in case of an explicit call. Normally, `normal-mode' and
1172 ;; `set-buffer-major-mode-hook' take care of setting the table.
1173 (if (fboundp 'ucs-set-table-for-input) ; don't lose when building
1174 (ucs-set-table-for-input))
1175 (unless nomodify
1176 (set-buffer-modified-p t))
1177 (force-mode-line-update))
1179 (defun revert-buffer-with-coding-system (coding-system &optional force)
1180 "Visit the current buffer's file again using coding system CODING-SYSTEM.
1181 For a list of possible values of CODING-SYSTEM, use \\[list-coding-systems].
1183 If CODING-SYSTEM leaves the text conversion unspecified, or if it leaves
1184 the end-of-line conversion unspecified, FORCE controls what to do.
1185 If FORCE is nil, get the unspecified aspect (or aspects) from the buffer's
1186 previous `buffer-file-coding-system' value (if it is specified there).
1187 Otherwise, determine it from the file contents as usual for visiting a file."
1188 (interactive "zCoding system for visited file (default nil): \nP")
1189 (check-coding-system coding-system)
1190 (if (and coding-system buffer-file-coding-system (null force))
1191 (setq coding-system
1192 (merge-coding-systems coding-system buffer-file-coding-system)))
1193 (let ((coding-system-for-read coding-system))
1194 (revert-buffer)))
1196 (defun set-file-name-coding-system (coding-system)
1197 "Set coding system for decoding and encoding file names to CODING-SYSTEM.
1198 It actually just set the variable `file-name-coding-system' (which see)
1199 to CODING-SYSTEM."
1200 (interactive "zCoding system for file names (default nil): ")
1201 (check-coding-system coding-system)
1202 (if (and coding-system
1203 (not (coding-system-get coding-system :ascii-compatible-p))
1204 (not (coding-system-get coding-system :suitable-for-file-name)))
1205 (error "%s is not suitable for file names" coding-system))
1206 (setq file-name-coding-system coding-system))
1208 (defvar default-terminal-coding-system nil
1209 "Default value for the terminal coding system.
1210 This is normally set according to the selected language environment.
1211 See also the command `set-terminal-coding-system'.")
1213 (defun set-terminal-coding-system (coding-system &optional display)
1214 "Set coding system of terminal output to CODING-SYSTEM.
1215 All text output to DISPLAY will be encoded
1216 with the specified coding system.
1218 For a list of possible values of CODING-SYSTEM, use \\[list-coding-systems].
1219 The default is determined by the selected language environment
1220 or by the previous use of this command.
1222 DISPLAY may be a display id, a frame, or nil for the selected frame's display.
1223 The setting has no effect on graphical displays."
1224 (interactive
1225 (list (let ((default (if (and (not (terminal-coding-system))
1226 default-terminal-coding-system)
1227 default-terminal-coding-system)))
1228 (read-coding-system
1229 (format "Coding system for terminal display (default %s): "
1230 default)
1231 default))))
1232 (if (and (not coding-system)
1233 (not (terminal-coding-system)))
1234 (setq coding-system default-terminal-coding-system))
1235 (if coding-system
1236 (setq default-terminal-coding-system coding-system))
1237 (set-terminal-coding-system-internal coding-system display)
1238 (redraw-frame (selected-frame)))
1240 (defvar default-keyboard-coding-system nil
1241 "Default value of the keyboard coding system.
1242 This is normally set according to the selected language environment.
1243 See also the command `set-keyboard-coding-system'.")
1245 (defun set-keyboard-coding-system (coding-system &optional display)
1246 "Set coding system for keyboard input on DISPLAY to CODING-SYSTEM.
1247 In addition, this command calls `encoded-kbd-setup-display' to set up the
1248 translation of keyboard input events to the specified coding system.
1250 For a list of possible values of CODING-SYSTEM, use \\[list-coding-systems].
1251 The default is determined by the selected language environment
1252 or by the previous use of this command.
1254 DISPLAY may be a display id, a frame, or nil for the selected frame's display.
1255 The setting has no effect on graphical displays."
1256 (interactive
1257 (list (let ((default (if (and (not (keyboard-coding-system))
1258 default-keyboard-coding-system)
1259 default-keyboard-coding-system)))
1260 (read-coding-system
1261 (format "Coding system for keyboard input (default %s): "
1262 default)
1263 default))))
1264 (if (and (not coding-system)
1265 (not (keyboard-coding-system)))
1266 (setq coding-system default-keyboard-coding-system))
1267 (if coding-system
1268 (setq default-keyboard-coding-system coding-system))
1269 (if (and coding-system
1270 (not (coding-system-get coding-system :ascii-compatible-p))
1271 (not (coding-system-get coding-system :suitable-for-keyboard)))
1272 (error "%s is not suitable for keyboard" coding-system))
1273 (set-keyboard-coding-system-internal coding-system display)
1274 (setq keyboard-coding-system coding-system)
1275 (encoded-kbd-setup-display display))
1277 (defcustom keyboard-coding-system nil
1278 "Specify coding system for keyboard input.
1279 If you set this on a terminal which can't distinguish Meta keys from
1280 8-bit characters, you will have to use ESC to type Meta characters.
1281 See Info node `Terminal Coding' and Info node `Unibyte Mode'.
1283 On non-windowing terminals, this is set from the locale by default.
1285 Setting this variable directly does not take effect;
1286 use either \\[customize] or \\[set-keyboard-coding-system]."
1287 :type '(coding-system :tag "Coding system")
1288 :link '(info-link "(emacs)Terminal Coding")
1289 :link '(info-link "(emacs)Unibyte Mode")
1290 :set (lambda (symbol value)
1291 ;; Don't load encoded-kb unnecessarily.
1292 (if (or value (boundp 'encoded-kbd-setup-display))
1293 (set-keyboard-coding-system value)
1294 (set-default 'keyboard-coding-system nil))) ; must initialize
1295 :version "22.1"
1296 :group 'keyboard
1297 :group 'mule)
1299 (defun set-buffer-process-coding-system (decoding encoding)
1300 "Set coding systems for the process associated with the current buffer.
1301 DECODING is the coding system to be used to decode input from the process,
1302 ENCODING is the coding system to be used to encode output to the process.
1304 For a list of possible coding systems, use \\[list-coding-systems]."
1305 (interactive
1306 "zCoding-system for output from the process: \nzCoding-system for input to the process: ")
1307 (let ((proc (get-buffer-process (current-buffer))))
1308 (if (null proc)
1309 (error "No process")
1310 (check-coding-system decoding)
1311 (check-coding-system encoding)
1312 (set-process-coding-system proc decoding encoding)))
1313 (force-mode-line-update))
1315 (defalias 'set-clipboard-coding-system 'set-selection-coding-system)
1317 (defun set-selection-coding-system (coding-system)
1318 "Make CODING-SYSTEM used for communicating with other X clients.
1319 When sending or receiving text via cut_buffer, selection, and clipboard,
1320 the text is encoded or decoded by CODING-SYSTEM."
1321 (interactive "zCoding system for X selection: ")
1322 (check-coding-system coding-system)
1323 (setq selection-coding-system coding-system))
1325 ;; Coding system lastly specified by the command
1326 ;; set-next-selection-coding-system.
1327 (defvar last-next-selection-coding-system nil)
1329 (defun set-next-selection-coding-system (coding-system)
1330 "Use CODING-SYSTEM for next communication with other window system clients.
1331 This setting is effective for the next communication only."
1332 (interactive
1333 (list (read-coding-system
1334 (if last-next-selection-coding-system
1335 (format "Coding system for the next selection (default %S): "
1336 last-next-selection-coding-system)
1337 "Coding system for the next selection: ")
1338 last-next-selection-coding-system)))
1339 (if coding-system
1340 (setq last-next-selection-coding-system coding-system)
1341 (setq coding-system last-next-selection-coding-system))
1342 (check-coding-system coding-system)
1344 (setq next-selection-coding-system coding-system))
1346 (defun set-coding-priority (arg)
1347 "Set priority of coding categories according to ARG.
1348 ARG is a list of coding categories ordered by priority.
1350 This function is provided for backward compatibility."
1351 (apply 'set-coding-system-priority
1352 (mapcar #'(lambda (x) (symbol-value x)) arg)))
1353 (make-obsolete 'set-coding-priority 'set-coding-system-priority "23.1")
1355 ;;; X selections
1357 (defvar ctext-non-standard-encodings-alist
1358 '(("big5-0" big5 2 big5)
1359 ("ISO8859-14" iso-8859-14 1 latin-iso8859-14)
1360 ("ISO8859-15" iso-8859-15 1 latin-iso8859-15)
1361 ("gbk-0" gbk 2 chinese-gbk))
1362 "Alist of non-standard encoding names vs the corresponding usages in CTEXT.
1364 It controls how extended segments of a compound text are handled
1365 by the coding system `compound-text-with-extensions'.
1367 Each element has the form (ENCODING-NAME CODING-SYSTEM N-OCTET CHARSET).
1369 ENCODING-NAME is an encoding name of an \"extended segment\".
1371 CODING-SYSTEM is the coding-system to encode (or decode) the
1372 characters into (or from) the extended segment.
1374 N-OCTET is the number of octets (bytes) that encodes a character
1375 in the segment. It can be 0 (meaning the number of octets per
1376 character is variable), 1, 2, 3, or 4.
1378 CHARSET is a character set containing characters that are encoded
1379 in the segment. It can be a list of character sets.
1381 On decoding CTEXT, all encoding names listed here are recognized.
1383 On encoding CTEXT, encoding names in the variable
1384 `ctext-non-standard-encodings' (which see) and in the information
1385 listed for the current language environment under the key
1386 `ctext-non-standard-encodings' are used.")
1388 (defvar ctext-non-standard-encodings nil
1389 "List of non-standard encoding names used in extended segments of CTEXT.
1390 Each element must be one of the names listed in the variable
1391 `ctext-non-standard-encodings-alist' (which see).")
1393 (defvar ctext-non-standard-encodings-regexp
1394 (string-to-multibyte
1395 (concat
1396 ;; For non-standard encodings.
1397 "\\(\e%/[0-4][\200-\377][\200-\377]\\([^\002]+\\)\002\\)"
1398 "\\|"
1399 ;; For UTF-8 encoding.
1400 "\\(\e%G[^\e]*\e%@\\)")))
1402 ;; Functions to support "Non-Standard Character Set Encodings" defined
1403 ;; by the COMPOUND-TEXT spec. They also support "The UTF-8 encoding"
1404 ;; described in the section 7 of the documentation of COMPOUND-TEXT
1405 ;; distributed with XFree86.
1407 (defun ctext-post-read-conversion (len)
1408 "Decode LEN characters encoded as Compound Text with Extended Segments."
1409 ;; We don't need the following because it is expected that this
1410 ;; function is mainly used for decoding X selection which is not
1411 ;; that big data.
1412 ;;(buffer-disable-undo) ; minimize consing due to insertions and deletions
1413 (save-match-data
1414 (save-restriction
1415 (narrow-to-region (point) (+ (point) len))
1416 (let ((case-fold-search nil)
1417 last-coding-system-used
1418 pos bytes)
1419 (decode-coding-region (point-min) (point-max) 'ctext)
1420 (while (re-search-forward ctext-non-standard-encodings-regexp
1421 nil 'move)
1422 (setq pos (match-beginning 0))
1423 (if (match-beginning 1)
1424 ;; ESC % / [0-4] M L --ENCODING-NAME-- \002 --BYTES--
1425 (let* ((M (multibyte-char-to-unibyte (char-after (+ pos 4))))
1426 (L (multibyte-char-to-unibyte (char-after (+ pos 5))))
1427 (encoding (match-string 2))
1428 (encoding-info (assoc-string
1429 encoding
1430 ctext-non-standard-encodings-alist t))
1431 (coding (if encoding-info
1432 (nth 1 encoding-info)
1433 (setq encoding (intern (downcase encoding)))
1434 (and (coding-system-p encoding)
1435 encoding))))
1436 (setq bytes (- (+ (* (- M 128) 128) (- L 128))
1437 (- (point) (+ pos 6))))
1438 (when coding
1439 (delete-region pos (point))
1440 (forward-char bytes)
1441 (decode-coding-region (- (point) bytes) (point) coding)))
1442 ;; ESC % G --UTF-8-BYTES-- ESC % @
1443 (delete-char -3)
1444 (delete-region pos (+ pos 3))
1445 (decode-coding-region pos (point) 'utf-8))))
1446 (goto-char (point-min))
1447 (- (point-max) (point)))))
1449 ;; Return an alist of CHARSET vs CTEXT-USAGE-INFO generated from
1450 ;; `ctext-non-standard-encodings' and a list specified by the key
1451 ;; `ctext-non-standard-encodings' for the currrent language
1452 ;; environment. CTEXT-USAGE-INFO is one of the element of
1453 ;; `ctext-non-standard-encodings-alist' or nil. In the former case, a
1454 ;; character in CHARSET is encoded using extended segment. In the
1455 ;; latter case, a character in CHARSET is encoded using normal ISO2022
1456 ;; designation sequence. If a character is not in any of CHARSETs, it
1457 ;; is encoded using UTF-8 encoding extention.
1459 (defun ctext-non-standard-encodings-table ()
1460 (let (table)
1461 ;; Setup charsets specified by the key
1462 ;; `ctext-non-standard-encodings' for the current language
1463 ;; environment and in `ctext-non-standard-encodings'.
1464 (dolist (encoding (append
1465 (get-language-info current-language-environment
1466 'ctext-non-standard-encodings)
1467 ctext-non-standard-encodings))
1468 (let* ((slot (assoc encoding ctext-non-standard-encodings-alist))
1469 (charset (nth 3 slot)))
1470 (if (charsetp charset)
1471 (push (cons charset slot) table)
1472 (dolist (cs charset)
1473 (push (cons cs slot) table)))))
1475 ;; Next prepend charsets for ISO2022 designation sequence.
1476 (dolist (charset charset-list)
1477 (let ((final (plist-get (charset-plist charset) :iso-final-char)))
1478 (if (and (integerp final)
1479 (>= final #x40) (<= final #x7e)
1480 ;; Exclude ascii and chinese-cns11643-X.
1481 (not (eq charset 'ascii))
1482 (not (string-match "cns11643" (symbol-name charset))))
1483 (push (cons charset nil) table))))
1485 ;; Returned reversed list so that the charsets specified by the
1486 ;; key `ctext-non-standard-encodings' for the current language
1487 ;; have the highest priority.
1488 (nreverse table)))
1490 (defun ctext-pre-write-conversion (from to)
1491 "Encode characters between FROM and TO as Compound Text w/Extended Segments.
1493 If FROM is a string, or if the current buffer is not the one set up for us
1494 by `encode-coding-string', generate a new temp buffer, insert the text,
1495 and convert it in the temporary buffer. Otherwise, convert in-place."
1496 (save-match-data
1497 ;; Setup a working buffer if necessary.
1498 (when (stringp from)
1499 (set-buffer (generate-new-buffer " *temp"))
1500 (set-buffer-multibyte (multibyte-string-p from))
1501 (insert from))
1503 ;; Now we can encode the whole buffer.
1504 (let ((encoding-table (ctext-non-standard-encodings-table))
1505 last-coding-system-used
1506 last-pos last-encoding-info
1507 encoding-info end-pos ch)
1508 (goto-char (setq last-pos (point-min)))
1509 (setq end-pos (point-marker))
1510 (while (re-search-forward "[^\000-\177]+" nil t)
1511 ;; Found a sequence of non-ASCII characters.
1512 (setq last-pos (match-beginning 0)
1513 ch (char-after last-pos)
1514 last-encoding-info (catch 'tag
1515 (dolist (elt encoding-table)
1516 (if (encode-char ch (car elt))
1517 (throw 'tag (cdr elt))))
1518 'utf-8))
1519 (set-marker end-pos (match-end 0))
1520 (goto-char (1+ last-pos))
1521 (catch 'tag
1522 (while t
1523 (setq encoding-info
1524 (if (< (point) end-pos)
1525 (catch 'tag
1526 (setq ch (following-char))
1527 (dolist (elt encoding-table)
1528 (if (encode-char ch (car elt))
1529 (throw 'tag (cdr elt))))
1530 'utf-8)))
1531 (unless (eq last-encoding-info encoding-info)
1532 (cond ((consp last-encoding-info)
1533 ;; Encode the previous range using an extended
1534 ;; segment.
1535 (let ((encoding-name (car last-encoding-info))
1536 (coding-system (nth 1 last-encoding-info))
1537 (noctets (nth 2 last-encoding-info))
1538 len)
1539 (encode-coding-region last-pos (point) coding-system)
1540 (setq len (+ (length encoding-name) 1
1541 (- (point) last-pos)))
1542 ;; According to the spec of CTEXT, it is not
1543 ;; necessary to produce this extra designation
1544 ;; sequence, but some buggy application
1545 ;; (e.g. crxvt-gb) requires it.
1546 (insert "\e(B")
1547 (save-excursion
1548 (goto-char last-pos)
1549 (insert (format "\e%%/%d" noctets))
1550 (insert-byte (+ (/ len 128) 128) 1)
1551 (insert-byte (+ (% len 128) 128) 1)
1552 (insert encoding-name)
1553 (insert 2))))
1554 ((eq last-encoding-info 'utf-8)
1555 ;; Encode the previous range using UTF-8 encoding
1556 ;; extention.
1557 (encode-coding-region last-pos (point) 'mule-utf-8)
1558 (save-excursion
1559 (goto-char last-pos)
1560 (insert "\e%G"))
1561 (insert "\e%@")))
1562 (setq last-pos (point)
1563 last-encoding-info encoding-info))
1564 (if (< (point) end-pos)
1565 (forward-char 1)
1566 (throw 'tag nil)))))
1567 (set-marker end-pos nil)
1568 (goto-char (point-min))))
1569 ;; Must return nil, as build_annotations_2 expects that.
1570 nil)
1572 ;;; FILE I/O
1574 (defcustom auto-coding-alist
1575 ;; .exe and .EXE are added to support archive-mode looking at DOS
1576 ;; self-extracting exe archives.
1577 '(("\\.\\(\
1578 arc\\|zip\\|lzh\\|lha\\|zoo\\|[jew]ar\\|xpi\\|rar\\|\
1579 ARC\\|ZIP\\|LZH\\|LHA\\|ZOO\\|[JEW]AR\\|XPI\\|RAR\\)\\'"
1580 . no-conversion-multibyte)
1581 ("\\.\\(exe\\|EXE\\)\\'" . no-conversion)
1582 ("\\.\\(sx[dmicw]\\|odt\\|tar\\|tgz\\)\\'" . no-conversion)
1583 ("\\.\\(gz\\|Z\\|bz\\|bz2\\|gpg\\)\\'" . no-conversion)
1584 ("\\.\\(jpe?g\\|png\\|gif\\|tiff?\\|p[bpgn]m\\)\\'" . no-conversion)
1585 ("\\.pdf\\'" . no-conversion)
1586 ("/#[^/]+#\\'" . emacs-mule))
1587 "Alist of filename patterns vs corresponding coding systems.
1588 Each element looks like (REGEXP . CODING-SYSTEM).
1589 A file whose name matches REGEXP is decoded by CODING-SYSTEM on reading.
1591 The settings in this alist take priority over `coding:' tags
1592 in the file (see the function `set-auto-coding')
1593 and the contents of `file-coding-system-alist'."
1594 :group 'files
1595 :group 'mule
1596 :type '(repeat (cons (regexp :tag "File name regexp")
1597 (symbol :tag "Coding system"))))
1599 (defcustom auto-coding-regexp-alist
1600 '(("^BABYL OPTIONS:[ \t]*-\\*-[ \t]*rmail[ \t]*-\\*-" . no-conversion)
1601 ("\\`\xFE\xFF" . utf-16be-with-signature)
1602 ("\\`\xFF\xFE" . utf-16le-with-signature)
1603 ("\\`\xEF\xBB\xBF" . utf-8)
1604 ("\\`;ELC\024\0\0\0" . emacs-mule)) ; Emacs 20-compiled
1605 "Alist of patterns vs corresponding coding systems.
1606 Each element looks like (REGEXP . CODING-SYSTEM).
1607 A file whose first bytes match REGEXP is decoded by CODING-SYSTEM on reading.
1609 The settings in this alist take priority over `coding:' tags
1610 in the file (see the function `set-auto-coding')
1611 and the contents of `file-coding-system-alist'."
1612 :group 'files
1613 :group 'mule
1614 :type '(repeat (cons (regexp :tag "Regexp")
1615 (symbol :tag "Coding system"))))
1617 (defun auto-coding-regexp-alist-lookup (from to)
1618 "Lookup `auto-coding-regexp-alist' for the contents of the current buffer.
1619 The value is a coding system is specified for the region FROM and TO,
1620 or nil."
1621 (save-excursion
1622 (goto-char from)
1623 (let ((alist auto-coding-regexp-alist)
1624 coding-system)
1625 (while (and alist (not coding-system))
1626 (let ((regexp (car (car alist))))
1627 (if enable-multibyte-characters
1628 (setq regexp (string-to-multibyte regexp)))
1629 (if (re-search-forward regexp to t)
1630 (setq coding-system (cdr (car alist)))
1631 (setq alist (cdr alist)))))
1632 coding-system)))
1634 ;; See the bottom of this file for built-in auto coding functions.
1635 (defcustom auto-coding-functions '(sgml-xml-auto-coding-function
1636 sgml-html-meta-auto-coding-function)
1637 "A list of functions which attempt to determine a coding system.
1639 Each function in this list should be written to operate on the
1640 current buffer, but should not modify it in any way. The buffer
1641 will contain undecoded text of parts of the file. Each function
1642 should take one argument, SIZE, which says how many characters
1643 \(starting from point) it should look at.
1645 If one of these functions succeeds in determining a coding
1646 system, it should return that coding system. Otherwise, it
1647 should return nil.
1649 If a file has a `coding:' tag, that takes precedence over these
1650 functions, so they won't be called at all."
1651 :group 'files
1652 :group 'mule
1653 :type '(repeat function))
1655 (defvar set-auto-coding-for-load nil
1656 "Non-nil means look for `load-coding' property instead of `coding'.
1657 This is used for loading and byte-compiling Emacs Lisp files.")
1659 (defun auto-coding-alist-lookup (filename)
1660 "Return the coding system specified by `auto-coding-alist' for FILENAME."
1661 (let ((alist auto-coding-alist)
1662 (case-fold-search (memq system-type '(windows-nt ms-dos cygwin)))
1663 coding-system)
1664 (while (and alist (not coding-system))
1665 (if (string-match (car (car alist)) filename)
1666 (setq coding-system (cdr (car alist)))
1667 (setq alist (cdr alist))))
1668 coding-system))
1670 (put 'enable-character-translation 'permanent-local t)
1671 (put 'enable-character-translation 'safe-local-variable 'booleanp)
1673 (defun find-auto-coding (filename size)
1674 "Find a coding system for a file FILENAME of which SIZE bytes follow point.
1675 These bytes should include at least the first 1k of the file
1676 and the last 3k of the file, but the middle may be omitted.
1678 The function checks FILENAME against the variable `auto-coding-alist'.
1679 If FILENAME doesn't match any entries in the variable, it checks the
1680 contents of the current buffer following point against
1681 `auto-coding-regexp-alist'. If no match is found, it checks for a
1682 `coding:' tag in the first one or two lines following point. If no
1683 `coding:' tag is found, it checks any local variables list in the last
1684 3K bytes out of the SIZE bytes. Finally, if none of these methods
1685 succeed, it checks to see if any function in `auto-coding-functions'
1686 gives a match.
1688 If a coding system is specifed, the return value is a cons
1689 \(CODING . SOURCE), where CODING is the specified coding system and
1690 SOURCE is a symbol `auto-coding-alist', `auto-coding-regexp-alist',
1691 `coding:', or `auto-coding-functions' indicating by what CODING is
1692 specified. Note that the validity of CODING is not checked;
1693 it's the caller's responsibility to check it.
1695 If nothing is specified, the return value is nil."
1696 (or (let ((coding-system (auto-coding-alist-lookup filename)))
1697 (if coding-system
1698 (cons coding-system 'auto-coding-alist)))
1699 ;; Try using `auto-coding-regexp-alist'.
1700 (let ((coding-system (auto-coding-regexp-alist-lookup (point)
1701 (+ (point) size))))
1702 (if coding-system
1703 (cons coding-system 'auto-coding-regexp-alist)))
1704 (let* ((case-fold-search t)
1705 (head-start (point))
1706 (head-end (+ head-start (min size 1024)))
1707 (tail-start (+ head-start (max (- size 3072) 0)))
1708 (tail-end (+ head-start size))
1709 coding-system head-found tail-found pos char-trans)
1710 ;; Try a short cut by searching for the string "coding:"
1711 ;; and for "unibyte:" at the head and tail of SIZE bytes.
1712 (setq head-found (or (search-forward "coding:" head-end t)
1713 (search-forward "unibyte:" head-end t)
1714 (search-forward "enable-character-translation:"
1715 head-end t)))
1716 (if (and head-found (> head-found tail-start))
1717 ;; Head and tail are overlapped.
1718 (setq tail-found head-found)
1719 (goto-char tail-start)
1720 (setq tail-found (or (search-forward "coding:" tail-end t)
1721 (search-forward "unibyte:" tail-end t)
1722 (search-forward "enable-character-translation:"
1723 tail-end t))))
1725 ;; At first check the head.
1726 (when head-found
1727 (goto-char head-start)
1728 (setq head-end (set-auto-mode-1))
1729 (setq head-start (point))
1730 (when (and head-end (< head-found head-end))
1731 (goto-char head-start)
1732 (when (and set-auto-coding-for-load
1733 (re-search-forward
1734 "\\(.*;\\)?[ \t]*unibyte:[ \t]*\\([^ ;]+\\)"
1735 head-end t))
1736 (setq coding-system 'raw-text))
1737 (when (and (not coding-system)
1738 (re-search-forward
1739 "\\(.*;\\)?[ \t]*coding:[ \t]*\\([^ ;]+\\)"
1740 head-end t))
1741 (setq coding-system (intern (match-string 2))))
1742 (when (re-search-forward
1743 "\\(.*;\\)?[ \t]*enable-character-translation:[ \t]*\\([^ ;]+\\)"
1744 head-end t)
1745 (setq char-trans (match-string 2)))))
1747 ;; If no coding: tag in the head, check the tail.
1748 ;; Here we must pay attention to the case that the end-of-line
1749 ;; is just "\r" and we can't use "^" nor "$" in regexp.
1750 (when (and tail-found (or (not coding-system) (not char-trans)))
1751 (goto-char tail-start)
1752 (re-search-forward "[\r\n]\^L" tail-end t)
1753 (if (re-search-forward
1754 "[\r\n]\\([^[\r\n]*\\)[ \t]*Local Variables:[ \t]*\\([^\r\n]*\\)[\r\n]"
1755 tail-end t)
1756 ;; The prefix is what comes before "local variables:" in its
1757 ;; line. The suffix is what comes after "local variables:"
1758 ;; in its line.
1759 (let* ((prefix (regexp-quote (match-string 1)))
1760 (suffix (regexp-quote (match-string 2)))
1761 (re-coding
1762 (concat
1763 "[\r\n]" prefix
1764 ;; N.B. without the \n below, the regexp can
1765 ;; eat newlines.
1766 "[ \t]*coding[ \t]*:[ \t]*\\([^ \t\r\n]+\\)[ \t]*"
1767 suffix "[\r\n]"))
1768 (re-unibyte
1769 (concat
1770 "[\r\n]" prefix
1771 "[ \t]*unibyte[ \t]*:[ \t]*\\([^ \t\r\n]+\\)[ \t]*"
1772 suffix "[\r\n]"))
1773 (re-char-trans
1774 (concat
1775 "[\r\n]" prefix
1776 "[ \t]*enable-character-translation[ \t]*:[ \t]*\\([^ \t\r\n]+\\)[ \t]*"
1777 suffix "[\r\n]"))
1778 (re-end
1779 (concat "[\r\n]" prefix "[ \t]*End *:[ \t]*" suffix
1780 "[\r\n]?"))
1781 (pos (1- (point))))
1782 (forward-char -1) ; skip back \r or \n.
1783 (re-search-forward re-end tail-end 'move)
1784 (setq tail-end (point))
1785 (goto-char pos)
1786 (when (and set-auto-coding-for-load
1787 (re-search-forward re-unibyte tail-end t))
1788 (setq coding-system 'raw-text))
1789 (when (and (not coding-system)
1790 (re-search-forward re-coding tail-end t))
1791 (setq coding-system (intern (match-string 1))))
1792 (when (and (not char-trans)
1793 (re-search-forward re-char-trans tail-end t))
1794 (setq char-trans (match-string 1))))))
1795 (if coding-system
1796 ;; If the coding-system name ends with "!", remove it and
1797 ;; set char-trans to "nil".
1798 (let ((name (symbol-name coding-system)))
1799 (if (= (aref name (1- (length name))) ?!)
1800 (setq coding-system (intern (substring name 0 -1))
1801 char-trans "nil"))))
1802 (when (and char-trans
1803 (not (setq char-trans (intern char-trans))))
1804 (make-local-variable 'enable-character-translation)
1805 (setq enable-character-translation nil))
1806 (if coding-system
1807 (cons coding-system :coding)))
1808 ;; Finally, try all the `auto-coding-functions'.
1809 (let ((funcs auto-coding-functions)
1810 (coding-system nil))
1811 (while (and funcs (not coding-system))
1812 (setq coding-system (condition-case e
1813 (save-excursion
1814 (goto-char (point-min))
1815 (funcall (pop funcs) size))
1816 (error nil))))
1817 (if coding-system
1818 (cons coding-system 'auto-coding-functions)))))
1820 (defun set-auto-coding (filename size)
1821 "Return coding system for a file FILENAME of which SIZE bytes follow point.
1822 See `find-auto-coding' for how the coding system is found.
1823 Return nil if an invalid coding system is found.
1825 The variable `set-auto-coding-function' (which see) is set to this
1826 function by default."
1827 (let ((found (find-auto-coding filename size)))
1828 (if (and found (coding-system-p (car found)))
1829 (car found))))
1831 (setq set-auto-coding-function 'set-auto-coding)
1833 ;; This variable is set in these two cases:
1834 ;; (1) A file is read by a coding system specified explicitly.
1835 ;; after-insert-file-set-coding sets this value to
1836 ;; coding-system-for-read.
1837 ;; (2) A buffer is saved.
1838 ;; After writing, basic-save-buffer-1 sets this value to
1839 ;; last-coding-system-used.
1840 ;; This variable is used for decoding in revert-buffer.
1841 (defvar buffer-file-coding-system-explicit nil
1842 "The file coding system explicitly specified for the current buffer.
1843 Internal use only.")
1844 (make-variable-buffer-local 'buffer-file-coding-system-explicit)
1845 (put 'buffer-file-coding-system-explicit 'permanent-local t)
1847 (defun after-insert-file-set-coding (inserted &optional visit)
1848 "Set `buffer-file-coding-system' of current buffer after text is inserted.
1849 INSERTED is the number of characters that were inserted, as figured
1850 in the situation before this function. Return the number of characters
1851 inserted, as figured in the situation after. The two numbers can be
1852 different if the buffer has become unibyte.
1853 The optional second arg VISIT non-nil means that we are visiting a file."
1854 (if (and visit
1855 coding-system-for-read
1856 (not (eq coding-system-for-read 'auto-save-coding)))
1857 (setq buffer-file-coding-system-explicit coding-system-for-read))
1858 (if last-coding-system-used
1859 (let ((coding-system
1860 (find-new-buffer-file-coding-system last-coding-system-used)))
1861 (when coding-system
1862 ;; Tell set-buffer-file-coding-system not to mark the file
1863 ;; as modified; we just read it, and it's supposed to be unmodified.
1864 ;; Marking it modified would try to lock it, which would
1865 ;; check the modtime, and we don't want to do that again now.
1866 (set-buffer-file-coding-system coding-system t t))))
1867 inserted)
1869 ;; The coding-spec and eol-type of coding-system returned is decided
1870 ;; independently in the following order.
1871 ;; 1. That of buffer-file-coding-system locally bound.
1872 ;; 2. That of CODING.
1874 (defun find-new-buffer-file-coding-system (coding)
1875 "Return a coding system for a buffer when a file of CODING is inserted.
1876 The local variable `buffer-file-coding-system' of the current buffer
1877 is set to the returned value.
1878 Return nil if there's no need to set `buffer-file-coding-system'."
1879 (let (local-coding local-eol
1880 found-coding found-eol
1881 new-coding new-eol)
1882 (if (null coding)
1883 ;; Nothing found about coding.
1886 ;; Get information of `buffer-file-coding-system' in LOCAL-EOL
1887 ;; and LOCAL-CODING.
1888 (setq local-eol (coding-system-eol-type buffer-file-coding-system))
1889 (if (null (numberp local-eol))
1890 ;; But eol-type is not yet set.
1891 (setq local-eol nil))
1892 (if (and buffer-file-coding-system
1893 (not (eq (coding-system-type buffer-file-coding-system)
1894 'undecided)))
1895 (setq local-coding (coding-system-base buffer-file-coding-system)))
1897 (if (and (local-variable-p 'buffer-file-coding-system)
1898 local-eol local-coding)
1899 ;; The current buffer has already set full coding-system, we
1900 ;; had better not change it.
1903 (setq found-eol (coding-system-eol-type coding))
1904 (if (null (numberp found-eol))
1905 ;; But eol-type is not found.
1906 ;; If EOL conversions are inhibited, force unix eol-type.
1907 (setq found-eol (if inhibit-eol-conversion 0)))
1908 (setq found-coding (coding-system-base coding))
1910 (if (and (not found-eol) (eq found-coding 'undecided))
1911 ;; No valid coding information found.
1914 ;; Some coding information (eol or text) found.
1916 ;; The local setting takes precedence over the found one.
1917 (setq new-coding (if (local-variable-p 'buffer-file-coding-system)
1918 (or local-coding found-coding)
1919 (or found-coding local-coding)))
1920 (setq new-eol (if (local-variable-p 'buffer-file-coding-system)
1921 (or local-eol found-eol)
1922 (or found-eol local-eol)))
1924 (let ((eol-type (coding-system-eol-type new-coding)))
1925 (if (and (numberp new-eol) (vectorp eol-type))
1926 (aref eol-type new-eol)
1927 new-coding)))))))
1929 (defun modify-coding-system-alist (target-type regexp coding-system)
1930 "Modify one of look up tables for finding a coding system on I/O operation.
1931 There are three of such tables, `file-coding-system-alist',
1932 `process-coding-system-alist', and `network-coding-system-alist'.
1934 TARGET-TYPE specifies which of them to modify.
1935 If it is `file', it affects `file-coding-system-alist' (which see).
1936 If it is `process', it affects `process-coding-system-alist' (which see).
1937 If it is `network', it affects `network-coding-system-alist' (which see).
1939 REGEXP is a regular expression matching a target of I/O operation.
1940 The target is a file name if TARGET-TYPE is `file', a program name if
1941 TARGET-TYPE is `process', or a network service name or a port number
1942 to connect to if TARGET-TYPE is `network'.
1944 CODING-SYSTEM is a coding system to perform code conversion on the I/O
1945 operation, or a cons cell (DECODING . ENCODING) specifying the coding
1946 systems for decoding and encoding respectively, or a function symbol
1947 which, when called, returns such a cons cell."
1948 (or (memq target-type '(file process network))
1949 (error "Invalid target type: %s" target-type))
1950 (or (stringp regexp)
1951 (and (eq target-type 'network) (integerp regexp))
1952 (error "Invalid regular expression: %s" regexp))
1953 (if (symbolp coding-system)
1954 (if (not (fboundp coding-system))
1955 (progn
1956 (check-coding-system coding-system)
1957 (setq coding-system (cons coding-system coding-system))))
1958 (check-coding-system (car coding-system))
1959 (check-coding-system (cdr coding-system)))
1960 (cond ((eq target-type 'file)
1961 (let ((slot (assoc regexp file-coding-system-alist)))
1962 (if slot
1963 (setcdr slot coding-system)
1964 (setq file-coding-system-alist
1965 (cons (cons regexp coding-system)
1966 file-coding-system-alist)))))
1967 ((eq target-type 'process)
1968 (let ((slot (assoc regexp process-coding-system-alist)))
1969 (if slot
1970 (setcdr slot coding-system)
1971 (setq process-coding-system-alist
1972 (cons (cons regexp coding-system)
1973 process-coding-system-alist)))))
1975 (let ((slot (assoc regexp network-coding-system-alist)))
1976 (if slot
1977 (setcdr slot coding-system)
1978 (setq network-coding-system-alist
1979 (cons (cons regexp coding-system)
1980 network-coding-system-alist)))))))
1982 (defun decode-coding-inserted-region (from to filename
1983 &optional visit beg end replace)
1984 "Decode the region between FROM and TO as if it is read from file FILENAME.
1985 The idea is that the text between FROM and TO was just inserted somehow.
1986 Optional arguments VISIT, BEG, END, and REPLACE are the same as those
1987 of the function `insert-file-contents'.
1988 Part of the job of this function is setting `buffer-undo-list' appropriately."
1989 (save-excursion
1990 (save-restriction
1991 (let ((coding coding-system-for-read)
1992 undo-list-saved)
1993 (if visit
1994 ;; Temporarily turn off undo recording, if we're decoding the
1995 ;; text of a visited file.
1996 (setq buffer-undo-list t)
1997 ;; Otherwise, if we can recognize the undo elt for the insertion,
1998 ;; remove it and get ready to replace it later.
1999 ;; In the mean time, turn off undo recording.
2000 (let ((last (car-safe buffer-undo-list)))
2001 (if (and (consp last) (eql (car last) from) (eql (cdr last) to))
2002 (setq undo-list-saved (cdr buffer-undo-list)
2003 buffer-undo-list t))))
2004 (narrow-to-region from to)
2005 (goto-char (point-min))
2006 (or coding
2007 (setq coding (funcall set-auto-coding-function
2008 filename (- (point-max) (point-min)))))
2009 (or coding
2010 (setq coding (car (find-operation-coding-system
2011 'insert-file-contents
2012 (cons filename (current-buffer))
2013 visit beg end replace))))
2014 (if (coding-system-p coding)
2015 (or enable-multibyte-characters
2016 (setq coding
2017 (coding-system-change-text-conversion coding 'raw-text)))
2018 (setq coding nil))
2019 (if coding
2020 (decode-coding-region (point-min) (point-max) coding)
2021 (setq last-coding-system-used coding))
2022 ;; If we're decoding the text of a visited file,
2023 ;; the undo list should start out empty.
2024 (if visit
2025 (setq buffer-undo-list nil)
2026 ;; If we decided to replace the undo entry for the insertion,
2027 ;; do so now.
2028 (if undo-list-saved
2029 (setq buffer-undo-list
2030 (cons (cons from (point-max)) undo-list-saved))))))))
2032 (defun recode-region (start end new-coding coding)
2033 "Re-decode the region (previously decoded by CODING) by NEW-CODING."
2034 (interactive
2035 (list (region-beginning) (region-end)
2036 (read-coding-system "Text was really in: ")
2037 (let ((coding (or buffer-file-coding-system last-coding-system-used)))
2038 (read-coding-system
2039 (concat "But was interpreted as"
2040 (if coding (format " (default %S): " coding) ": "))
2041 coding))))
2042 (or (and new-coding coding)
2043 (error "Coding system not specified"))
2044 ;; Check it before we encode the region.
2045 (check-coding-system new-coding)
2046 (save-restriction
2047 (narrow-to-region start end)
2048 (encode-coding-region (point-min) (point-max) coding)
2049 (decode-coding-region (point-min) (point-max) new-coding))
2050 (if (region-active-p)
2051 (deactivate-mark)))
2053 (defun make-translation-table (&rest args)
2054 "Make a translation table from arguments.
2055 A translation table is a char table intended for character
2056 translation in CCL programs.
2058 Each argument is a list of elements of the form (FROM . TO), where FROM
2059 is a character to be translated to TO.
2061 The arguments and forms in each argument are processed in the given
2062 order, and if a previous form already translates TO to some other
2063 character, say TO-ALT, FROM is also translated to TO-ALT."
2064 (let ((table (make-char-table 'translation-table))
2065 revlist)
2066 (dolist (elts args)
2067 (dolist (elt elts)
2068 (let ((from (car elt))
2069 (to (cdr elt))
2070 to-alt rev-from rev-to)
2071 ;; If we have already translated TO to TO-ALT, FROM should
2072 ;; also be translated to TO-ALT.
2073 (if (setq to-alt (aref table to))
2074 (setq to to-alt))
2075 (aset table from to)
2076 ;; If we have already translated some chars to FROM, they
2077 ;; should also be translated to TO.
2078 (when (setq rev-from (assq from revlist))
2079 (dolist (elt (cdr rev-from))
2080 (aset table elt to))
2081 (setq revlist (delq rev-from revlist)
2082 rev-from (cdr rev-from)))
2083 ;; Now update REVLIST.
2084 (setq rev-to (assq to revlist))
2085 (if rev-to
2086 (setcdr rev-to (cons from (cdr rev-to)))
2087 (setq rev-to (list to from)
2088 revlist (cons rev-to revlist)))
2089 (if rev-from
2090 (setcdr rev-to (append rev-from (cdr rev-to)))))))
2091 ;; Return TABLE just created.
2092 (set-char-table-extra-slot table 1 1)
2093 table))
2095 (defun make-translation-table-from-vector (vec)
2096 "Make translation table from decoding vector VEC.
2097 VEC is an array of 256 elements to map unibyte codes to multibyte
2098 characters. Elements may be nil for undefined code points.
2099 See also the variable `nonascii-translation-table'."
2100 (let ((table (make-char-table 'translation-table))
2101 (rev-table (make-char-table 'translation-table))
2103 (dotimes (i 256)
2104 (setq ch (aref vec i))
2105 (when ch
2106 (aset table i ch)
2107 (if (>= ch 256)
2108 (aset rev-table ch i))))
2109 (set-char-table-extra-slot table 0 rev-table)
2110 (set-char-table-extra-slot table 1 1)
2111 (set-char-table-extra-slot rev-table 1 1)
2112 table))
2114 (defun make-translation-table-from-alist (alist)
2115 "Make translation table from N<->M mapping in ALIST.
2116 ALIST is an alist, each element has the form (FROM . TO).
2117 FROM and TO are a character or a vector of characters.
2118 If FROM is a character, that character is translated to TO.
2119 If FROM is a vector of characters, that sequence is translated to TO.
2120 The first extra-slot of the value is a translation table for reverse mapping."
2121 (let ((tables (vector (make-char-table 'translation-table)
2122 (make-char-table 'translation-table)))
2123 table max-lookup from to idx val)
2124 (dotimes (i 2)
2125 (setq table (aref tables i))
2126 (setq max-lookup 1)
2127 (dolist (elt alist)
2128 (if (= i 0)
2129 (setq from (car elt) to (cdr elt))
2130 (setq from (cdr elt) to (car elt)))
2131 (if (characterp from)
2132 (setq idx from)
2133 (setq idx (aref from 0)
2134 max-lookup (max max-lookup (length from))))
2135 (setq val (aref table idx))
2136 (if val
2137 (progn
2138 (or (consp val)
2139 (setq val (list (cons (vector idx) val))))
2140 (if (characterp from)
2141 (setq from (vector from)))
2142 (setq val (nconc val (list (cons from to)))))
2143 (if (characterp from)
2144 (setq val to)
2145 (setq val (list (cons from to)))))
2146 (aset table idx val))
2147 (set-char-table-extra-slot table 1 max-lookup))
2148 (set-char-table-extra-slot (aref tables 0) 0 (aref tables 1))
2149 (aref tables 0)))
2151 (defun define-translation-table (symbol &rest args)
2152 "Define SYMBOL as the name of translation table made by ARGS.
2153 This sets up information so that the table can be used for
2154 translations in a CCL program.
2156 If the first element of ARGS is a char-table whose purpose is
2157 `translation-table', just define SYMBOL to name it. (Note that this
2158 function does not bind SYMBOL.)
2160 Any other ARGS should be suitable as arguments of the function
2161 `make-translation-table' (which see).
2163 This function sets properties `translation-table' and
2164 `translation-table-id' of SYMBOL to the created table itself and the
2165 identification number of the table respectively. It also registers
2166 the table in `translation-table-vector'."
2167 (let ((table (if (and (char-table-p (car args))
2168 (eq (char-table-subtype (car args))
2169 'translation-table))
2170 (car args)
2171 (apply 'make-translation-table args)))
2172 (len (length translation-table-vector))
2173 (id 0)
2174 (done nil))
2175 (put symbol 'translation-table table)
2176 (while (not done)
2177 (if (>= id len)
2178 (setq translation-table-vector
2179 (vconcat translation-table-vector (make-vector len nil))))
2180 (let ((slot (aref translation-table-vector id)))
2181 (if (or (not slot)
2182 (eq (car slot) symbol))
2183 (progn
2184 (aset translation-table-vector id (cons symbol table))
2185 (setq done t))
2186 (setq id (1+ id)))))
2187 (put symbol 'translation-table-id id)
2188 id))
2190 (defun translate-region (start end table)
2191 "From START to END, translate characters according to TABLE.
2192 TABLE is a string or a char-table.
2193 If TABLE is a string, the Nth character in it is the mapping
2194 for the character with code N.
2195 If TABLE is a char-table, the element for character N is the mapping
2196 for the character with code N.
2197 It returns the number of characters changed."
2198 (interactive
2199 (list (region-beginning)
2200 (region-end)
2201 (let (table l)
2202 (dotimes (i (length translation-table-vector))
2203 (if (consp (aref translation-table-vector i))
2204 (push (list (symbol-name
2205 (car (aref translation-table-vector i)))) l)))
2206 (if (not l)
2207 (error "No translation table defined"))
2208 (while (not table)
2209 (setq table (completing-read "Translation table: " l nil t)))
2210 (intern table))))
2211 (if (symbolp table)
2212 (let ((val (get table 'translation-table)))
2213 (or (char-table-p val)
2214 (error "Invalid translation table name: %s" table))
2215 (setq table val)))
2216 (translate-region-internal start end table))
2218 (put 'with-category-table 'lisp-indent-function 1)
2220 (defmacro with-category-table (table &rest body)
2221 "Execute BODY like `progn' with TABLE the current category table.
2222 The category table of the current buffer is saved, BODY is evaluated,
2223 then the saved table is restored, even in case of an abnormal exit.
2224 Value is what BODY returns."
2225 (let ((old-table (make-symbol "old-table"))
2226 (old-buffer (make-symbol "old-buffer")))
2227 `(let ((,old-table (category-table))
2228 (,old-buffer (current-buffer)))
2229 (unwind-protect
2230 (progn
2231 (set-category-table ,table)
2232 ,@body)
2233 (with-current-buffer ,old-buffer
2234 (set-category-table ,old-table))))))
2236 (defun define-translation-hash-table (symbol table)
2237 "Define SYMBOL as the name of the hash translation TABLE for use in CCL.
2239 Analogous to `define-translation-table', but updates
2240 `translation-hash-table-vector' and the table is for use in the CCL
2241 `lookup-integer' and `lookup-character' functions."
2242 (unless (and (symbolp symbol)
2243 (hash-table-p table))
2244 (error "Bad args to define-translation-hash-table"))
2245 (let ((len (length translation-hash-table-vector))
2246 (id 0)
2247 done)
2248 (put symbol 'translation-hash-table table)
2249 (while (not done)
2250 (if (>= id len)
2251 (setq translation-hash-table-vector
2252 (vconcat translation-hash-table-vector [nil])))
2253 (let ((slot (aref translation-hash-table-vector id)))
2254 (if (or (not slot)
2255 (eq (car slot) symbol))
2256 (progn
2257 (aset translation-hash-table-vector id (cons symbol table))
2258 (setq done t))
2259 (setq id (1+ id)))))
2260 (put symbol 'translation-hash-table-id id)
2261 id))
2263 ;;; Initialize some variables.
2265 (put 'use-default-ascent 'char-table-extra-slots 0)
2266 (setq use-default-ascent (make-char-table 'use-default-ascent))
2267 (put 'ignore-relative-composition 'char-table-extra-slots 0)
2268 (setq ignore-relative-composition
2269 (make-char-table 'ignore-relative-composition))
2271 (make-obsolete 'set-char-table-default
2272 "generic characters no longer exist." "23.1")
2274 ;;; Built-in auto-coding-functions:
2276 (defun sgml-xml-auto-coding-function (size)
2277 "Determine whether the buffer is XML, and if so, its encoding.
2278 This function is intended to be added to `auto-coding-functions'."
2279 (setq size (+ (point) size))
2280 (when (re-search-forward "\\`[[:space:]\n]*<\\?xml" size t)
2281 (let ((end (save-excursion
2282 ;; This is a hack.
2283 (re-search-forward "[\"']\\s-*\\?>" size t))))
2284 (when end
2285 (if (re-search-forward "encoding=[\"']\\(.+?\\)[\"']" end t)
2286 (let* ((match (match-string 1))
2287 (sym (intern (downcase match))))
2288 (if (coding-system-p sym)
2290 (message "Warning: unknown coding system \"%s\"" match)
2291 nil))
2292 ;; Files without an encoding tag should be UTF-8. But users
2293 ;; may be naive about encodings, and have saved the file from
2294 ;; another editor that does not help them get the encoding right.
2295 ;; Detect the encoding and warn the user if it is detected as
2296 ;; something other than UTF-8.
2297 (let ((detected
2298 (with-coding-priority '(utf-8)
2299 (coding-system-base
2300 (detect-coding-region (point-min) size t)))))
2301 ;; Pure ASCII always comes back as undecided.
2302 (if (memq detected '(utf-8 undecided))
2303 'utf-8
2304 (warn "File contents detected as %s.
2305 Consider adding an encoding attribute to the xml declaration,
2306 or saving as utf-8, as mandated by the xml specification." detected)
2307 detected)))))))
2309 (defun sgml-html-meta-auto-coding-function (size)
2310 "If the buffer has an HTML meta tag, use it to determine encoding.
2311 This function is intended to be added to `auto-coding-functions'."
2312 (let ((case-fold-search t))
2313 (setq size (min (+ (point) size)
2314 (save-excursion
2315 ;; Limit the search by the end of the HTML header.
2316 (or (search-forward "</head>" (+ (point) size) t)
2317 ;; In case of no header, search only 10 lines.
2318 (forward-line 10))
2319 (point))))
2320 ;; Make sure that the buffer really contains an HTML document, by
2321 ;; checking that it starts with a doctype or a <HTML> start tag
2322 ;; (allowing for whitespace at bob). Note: 'DOCTYPE NETSCAPE' is
2323 ;; useful for Mozilla bookmark files.
2324 (when (and (re-search-forward "\\`[[:space:]\n]*\\(<!doctype[[:space:]\n]+\\(html\\|netscape\\)\\|<html\\)" size t)
2325 (re-search-forward "<meta\\s-+http-equiv=[\"']?content-type[\"']?\\s-+content=[\"']text/\\sw+;\\s-*charset=\\(.+?\\)[\"']" size t))
2326 (let* ((match (match-string 1))
2327 (sym (intern (downcase match))))
2328 (if (coding-system-p sym)
2330 (message "Warning: unknown coding system \"%s\"" match)
2331 nil)))))
2333 (defun xml-find-file-coding-system (args)
2334 "Determine the coding system of an XML file without a declaration.
2335 Strictly speaking, the file should be utf-8, but mistakes are
2336 made, and there are genuine cases where XML fragments are saved,
2337 with the encoding properly specified in a master document, or
2338 added by processing software."
2339 (if (eq (car args) 'insert-file-contents)
2340 (let ((detected
2341 (with-coding-priority '(utf-8)
2342 (coding-system-base
2343 (detect-coding-region (point-min) (point-max) t)))))
2344 ;; Pure ASCII always comes back as undecided.
2345 (cond
2346 ((memq detected '(utf-8 undecided))
2347 'utf-8)
2348 ((eq detected 'utf-16le-with-signature) 'utf-16le-with-signature)
2349 ((eq detected 'utf-16be-with-signature) 'utf-16be-with-signature)
2351 (warn "File contents detected as %s.
2352 Consider adding an xml declaration with the encoding specified,
2353 or saving as utf-8, as mandated by the xml specification." detected)
2354 detected)))
2355 ;; Don't interfere with the user's wishes for saving the buffer.
2356 ;; We did what we could when the buffer was created to ensure the
2357 ;; correct encoding was used, or the user was warned, so any
2358 ;; non-conformity here is deliberate on the part of the user.
2359 'undecided))
2362 (provide 'mule)
2364 ;; arch-tag: 9aebaa6e-0e8a-40a9-b857-cb5d04a39e7c
2365 ;;; mule.el ends here