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