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