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