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