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