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