Remove support for Mac Carbon.
[bpt/emacs.git] / lisp / international / mule-cmds.el
1 ;;; mule-cmds.el --- commands for multilingual environment -*-coding: iso-2022-7bit -*-
2
3 ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
4 ;; 2007, 2008 Free Software Foundation, Inc.
5 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
6 ;; 2005, 2006, 2007, 2008
7 ;; National Institute of Advanced Industrial Science and Technology (AIST)
8 ;; Registration Number H14PRO021
9 ;; Copyright (C) 2003
10 ;; National Institute of Advanced Industrial Science and Technology (AIST)
11 ;; Registration Number H13PRO009
12
13 ;; Keywords: mule, i18n
14
15 ;; This file is part of GNU Emacs.
16
17 ;; GNU Emacs is free software: you can redistribute it and/or modify
18 ;; it under the terms of the GNU General Public License as published by
19 ;; the Free Software Foundation, either version 3 of the License, or
20 ;; (at your option) any later version.
21
22 ;; GNU Emacs is distributed in the hope that it will be useful,
23 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
24 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 ;; GNU General Public License for more details.
26
27 ;; You should have received a copy of the GNU General Public License
28 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
29
30 ;;; Commentary:
31
32 ;;; Code:
33
34 (defvar dos-codepage)
35 (autoload 'widget-value "wid-edit")
36
37 (defvar mac-system-coding-system)
38
39 ;;; MULE related key bindings and menus.
40
41 (defvar mule-keymap (make-sparse-keymap)
42 "Keymap for Mule (Multilingual environment) specific commands.")
43
44 ;; Keep "C-x C-m ..." for mule specific commands.
45 (define-key ctl-x-map "\C-m" mule-keymap)
46
47 (define-key mule-keymap "f" 'set-buffer-file-coding-system)
48 (define-key mule-keymap "r" 'revert-buffer-with-coding-system)
49 (define-key mule-keymap "F" 'set-file-name-coding-system)
50 (define-key mule-keymap "t" 'set-terminal-coding-system)
51 (define-key mule-keymap "k" 'set-keyboard-coding-system)
52 (define-key mule-keymap "p" 'set-buffer-process-coding-system)
53 (define-key mule-keymap "x" 'set-selection-coding-system)
54 (define-key mule-keymap "X" 'set-next-selection-coding-system)
55 (define-key mule-keymap "\C-\\" 'set-input-method)
56 (define-key mule-keymap "c" 'universal-coding-system-argument)
57 (define-key mule-keymap "l" 'set-language-environment)
58
59 (defvar mule-menu-keymap
60 (make-sparse-keymap "Mule (Multilingual Environment)")
61 "Keymap for Mule (Multilingual environment) menu specific commands.")
62
63 (defvar describe-language-environment-map
64 (make-sparse-keymap "Describe Language Environment"))
65
66 (defvar setup-language-environment-map
67 (make-sparse-keymap "Set Language Environment"))
68
69 (defvar set-coding-system-map
70 (make-sparse-keymap "Set Coding System"))
71
72 (define-key-after mule-menu-keymap [set-language-environment]
73 (list 'menu-item "Set Language Environment" setup-language-environment-map))
74 (define-key-after mule-menu-keymap [separator-mule]
75 '("--")
76 t)
77 (define-key-after mule-menu-keymap [toggle-input-method]
78 '(menu-item "Toggle Input Method" toggle-input-method)
79 t)
80 (define-key-after mule-menu-keymap [set-input-method]
81 '(menu-item "Select Input Method..." set-input-method)
82 t)
83 (define-key-after mule-menu-keymap [describe-input-method]
84 '(menu-item "Describe Input Method" describe-input-method))
85 (define-key-after mule-menu-keymap [separator-input-method]
86 '("--")
87 t)
88 (define-key-after mule-menu-keymap [set-various-coding-system]
89 (list 'menu-item "Set Coding Systems" set-coding-system-map
90 :enable 'default-enable-multibyte-characters))
91 (define-key-after mule-menu-keymap [view-hello-file]
92 '(menu-item "Show Multi-lingual Text" view-hello-file
93 :enable (file-readable-p
94 (expand-file-name "HELLO" data-directory))
95 :help "Display file which says HELLO in many languages")
96 t)
97 (define-key-after mule-menu-keymap [separator-coding-system]
98 '("--")
99 t)
100 (define-key-after mule-menu-keymap [describe-language-environment]
101 (list 'menu-item "Describe Language Environment"
102 describe-language-environment-map
103 :help "Show multilingual settings for a specific language")
104 t)
105 (define-key-after mule-menu-keymap [describe-input-method]
106 '(menu-item "Describe Input Method..." describe-input-method
107 :help "Keyboard layout for a specific input method")
108 t)
109 (define-key-after mule-menu-keymap [describe-coding-system]
110 '(menu-item "Describe Coding System..." describe-coding-system)
111 t)
112 (define-key-after mule-menu-keymap [list-character-sets]
113 '(menu-item "List Character Sets" list-character-sets
114 :help "Show table of available character sets"))
115 (define-key-after mule-menu-keymap [mule-diag]
116 '(menu-item "Show All of Mule Status" mule-diag
117 :help "Display multilingual environment settings")
118 t)
119
120 (define-key-after set-coding-system-map [universal-coding-system-argument]
121 '(menu-item "For Next Command" universal-coding-system-argument
122 :help "Coding system to be used by next command")
123 t)
124 (define-key-after set-coding-system-map [separator-1]
125 '("--")
126 t)
127 (define-key-after set-coding-system-map [set-buffer-file-coding-system]
128 '(menu-item "For Saving This Buffer" set-buffer-file-coding-system
129 :help "How to encode this buffer when saved")
130 t)
131 (define-key-after set-coding-system-map [revert-buffer-with-coding-system]
132 '(menu-item "For Reverting This File Now" revert-buffer-with-coding-system
133 :enable buffer-file-name
134 :help "Revisit this file immediately using specified coding system")
135 t)
136 (define-key-after set-coding-system-map [set-file-name-coding-system]
137 '(menu-item "For File Name" set-file-name-coding-system
138 :help "How to decode/encode file names")
139 t)
140 (define-key-after set-coding-system-map [separator-2]
141 '("--")
142 t)
143
144 (define-key-after set-coding-system-map [set-keyboard-coding-system]
145 '(menu-item "For Keyboard" set-keyboard-coding-system
146 :help "How to decode keyboard input")
147 t)
148 (define-key-after set-coding-system-map [set-terminal-coding-system]
149 '(menu-item "For Terminal" set-terminal-coding-system
150 :enable (null (memq initial-window-system '(x w32 ns)))
151 :help "How to encode terminal output")
152 t)
153 (define-key-after set-coding-system-map [separator-3]
154 '("--")
155 t)
156 (define-key-after set-coding-system-map [set-selection-coding-system]
157 '(menu-item "For X Selections/Clipboard" set-selection-coding-system
158 :visible (display-selections-p)
159 :help "How to en/decode data to/from selection/clipboard")
160 t)
161 (define-key-after set-coding-system-map [set-next-selection-coding-system]
162 '(menu-item "For Next X Selection" set-next-selection-coding-system
163 :visible (display-selections-p)
164 :help "How to en/decode next selection/clipboard operation")
165 t)
166 (define-key-after set-coding-system-map [set-buffer-process-coding-system]
167 '(menu-item "For I/O with Subprocess" set-buffer-process-coding-system
168 :visible (fboundp 'start-process)
169 :enable (get-buffer-process (current-buffer))
170 :help "How to en/decode I/O from/to subprocess connected to this buffer")
171 t)
172
173
174 (define-key setup-language-environment-map
175 [Default] '(menu-item "Default" setup-specified-language-environment))
176
177 (define-key describe-language-environment-map
178 [Default] '(menu-item "Default" describe-specified-language-support))
179
180 ;; This should be a single character key binding because users use it
181 ;; very frequently while editing multilingual text. Now we can use
182 ;; only two such keys: "\C-\\" and "\C-^", but the latter is not
183 ;; convenient because it requires shifting on most keyboards. An
184 ;; alternative is "\C-\]" which is now bound to `abort-recursive-edit'
185 ;; but it won't be used that frequently.
186 (define-key global-map "\C-\\" 'toggle-input-method)
187
188 ;; This is no good because people often type Shift-SPC
189 ;; meaning to type SPC. -- rms.
190 ;; ;; Here's an alternative key binding for X users (Shift-SPACE).
191 ;; (define-key global-map [?\S- ] 'toggle-input-method)
192
193 ;;; Mule related hyperlinks.
194 (defconst help-xref-mule-regexp-template
195 (purecopy (concat "\\(\\<\\("
196 "\\(coding system\\)\\|"
197 "\\(input method\\)\\|"
198 "\\(character set\\)\\|"
199 "\\(charset\\)"
200 "\\)\\s-+\\)?"
201 ;; Note starting with word-syntax character:
202 "`\\(\\sw\\(\\sw\\|\\s_\\)+\\)'")))
203
204 (defun coding-system-change-eol-conversion (coding-system eol-type)
205 "Return a coding system which differs from CODING-SYSTEM in EOL conversion.
206 The returned coding system converts end-of-line by EOL-TYPE
207 but text as the same way as CODING-SYSTEM.
208 EOL-TYPE should be `unix', `dos', `mac', or nil.
209 If EOL-TYPE is nil, the returned coding system detects
210 how end-of-line is formatted automatically while decoding.
211
212 EOL-TYPE can be specified by an integer 0, 1, or 2.
213 They means `unix', `dos', and `mac' respectively."
214 (if (symbolp eol-type)
215 (setq eol-type (cond ((eq eol-type 'unix) 0)
216 ((eq eol-type 'dos) 1)
217 ((eq eol-type 'mac) 2)
218 (t eol-type))))
219 ;; We call `coding-system-base' before `coding-system-eol-type',
220 ;; because the coding-system may not be initialized until then.
221 (let* ((base (coding-system-base coding-system))
222 (orig-eol-type (coding-system-eol-type coding-system)))
223 (cond ((vectorp orig-eol-type)
224 (if (not eol-type)
225 coding-system
226 (aref orig-eol-type eol-type)))
227 ((not eol-type)
228 base)
229 ((= eol-type orig-eol-type)
230 coding-system)
231 ((progn (setq orig-eol-type (coding-system-eol-type base))
232 (vectorp orig-eol-type))
233 (aref orig-eol-type eol-type)))))
234
235 (defun coding-system-change-text-conversion (coding-system coding)
236 "Return a coding system which differs from CODING-SYSTEM in text conversion.
237 The returned coding system converts text by CODING
238 but end-of-line as the same way as CODING-SYSTEM.
239 If CODING is nil, the returned coding system detects
240 how text is formatted automatically while decoding."
241 (let ((eol-type (coding-system-eol-type coding-system)))
242 (coding-system-change-eol-conversion
243 (if coding coding 'undecided)
244 (if (numberp eol-type) (aref [unix dos mac] eol-type)))))
245
246 (defun toggle-enable-multibyte-characters (&optional arg)
247 "Change whether this buffer uses multibyte characters.
248 With arg, use multibyte characters if the arg is positive.
249
250 Note that this command does not convert the byte contents of
251 the buffer; it only changes the way those bytes are interpreted.
252 In general, therefore, this command *changes* the sequence of
253 characters that the current buffer contains.
254
255 We suggest you avoid using this command unless you know what you are
256 doing. If you use it by mistake, and the buffer is now displayed
257 wrong, use this command again to toggle back to the right mode."
258 (interactive "P")
259 (let ((new-flag
260 (if (null arg) (null enable-multibyte-characters)
261 (> (prefix-numeric-value arg) 0))))
262 (set-buffer-multibyte new-flag))
263 (force-mode-line-update))
264
265 (defun view-hello-file ()
266 "Display the HELLO file, which lists many languages and characters."
267 (interactive)
268 ;; We have to decode the file in any environment.
269 (let ((default-enable-multibyte-characters t)
270 (coding-system-for-read 'iso-2022-7bit))
271 (view-file (expand-file-name "HELLO" data-directory))))
272
273 (defun universal-coding-system-argument (coding-system)
274 "Execute an I/O command using the specified coding system."
275 (interactive
276 (let ((default (and buffer-file-coding-system
277 (not (eq (coding-system-type buffer-file-coding-system)
278 'undecided))
279 buffer-file-coding-system)))
280 (list (read-coding-system
281 (if default
282 (format "Coding system for following command (default %s): " default)
283 "Coding system for following command: ")
284 default))))
285 (let* ((keyseq (read-key-sequence
286 (format "Command to execute with %s:" coding-system)))
287 (cmd (key-binding keyseq))
288 prefix)
289
290 (when (eq cmd 'universal-argument)
291 (call-interactively cmd)
292
293 ;; Process keys bound in `universal-argument-map'.
294 (while (progn
295 (setq keyseq (read-key-sequence nil t)
296 cmd (key-binding keyseq t))
297 (not (eq cmd 'universal-argument-other-key)))
298 (let ((current-prefix-arg prefix-arg)
299 ;; Have to bind `last-command-char' here so that
300 ;; `digit-argument', for instance, can compute the
301 ;; prefix arg.
302 (last-command-char (aref keyseq 0)))
303 (call-interactively cmd)))
304
305 ;; This is the final call to `universal-argument-other-key', which
306 ;; set's the final `prefix-arg.
307 (let ((current-prefix-arg prefix-arg))
308 (call-interactively cmd))
309
310 ;; Read the command to execute with the given prefix arg.
311 (setq prefix prefix-arg
312 keyseq (read-key-sequence nil t)
313 cmd (key-binding keyseq)))
314
315 (let ((coding-system-for-read coding-system)
316 (coding-system-for-write coding-system)
317 (coding-system-require-warning t)
318 (current-prefix-arg prefix))
319 (message "")
320 (call-interactively cmd))))
321
322 (defun set-default-coding-systems (coding-system)
323 "Set default value of various coding systems to CODING-SYSTEM.
324 This sets the following coding systems:
325 o coding system of a newly created buffer
326 o default coding system for subprocess I/O
327 This also sets the following values:
328 o default value used as `file-name-coding-system' for converting file names
329 if CODING-SYSTEM is ASCII-compatible
330 o default value for the command `set-terminal-coding-system' (not on MSDOS)
331 o default value for the command `set-keyboard-coding-system'
332 if CODING-SYSTEM is ASCII-compatible"
333 (check-coding-system coding-system)
334 (setq-default buffer-file-coding-system coding-system)
335 (if (fboundp 'ucs-set-table-for-input)
336 (dolist (buffer (buffer-list))
337 (or (local-variable-p 'buffer-file-coding-system buffer)
338 (ucs-set-table-for-input buffer))))
339
340 (if (eq system-type 'darwin)
341 ;; The file-name coding system on Darwin systems is always utf-8.
342 (setq default-file-name-coding-system 'utf-8)
343 (if (and default-enable-multibyte-characters
344 (or (not coding-system)
345 (coding-system-get coding-system 'ascii-compatible-p)))
346 (setq default-file-name-coding-system coding-system)))
347 ;; If coding-system is nil, honor that on MS-DOS as well, so
348 ;; that they could reset the terminal coding system.
349 (unless (and (eq window-system 'pc) coding-system)
350 (setq default-terminal-coding-system coding-system))
351 (setq default-keyboard-coding-system coding-system)
352 ;; Preserve eol-type from existing default-process-coding-systems.
353 ;; On non-unix-like systems in particular, these may have been set
354 ;; carefully by the user, or by the startup code, to deal with the
355 ;; users shell appropriately, so should not be altered by changing
356 ;; language environment.
357 (let ((output-coding
358 (coding-system-change-text-conversion
359 (car default-process-coding-system) coding-system))
360 (input-coding
361 (coding-system-change-text-conversion
362 (cdr default-process-coding-system) coding-system)))
363 (setq default-process-coding-system
364 (cons output-coding input-coding))))
365
366 (defun prefer-coding-system (coding-system)
367 "Add CODING-SYSTEM at the front of the priority list for automatic detection.
368 This also sets the following coding systems:
369 o coding system of a newly created buffer
370 o default coding system for subprocess I/O
371 This also sets the following values:
372 o default value used as `file-name-coding-system' for converting file names
373 o default value for the command `set-terminal-coding-system' (not on MSDOS)
374 o default value for the command `set-keyboard-coding-system'
375
376 If CODING-SYSTEM specifies a certain type of EOL conversion, the coding
377 systems set by this function will use that type of EOL conversion.
378
379 This command does not change the default value of terminal coding system
380 for MS-DOS terminal, because DOS terminals only support a single coding
381 system, and Emacs automatically sets the default to that coding system at
382 startup.
383
384 A coding system that requires automatic detection of text
385 +encoding (e.g. undecided, unix) can't be preferred.."
386 (interactive "zPrefer coding system: ")
387 (if (not (and coding-system (coding-system-p coding-system)))
388 (error "Invalid coding system `%s'" coding-system))
389 (if (memq (coding-system-type coding-system) '(raw-text undecided))
390 (error "Can't prefer the coding system `%s'" coding-system))
391 (let ((base (coding-system-base coding-system))
392 (eol-type (coding-system-eol-type coding-system)))
393 (set-coding-system-priority base)
394 (and (interactive-p)
395 (or (eq base coding-system)
396 (message "Highest priority is set to %s (base of %s)"
397 base coding-system)))
398 ;; If they asked for specific EOL conversion, honor that.
399 (if (memq eol-type '(0 1 2))
400 (setq base
401 (coding-system-change-eol-conversion base eol-type)))
402 (set-default-coding-systems base)))
403
404 (defvar sort-coding-systems-predicate nil
405 "If non-nil, a predicate function to sort coding systems.
406
407 It is called with two coding systems, and should return t if the first
408 one is \"less\" than the second.
409
410 The function `sort-coding-systems' use it.")
411
412 (defun sort-coding-systems (codings)
413 "Sort coding system list CODINGS by a priority of each coding system.
414 Return the sorted list. CODINGS is modified by side effects.
415
416 If a coding system is most preferred, it has the highest priority.
417 Otherwise, coding systems that correspond to MIME charsets have
418 higher priorities. Among them, a coding system included in the
419 `coding-system' key of the current language environment has higher
420 priority. See also the documentation of `language-info-alist'.
421
422 If the variable `sort-coding-systems-predicate' (which see) is
423 non-nil, it is used to sort CODINGS instead."
424 (if sort-coding-systems-predicate
425 (sort codings sort-coding-systems-predicate)
426 (let* ((from-priority (coding-system-priority-list))
427 (most-preferred (car from-priority))
428 (lang-preferred (get-language-info current-language-environment
429 'coding-system))
430 (func (function
431 (lambda (x)
432 (let ((base (coding-system-base x)))
433 ;; We calculate the priority number 0..255 by
434 ;; using the 8 bits PMMLCEII as this:
435 ;; P: 1 if most preferred.
436 ;; MM: greater than 0 if mime-charset.
437 ;; L: 1 if one of the current lang. env.'s codings.
438 ;; C: 1 if one of codings listed in the category list.
439 ;; E: 1 if not XXX-with-esc
440 ;; II: if iso-2022 based, 0..3, else 1.
441 (logior
442 (lsh (if (eq base most-preferred) 1 0) 7)
443 (lsh
444 (let ((mime (coding-system-get base :mime-charset)))
445 ;; Prefer coding systems corresponding to a
446 ;; MIME charset.
447 (if mime
448 ;; Lower utf-16 priority so that we
449 ;; normally prefer utf-8 to it, and put
450 ;; x-ctext below that.
451 (cond ((string-match "utf-16"
452 (symbol-name mime))
453 2)
454 ((string-match "^x-" (symbol-name mime))
455 1)
456 (t 3))
457 0))
458 5)
459 (lsh (if (memq base lang-preferred) 1 0) 4)
460 (lsh (if (memq base from-priority) 1 0) 3)
461 (lsh (if (string-match "-with-esc\\'"
462 (symbol-name base))
463 0 1) 2)
464 (if (eq (coding-system-type base) 'iso-2022)
465 (let ((category (coding-system-category base)))
466 ;; For ISO based coding systems, prefer
467 ;; one that doesn't use designation nor
468 ;; locking/single shifting.
469 (cond
470 ((or (eq category 'coding-category-iso-8-1)
471 (eq category 'coding-category-iso-8-2))
472 2)
473 ((or (eq category 'coding-category-iso-7-tight)
474 (eq category 'coding-category-iso-7))
475 1)
476 (t
477 0)))
478 1)
479 ))))))
480 (sort codings (function (lambda (x y)
481 (> (funcall func x) (funcall func y))))))))
482
483 (defun find-coding-systems-region (from to)
484 "Return a list of proper coding systems to encode a text between FROM and TO.
485
486 If FROM is a string, find coding systems in that instead of the buffer.
487 All coding systems in the list can safely encode any multibyte characters
488 in the text.
489
490 If the text contains no multibyte characters, return a list of a single
491 element `undecided'."
492 (let ((codings (find-coding-systems-region-internal from to)))
493 (if (eq codings t)
494 ;; The text contains only ASCII characters. Any coding
495 ;; systems are safe.
496 '(undecided)
497 ;; We need copy-sequence because sorting will alter the argument.
498 (sort-coding-systems (copy-sequence codings)))))
499
500 (defun find-coding-systems-string (string)
501 "Return a list of proper coding systems to encode STRING.
502 All coding systems in the list can safely encode any multibyte characters
503 in STRING.
504
505 If STRING contains no multibyte characters, return a list of a single
506 element `undecided'."
507 (find-coding-systems-region string nil))
508
509 (defun find-coding-systems-for-charsets (charsets)
510 "Return a list of proper coding systems to encode characters of CHARSETS.
511 CHARSETS is a list of character sets.
512
513 This only finds coding systems of type `charset', whose
514 `:charset-list' property includes all of CHARSETS (plus `ascii' for
515 ascii-compatible coding systems). It was used in older versions of
516 Emacs, but is unlikely to be what you really want now."
517 ;; Deal with aliases.
518 (setq charsets (mapcar (lambda (c)
519 (get-charset-property c :name))
520 charsets))
521 (cond ((or (null charsets)
522 (and (= (length charsets) 1)
523 (eq 'ascii (car charsets))))
524 '(undecided))
525 ((or (memq 'eight-bit-control charsets)
526 (memq 'eight-bit-graphic charsets))
527 '(raw-text utf-8-emacs))
528 (t
529 (let (codings)
530 (dolist (cs (coding-system-list t))
531 (let ((cs-charsets (and (eq (coding-system-type cs) 'charset)
532 (coding-system-charset-list cs)))
533 (charsets charsets))
534 (if (coding-system-get cs :ascii-compatible-p)
535 (add-to-list 'cs-charsets 'ascii))
536 (if (catch 'ok
537 (when cs-charsets
538 (while charsets
539 (unless (memq (pop charsets) cs-charsets)
540 (throw 'ok nil)))
541 t))
542 (push cs codings))))
543 (nreverse codings)))))
544
545 (defun find-multibyte-characters (from to &optional maxcount excludes)
546 "Find multibyte characters in the region specified by FROM and TO.
547 If FROM is a string, find multibyte characters in the string.
548 The return value is an alist of the following format:
549 ((CHARSET COUNT CHAR ...) ...)
550 where
551 CHARSET is a character set,
552 COUNT is a number of characters,
553 CHARs are the characters found from the character set.
554 Optional 3rd arg MAXCOUNT limits how many CHARs are put in the above list.
555 Optional 4th arg EXCLUDES is a list of character sets to be ignored."
556 (let ((chars nil)
557 charset char)
558 (if (stringp from)
559 (if (multibyte-string-p from)
560 (let ((idx 0))
561 (while (setq idx (string-match "[^\000-\177]" from idx))
562 (setq char (aref from idx)
563 charset (char-charset char))
564 (unless (memq charset excludes)
565 (let ((slot (assq charset chars)))
566 (if slot
567 (if (not (memq char (nthcdr 2 slot)))
568 (let ((count (nth 1 slot)))
569 (setcar (cdr slot) (1+ count))
570 (if (or (not maxcount) (< count maxcount))
571 (nconc slot (list char)))))
572 (setq chars (cons (list charset 1 char) chars)))))
573 (setq idx (1+ idx)))))
574 (if enable-multibyte-characters
575 (save-excursion
576 (goto-char from)
577 (while (re-search-forward "[^\000-\177]" to t)
578 (setq char (preceding-char)
579 charset (char-charset char))
580 (unless (memq charset excludes)
581 (let ((slot (assq charset chars)))
582 (if slot
583 (if (not (member char (nthcdr 2 slot)))
584 (let ((count (nth 1 slot)))
585 (setcar (cdr slot) (1+ count))
586 (if (or (not maxcount) (< count maxcount))
587 (nconc slot (list char)))))
588 (setq chars (cons (list charset 1 char) chars)))))))))
589 (nreverse chars)))
590
591 (defun search-unencodable-char (coding-system)
592 "Search forward from point for a character that is not encodable.
593 It asks which coding system to check.
594 If such a character is found, set point after that character.
595 Otherwise, don't move point.
596
597 When called from a program, the value is the position of the unencodable
598 character found, or nil if all characters are encodable."
599 (interactive
600 (list (let ((default (or buffer-file-coding-system 'us-ascii)))
601 (read-coding-system
602 (format "Coding-system (default %s): " default)
603 default))))
604 (let ((pos (unencodable-char-position (point) (point-max) coding-system)))
605 (if pos
606 (goto-char (1+ pos))
607 (message "All following characters are encodable by %s" coding-system))
608 pos))
609
610 (defvar last-coding-system-specified nil
611 "Most recent coding system explicitly specified by the user when asked.
612 This variable is set whenever Emacs asks the user which coding system
613 to use in order to write a file. If you set it to nil explicitly,
614 then call `write-region', then afterward this variable will be non-nil
615 only if the user was explicitly asked and specified a coding system.")
616
617 (defvar select-safe-coding-system-accept-default-p nil
618 "If non-nil, a function to control the behavior of coding system selection.
619 The meaning is the same as the argument ACCEPT-DEFAULT-P of the
620 function `select-safe-coding-system' (which see). This variable
621 overrides that argument.")
622
623 (defun select-safe-coding-system-interactively (from to codings unsafe
624 &optional rejected default)
625 "Select interactively a coding system for the region FROM ... TO.
626 FROM can be a string, as in `write-region'.
627 CODINGS is the list of base coding systems known to be safe for this region,
628 typically obtained with `find-coding-systems-region'.
629 UNSAFE is a list of coding systems known to be unsafe for this region.
630 REJECTED is a list of coding systems which were safe but for some reason
631 were not recommended in the particular context.
632 DEFAULT is the coding system to use by default in the query."
633 ;; At first, if some defaults are unsafe, record at most 11
634 ;; problematic characters and their positions for them by turning
635 ;; (CODING ...)
636 ;; into
637 ;; ((CODING (POS . CHAR) (POS . CHAR) ...) ...)
638 (if unsafe
639 (setq unsafe
640 (mapcar #'(lambda (coding)
641 (cons coding
642 (if (stringp from)
643 (mapcar #'(lambda (pos)
644 (cons pos (aref from pos)))
645 (unencodable-char-position
646 0 (length from) coding
647 11 from))
648 (mapcar #'(lambda (pos)
649 (cons pos (char-after pos)))
650 (unencodable-char-position
651 from to coding 11)))))
652 unsafe)))
653
654 ;; Change each safe coding system to the corresponding
655 ;; mime-charset name if it is also a coding system. Such a name
656 ;; is more friendly to users.
657 (let ((l codings)
658 mime-charset)
659 (while l
660 (setq mime-charset (coding-system-get (car l) :mime-charset))
661 (if (and mime-charset (coding-system-p mime-charset)
662 (coding-system-equal (car l) mime-charset))
663 (setcar l mime-charset))
664 (setq l (cdr l))))
665
666 ;; Don't offer variations with locking shift, which you
667 ;; basically never want.
668 (let (l)
669 (dolist (elt codings (setq codings (nreverse l)))
670 (unless (or (eq 'coding-category-iso-7-else
671 (coding-system-category elt))
672 (eq 'coding-category-iso-8-else
673 (coding-system-category elt)))
674 (push elt l))))
675
676 ;; Remove raw-text, emacs-mule and no-conversion unless nothing
677 ;; else is available.
678 (setq codings
679 (or (delq 'raw-text
680 (delq 'emacs-mule
681 (delq 'no-conversion codings)))
682 '(raw-text emacs-mule no-conversion)))
683
684 (let ((window-configuration (current-window-configuration))
685 (bufname (buffer-name))
686 coding-system)
687 (save-excursion
688 ;; If some defaults are unsafe, make sure the offending
689 ;; buffer is displayed.
690 (when (and unsafe (not (stringp from)))
691 (pop-to-buffer bufname)
692 (goto-char (apply 'min (mapcar #'(lambda (x) (car (cadr x)))
693 unsafe))))
694 ;; Then ask users to select one from CODINGS while showing
695 ;; the reason why none of the defaults are not used.
696 (with-output-to-temp-buffer "*Warning*"
697 (with-current-buffer standard-output
698 (if (and (null rejected) (null unsafe))
699 (insert "No default coding systems to try for "
700 (if (stringp from)
701 (format "string \"%s\"." from)
702 (format "buffer `%s'." bufname)))
703 (insert
704 "These default coding systems were tried to encode"
705 (if (stringp from)
706 (concat " \"" (if (> (length from) 10)
707 (concat (substring from 0 10) "...\"")
708 (concat from "\"")))
709 (format " text\nin the buffer `%s'" bufname))
710 ":\n")
711 (let ((pos (point))
712 (fill-prefix " "))
713 (dolist (x (append rejected unsafe))
714 (princ " ") (princ x))
715 (insert "\n")
716 (fill-region-as-paragraph pos (point)))
717 (when rejected
718 (insert "These safely encode the text in the buffer,
719 but are not recommended for encoding text in this context,
720 e.g., for sending an email message.\n ")
721 (dolist (x rejected)
722 (princ " ") (princ x))
723 (insert "\n"))
724 (when unsafe
725 (insert (if rejected "The other coding systems"
726 "However, each of them")
727 " encountered characters it couldn't encode:\n")
728 (dolist (coding unsafe)
729 (insert (format " %s cannot encode these:" (car coding)))
730 (let ((i 0)
731 (func1
732 #'(lambda (bufname pos)
733 (when (buffer-live-p (get-buffer bufname))
734 (pop-to-buffer bufname)
735 (goto-char pos))))
736 (func2
737 #'(lambda (bufname pos coding)
738 (when (buffer-live-p (get-buffer bufname))
739 (pop-to-buffer bufname)
740 (if (< (point) pos)
741 (goto-char pos)
742 (forward-char 1)
743 (search-unencodable-char coding)
744 (forward-char -1))))))
745 (dolist (elt (cdr coding))
746 (insert " ")
747 (if (stringp from)
748 (insert (if (< i 10) (cdr elt) "..."))
749 (if (< i 10)
750 (insert-text-button
751 (cdr elt)
752 :type 'help-xref
753 'face 'link
754 'help-echo
755 "mouse-2, RET: jump to this character"
756 'help-function func1
757 'help-args (list bufname (car elt)))
758 (insert-text-button
759 "..."
760 :type 'help-xref
761 'face 'link
762 'help-echo
763 "mouse-2, RET: next unencodable character"
764 'help-function func2
765 'help-args (list bufname (car elt)
766 (car coding)))))
767 (setq i (1+ i))))
768 (insert "\n"))
769 (insert (substitute-command-keys "\
770
771 Click on a character (or switch to this window by `\\[other-window]'\n\
772 and select the characters by RET) to jump to the place it appears,\n\
773 where `\\[universal-argument] \\[what-cursor-position]' will give information about it.\n"))))
774 (insert (substitute-command-keys "\nSelect \
775 one of the safe coding systems listed below,\n\
776 or cancel the writing with \\[keyboard-quit] and edit the buffer\n\
777 to remove or modify the problematic characters,\n\
778 or specify any other coding system (and risk losing\n\
779 the problematic characters).\n\n"))
780 (let ((pos (point))
781 (fill-prefix " "))
782 (dolist (x codings)
783 (princ " ") (princ x))
784 (insert "\n")
785 (fill-region-as-paragraph pos (point)))))
786
787 ;; Read a coding system.
788 (setq coding-system
789 (read-coding-system
790 (format "Select coding system (default %s): " default)
791 default))
792 (setq last-coding-system-specified coding-system))
793
794 (kill-buffer "*Warning*")
795 (set-window-configuration window-configuration)
796 coding-system))
797
798 (defun select-safe-coding-system (from to &optional default-coding-system
799 accept-default-p file)
800 "Ask a user to select a safe coding system from candidates.
801 The candidates of coding systems which can safely encode a text
802 between FROM and TO are shown in a popup window. Among them, the most
803 proper one is suggested as the default.
804
805 The list of `buffer-file-coding-system' of the current buffer,
806 the `default-buffer-file-coding-system', and the
807 most preferred coding system (if it corresponds to a MIME charset) is
808 treated as the default coding system list. Among them, the first one
809 that safely encodes the text is normally selected silently and
810 returned without any user interaction. See also the command
811 `prefer-coding-system'.
812
813 However, the user is queried if the chosen coding system is
814 inconsistent with what would be selected by `find-auto-coding' from
815 coding cookies &c. if the contents of the region were read from a
816 file. (That could lead to data corruption in a file subsequently
817 re-visited and edited.)
818
819 Optional 3rd arg DEFAULT-CODING-SYSTEM specifies a coding system or a
820 list of coding systems to be prepended to the default coding system
821 list. However, if DEFAULT-CODING-SYSTEM is a list and the first
822 element is t, the cdr part is used as the default coding system list,
823 i.e. `buffer-file-coding-system', `default-buffer-file-coding-system',
824 and the most preferred coding system are not used.
825
826 Optional 4th arg ACCEPT-DEFAULT-P, if non-nil, is a function to
827 determine the acceptability of the silently selected coding system.
828 It is called with that coding system, and should return nil if it
829 should not be silently selected and thus user interaction is required.
830
831 Optional 5th arg FILE is the file name to use for this purpose.
832 That is different from `buffer-file-name' when handling `write-region'
833 \(for example).
834
835 The variable `select-safe-coding-system-accept-default-p', if
836 non-nil, overrides ACCEPT-DEFAULT-P.
837
838 Kludgy feature: if FROM is a string, the string is the target text,
839 and TO is ignored."
840 (if (and default-coding-system
841 (not (listp default-coding-system)))
842 (setq default-coding-system (list default-coding-system)))
843
844 (let ((no-other-defaults nil)
845 auto-cs)
846 (unless (or (stringp from) find-file-literally)
847 ;; Find an auto-coding that is specified for the the current
848 ;; buffer and file from the region FROM and TO.
849 (save-excursion
850 (save-restriction
851 (widen)
852 (goto-char from)
853 (setq auto-cs (find-auto-coding (or file buffer-file-name "")
854 (- to from)))
855 (if auto-cs
856 (if (coding-system-p (car auto-cs))
857 (setq auto-cs (car auto-cs))
858 (display-warning
859 :warning
860 (format "\
861 Invalid coding system `%s' is specified
862 for the current buffer/file by the %s.
863 It is highly recommended to fix it before writing to a file."
864 (car auto-cs)
865 (if (eq (cdr auto-cs) :coding) ":coding tag"
866 (format "variable `%s'" (cdr auto-cs)))))
867 (or (yes-or-no-p "Really proceed with writing? ")
868 (error "Save aborted"))
869 (setq auto-cs nil))))))
870
871 (if (eq (car default-coding-system) t)
872 (setq no-other-defaults t
873 default-coding-system (cdr default-coding-system)))
874
875 ;; Change elements of the list to (coding . base-coding).
876 (setq default-coding-system
877 (mapcar (function (lambda (x) (cons x (coding-system-base x))))
878 default-coding-system))
879
880 (if (and auto-cs (not no-other-defaults))
881 ;; If the file has a coding cookie, try to use it before anything
882 ;; else (i.e. before default-coding-system which will typically come
883 ;; from file-coding-system-alist).
884 (let ((base (coding-system-base auto-cs)))
885 (or (memq base '(nil undecided))
886 (rassq base default-coding-system)
887 (push (cons auto-cs base) default-coding-system))))
888
889 (unless no-other-defaults
890 ;; If buffer-file-coding-system is not nil nor undecided, append it
891 ;; to the defaults.
892 (if buffer-file-coding-system
893 (let ((base (coding-system-base buffer-file-coding-system)))
894 (or (eq base 'undecided)
895 (rassq base default-coding-system)
896 (setq default-coding-system
897 (append default-coding-system
898 (list (cons buffer-file-coding-system base)))))))
899
900 ;; If default-buffer-file-coding-system is not nil nor undecided,
901 ;; append it to the defaults.
902 (if default-buffer-file-coding-system
903 (let ((base (coding-system-base default-buffer-file-coding-system)))
904 (or (eq base 'undecided)
905 (rassq base default-coding-system)
906 (setq default-coding-system
907 (append default-coding-system
908 (list (cons default-buffer-file-coding-system
909 base)))))))
910
911 ;; If the most preferred coding system has the property mime-charset,
912 ;; append it to the defaults.
913 (let ((preferred (coding-system-priority-list t))
914 base)
915 (and (coding-system-p preferred)
916 (setq base (coding-system-base preferred))
917 (coding-system-get preferred :mime-charset)
918 (not (rassq base default-coding-system))
919 (setq default-coding-system
920 (append default-coding-system
921 (list (cons preferred base)))))))
922
923 (if select-safe-coding-system-accept-default-p
924 (setq accept-default-p select-safe-coding-system-accept-default-p))
925
926 ;; Decide the eol-type from the top of the default codings,
927 ;; buffer-file-coding-system, or
928 ;; default-buffer-file-coding-system.
929 (if default-coding-system
930 (let ((default-eol-type (coding-system-eol-type
931 (caar default-coding-system))))
932 (if (and (vectorp default-eol-type) buffer-file-coding-system)
933 (setq default-eol-type (coding-system-eol-type
934 buffer-file-coding-system)))
935 (if (and (vectorp default-eol-type) default-buffer-file-coding-system)
936 (setq default-eol-type (coding-system-eol-type
937 default-buffer-file-coding-system)))
938 (if (and default-eol-type (not (vectorp default-eol-type)))
939 (dolist (elt default-coding-system)
940 (setcar elt (coding-system-change-eol-conversion
941 (car elt) default-eol-type))))))
942
943 (let ((codings (find-coding-systems-region from to))
944 (coding-system nil)
945 (tick (if (not (stringp from)) (buffer-modified-tick)))
946 safe rejected unsafe)
947 (if (eq (car codings) 'undecided)
948 ;; Any coding system is ok.
949 (setq coding-system (caar default-coding-system))
950 ;; Reverse the list so that elements are accumulated in safe,
951 ;; rejected, and unsafe in the correct order.
952 (setq default-coding-system (nreverse default-coding-system))
953
954 ;; Classify the defaults into safe, rejected, and unsafe.
955 (dolist (elt default-coding-system)
956 (if (or (eq (car codings) 'undecided)
957 (memq (cdr elt) codings))
958 (if (and (functionp accept-default-p)
959 (not (funcall accept-default-p (cdr elt))))
960 (push (car elt) rejected)
961 (push (car elt) safe))
962 (push (car elt) unsafe)))
963 (if safe
964 (setq coding-system (car safe))))
965
966 ;; If all the defaults failed, ask a user.
967 (when (not coding-system)
968 (setq coding-system (select-safe-coding-system-interactively
969 from to codings unsafe rejected (car codings))))
970
971 ;; Check we're not inconsistent with what `coding:' spec &c would
972 ;; give when file is re-read.
973 ;; But don't do this if we explicitly ignored the cookie
974 ;; by using `find-file-literally'.
975 (when (and auto-cs
976 (not (and
977 coding-system
978 (memq (coding-system-type coding-system) '(0 5)))))
979 ;; Merge coding-system and auto-cs as far as possible.
980 (if (not coding-system)
981 (setq coding-system auto-cs)
982 (if (not auto-cs)
983 (setq auto-cs coding-system)
984 (let ((eol-type-1 (coding-system-eol-type coding-system))
985 (eol-type-2 (coding-system-eol-type auto-cs)))
986 (if (eq (coding-system-base coding-system) 'undecided)
987 (setq coding-system (coding-system-change-text-conversion
988 coding-system auto-cs))
989 (if (eq (coding-system-base auto-cs) 'undecided)
990 (setq auto-cs (coding-system-change-text-conversion
991 auto-cs coding-system))))
992 (if (vectorp eol-type-1)
993 (or (vectorp eol-type-2)
994 (setq coding-system (coding-system-change-eol-conversion
995 coding-system eol-type-2)))
996 (if (vectorp eol-type-2)
997 (setq auto-cs (coding-system-change-eol-conversion
998 auto-cs eol-type-1)))))))
999
1000 (if (and auto-cs
1001 ;; Don't barf if writing a compressed file, say.
1002 ;; This check perhaps isn't ideal, but is probably
1003 ;; the best thing to do.
1004 (not (auto-coding-alist-lookup (or file buffer-file-name "")))
1005 (not (coding-system-equal coding-system auto-cs)))
1006 (unless (yes-or-no-p
1007 (format "Selected encoding %s disagrees with \
1008 %s specified by file contents. Really save (else edit coding cookies \
1009 and try again)? " coding-system auto-cs))
1010 (error "Save aborted"))))
1011 (when (and tick (/= tick (buffer-modified-tick)))
1012 (error "Cancelled because the buffer was modified"))
1013 coding-system)))
1014
1015 (setq select-safe-coding-system-function 'select-safe-coding-system)
1016
1017 (defun select-message-coding-system ()
1018 "Return a coding system to encode the outgoing message of the current buffer.
1019 It at first tries the first coding system found in these variables
1020 in this order:
1021 (1) local value of `buffer-file-coding-system'
1022 (2) value of `sendmail-coding-system'
1023 (3) value of `default-sendmail-coding-system'
1024 (4) value of `default-buffer-file-coding-system'
1025 If the found coding system can't encode the current buffer,
1026 or none of them are bound to a coding system,
1027 it asks the user to select a proper coding system."
1028 (let ((coding (or (and (local-variable-p 'buffer-file-coding-system)
1029 buffer-file-coding-system)
1030 sendmail-coding-system
1031 default-sendmail-coding-system
1032 default-buffer-file-coding-system)))
1033 (if (eq coding 'no-conversion)
1034 ;; We should never use no-conversion for outgoing mail.
1035 (setq coding nil))
1036 (if (fboundp select-safe-coding-system-function)
1037 (funcall select-safe-coding-system-function
1038 (point-min) (point-max) coding
1039 (function (lambda (x) (coding-system-get x :mime-charset))))
1040 coding)))
1041 \f
1042 ;;; Language support stuff.
1043
1044 (defvar language-info-alist nil
1045 "Alist of language environment definitions.
1046 Each element looks like:
1047 (LANGUAGE-NAME . ((KEY . INFO) ...))
1048 where LANGUAGE-NAME is a string, the name of the language environment,
1049 KEY is a symbol denoting the kind of information, and
1050 INFO is the data associated with KEY.
1051 Meaningful values for KEY include
1052
1053 documentation value is documentation of what this language environment
1054 is meant for, and how to use it.
1055 charset value is a list of the character sets mainly used
1056 by this language environment.
1057 sample-text value is an expression which is evalled to generate
1058 a line of text written using characters appropriate
1059 for this language environment.
1060 setup-function value is a function to call to switch to this
1061 language environment.
1062 exit-function value is a function to call to leave this
1063 language environment.
1064 coding-system value is a list of coding systems that are good
1065 for saving text written in this language environment.
1066 This list serves as suggestions to the user;
1067 in effect, as a kind of documentation.
1068 coding-priority value is a list of coding systems for this language
1069 environment, in order of decreasing priority.
1070 This is used to set up the coding system priority
1071 list when you switch to this language environment.
1072 nonascii-translation
1073 value is a charset of dimension one to use for
1074 converting a unibyte character to multibyte
1075 and vice versa.
1076 input-method value is a default input method for this language
1077 environment.
1078 features value is a list of features requested in this
1079 language environment.
1080 ctext-non-standard-encodings
1081 value is a list of non-standard encoding
1082 names used in extended segments of CTEXT.
1083 See the variable
1084 `ctext-non-standard-encodings' for more
1085 detail.
1086
1087 The following keys take effect only when multibyte characters are
1088 globally disabled, i.e. the value of `default-enable-multibyte-characters'
1089 is nil.
1090
1091 unibyte-display value is a coding system to encode characters
1092 for the terminal. Characters in the range
1093 of 160 to 255 display not as octal escapes,
1094 but as non-ASCII characters in this language
1095 environment.")
1096
1097 (defun get-language-info (lang-env key)
1098 "Return information listed under KEY for language environment LANG-ENV.
1099 KEY is a symbol denoting the kind of information.
1100 For a list of useful values for KEY and their meanings,
1101 see `language-info-alist'."
1102 (if (symbolp lang-env)
1103 (setq lang-env (symbol-name lang-env)))
1104 (let ((lang-slot (assoc-string lang-env language-info-alist t)))
1105 (if lang-slot
1106 (cdr (assq key (cdr lang-slot))))))
1107
1108 (defun set-language-info (lang-env key info)
1109 "Modify part of the definition of language environment LANG-ENV.
1110 Specifically, this stores the information INFO under KEY
1111 in the definition of this language environment.
1112 KEY is a symbol denoting the kind of information.
1113 INFO is the value for that information.
1114
1115 For a list of useful values for KEY and their meanings,
1116 see `language-info-alist'."
1117 (if (symbolp lang-env)
1118 (setq lang-env (symbol-name lang-env)))
1119 (set-language-info-internal lang-env key info)
1120 (if (equal lang-env current-language-environment)
1121 (cond ((eq key 'coding-priority)
1122 (set-language-environment-coding-systems lang-env)
1123 (set-language-environment-charset lang-env))
1124 ((eq key 'input-method)
1125 (set-language-environment-input-method lang-env))
1126 ((eq key 'nonascii-translation)
1127 (set-language-environment-nonascii-translation lang-env))
1128 ((eq key 'charset)
1129 (set-language-environment-charset lang-env))
1130 ((and (not default-enable-multibyte-characters)
1131 (or (eq key 'unibyte-syntax) (eq key 'unibyte-display)))
1132 (set-language-environment-unibyte lang-env)))))
1133
1134 (defun set-language-info-internal (lang-env key info)
1135 "Internal use only.
1136 Arguments are the same as `set-language-info'."
1137 (let (lang-slot key-slot)
1138 (setq lang-slot (assoc lang-env language-info-alist))
1139 (if (null lang-slot) ; If no slot for the language, add it.
1140 (setq lang-slot (list lang-env)
1141 language-info-alist (cons lang-slot language-info-alist)))
1142 (setq key-slot (assq key lang-slot))
1143 (if (null key-slot) ; If no slot for the key, add it.
1144 (progn
1145 (setq key-slot (list key))
1146 (setcdr lang-slot (cons key-slot (cdr lang-slot)))))
1147 (setcdr key-slot (purecopy info))
1148 ;; Update the custom-type of `current-language-environment'.
1149 (put 'current-language-environment 'custom-type
1150 (cons 'choice (mapcar
1151 (lambda (lang)
1152 (list 'const lang))
1153 (sort (mapcar 'car language-info-alist) 'string<))))))
1154
1155 (defun set-language-info-alist (lang-env alist &optional parents)
1156 "Store ALIST as the definition of language environment LANG-ENV.
1157 ALIST is an alist of KEY and INFO values. See the documentation of
1158 `language-info-alist' for the meanings of KEY and INFO.
1159
1160 Optional arg PARENTS is a list of parent menu names; it specifies
1161 where to put this language environment in the
1162 Describe Language Environment and Set Language Environment menus.
1163 For example, (\"European\") means to put this language environment
1164 in the European submenu in each of those two menus."
1165 (if (symbolp lang-env)
1166 (setq lang-env (symbol-name lang-env)))
1167 (let ((describe-map describe-language-environment-map)
1168 (setup-map setup-language-environment-map))
1169 (if parents
1170 (let ((l parents)
1171 map parent-symbol parent prompt)
1172 (while l
1173 (if (symbolp (setq parent-symbol (car l)))
1174 (setq parent (symbol-name parent))
1175 (setq parent parent-symbol parent-symbol (intern parent)))
1176 (setq map (lookup-key describe-map (vector parent-symbol)))
1177 ;; This prompt string is for define-prefix-command, so
1178 ;; that the map it creates will be suitable for a menu.
1179 (or map (setq prompt (format "%s Environment" parent)))
1180 (if (not map)
1181 (progn
1182 (setq map (intern (format "describe-%s-environment-map"
1183 (downcase parent))))
1184 (define-prefix-command map nil prompt)
1185 (define-key-after describe-map (vector parent-symbol)
1186 (cons parent map) t)))
1187 (setq describe-map (symbol-value map))
1188 (setq map (lookup-key setup-map (vector parent-symbol)))
1189 (if (not map)
1190 (progn
1191 (setq map (intern (format "setup-%s-environment-map"
1192 (downcase parent))))
1193 (define-prefix-command map nil prompt)
1194 (define-key-after setup-map (vector parent-symbol)
1195 (cons parent map) t)))
1196 (setq setup-map (symbol-value map))
1197 (setq l (cdr l)))))
1198
1199 ;; Set up menu items for this language env.
1200 (let ((doc (assq 'documentation alist)))
1201 (when doc
1202 (define-key-after describe-map (vector (intern lang-env))
1203 (cons lang-env 'describe-specified-language-support) t)))
1204 (define-key-after setup-map (vector (intern lang-env))
1205 (cons lang-env 'setup-specified-language-environment) t)
1206
1207 (dolist (elt alist)
1208 (set-language-info-internal lang-env (car elt) (cdr elt)))
1209
1210 (if (equal lang-env current-language-environment)
1211 (set-language-environment lang-env))))
1212
1213 (defun read-language-name (key prompt &optional default)
1214 "Read a language environment name which has information for KEY.
1215 If KEY is nil, read any language environment.
1216 Prompt with PROMPT. DEFAULT is the default choice of language environment.
1217 This returns a language environment name as a string."
1218 (let* ((completion-ignore-case t)
1219 (name (completing-read prompt
1220 language-info-alist
1221 (and key
1222 (function (lambda (elm) (and (listp elm) (assq key elm)))))
1223 t nil nil default)))
1224 (if (and (> (length name) 0)
1225 (or (not key)
1226 (get-language-info name key)))
1227 name)))
1228 \f
1229 ;;; Multilingual input methods.
1230 (defgroup leim nil
1231 "LEIM: Libraries of Emacs Input Methods."
1232 :group 'mule)
1233
1234 (defconst leim-list-file-name "leim-list.el"
1235 "Name of LEIM list file.
1236 This file contains a list of libraries of Emacs input methods (LEIM)
1237 in the format of Lisp expression for registering each input method.
1238 Emacs loads this file at startup time.")
1239
1240 (defvar leim-list-header (format
1241 ";;; %s -- list of LEIM (Library of Emacs Input Method) -*-coding: iso-2022-7bit;-*-
1242 ;;
1243 ;; This file contains a list of LEIM (Library of Emacs Input Method)
1244 ;; methods in the same directory as this file. Loading this file
1245 ;; registers all the input methods in Emacs.
1246 ;;
1247 ;; Each entry has the form:
1248 ;; (register-input-method
1249 ;; INPUT-METHOD LANGUAGE-NAME ACTIVATE-FUNC
1250 ;; TITLE DESCRIPTION
1251 ;; ARG ...)
1252 ;; See the function `register-input-method' for the meanings of the arguments.
1253 ;;
1254 ;; If this directory is included in load-path, Emacs automatically
1255 ;; loads this file at startup time.
1256
1257 "
1258 leim-list-file-name)
1259 "Header to be inserted in LEIM list file.")
1260
1261 (defvar leim-list-entry-regexp "^(register-input-method"
1262 "Regexp matching head of each entry in LEIM list file.
1263 See also the variable `leim-list-header'.")
1264
1265 (defvar update-leim-list-functions
1266 '(quail-update-leim-list-file)
1267 "List of functions to call to update LEIM list file.
1268 Each function is called with one arg, LEIM directory name.")
1269
1270 (defun update-leim-list-file (&rest dirs)
1271 "Update LEIM list file in directories DIRS."
1272 (let ((functions update-leim-list-functions))
1273 (while functions
1274 (apply (car functions) dirs)
1275 (setq functions (cdr functions)))))
1276
1277 (defvar current-input-method nil
1278 "The current input method for multilingual text.
1279 If nil, that means no input method is activated now.")
1280 (make-variable-buffer-local 'current-input-method)
1281 (put 'current-input-method 'permanent-local t)
1282
1283 (defvar current-input-method-title nil
1284 "Title string of the current input method shown in mode line.")
1285 (make-variable-buffer-local 'current-input-method-title)
1286 (put 'current-input-method-title 'permanent-local t)
1287
1288 (defcustom default-input-method nil
1289 "Default input method for multilingual text (a string).
1290 This is the input method activated automatically by the command
1291 `toggle-input-method' (\\[toggle-input-method])."
1292 :link '(custom-manual "(emacs)Input Methods")
1293 :group 'mule
1294 :type '(choice (const nil) (string
1295 :completion-ignore-case t
1296 :complete-function widget-string-complete
1297 :completion-alist input-method-alist
1298 :prompt-history input-method-history))
1299 :set-after '(current-language-environment))
1300
1301 (put 'input-method-function 'permanent-local t)
1302
1303 (defvar input-method-history nil
1304 "History list of input methods read from the minibuffer.
1305
1306 Maximum length of the history list is determined by the value
1307 of `history-length', which see.")
1308 (make-variable-buffer-local 'input-method-history)
1309 (put 'input-method-history 'permanent-local t)
1310
1311 (defvar inactivate-current-input-method-function nil
1312 "Function to call for inactivating the current input method.
1313 Every input method should set this to an appropriate value when activated.
1314 This function is called with no argument.
1315
1316 This function should never change the value of `current-input-method'.
1317 It is set to nil by the function `inactivate-input-method'.")
1318 (make-variable-buffer-local 'inactivate-current-input-method-function)
1319 (put 'inactivate-current-input-method-function 'permanent-local t)
1320
1321 (defvar describe-current-input-method-function nil
1322 "Function to call for describing the current input method.
1323 This function is called with no argument.")
1324 (make-variable-buffer-local 'describe-current-input-method-function)
1325 (put 'describe-current-input-method-function 'permanent-local t)
1326
1327 (defvar input-method-alist nil
1328 "Alist of input method names vs how to use them.
1329 Each element has the form:
1330 (INPUT-METHOD LANGUAGE-ENV ACTIVATE-FUNC TITLE DESCRIPTION ARGS...)
1331 See the function `register-input-method' for the meanings of the elements.")
1332
1333 (defun register-input-method (input-method lang-env &rest args)
1334 "Register INPUT-METHOD as an input method for language environment LANG-ENV.
1335
1336 INPUT-METHOD and LANG-ENV are symbols or strings.
1337 ACTIVATE-FUNC is a function to call to activate this method.
1338 TITLE is a string to show in the mode line when this method is active.
1339 DESCRIPTION is a string describing this method and what it is good for.
1340 The ARGS, if any, are passed as arguments to ACTIVATE-FUNC.
1341 All told, the arguments to ACTIVATE-FUNC are INPUT-METHOD and the ARGS.
1342
1343 This function is mainly used in the file \"leim-list.el\" which is
1344 created at Emacs build time, registering all Quail input methods
1345 contained in the Emacs distribution.
1346
1347 In case you want to register a new Quail input method by yourself, be
1348 careful to use the same input method title as given in the third
1349 parameter of `quail-define-package'. (If the values are different, the
1350 string specified in this function takes precedence.)
1351
1352 The commands `describe-input-method' and `list-input-methods' need
1353 these duplicated values to show some information about input methods
1354 without loading the relevant Quail packages.
1355 \n(fn INPUT-METHOD LANG-ENV ACTIVATE-FUNC TITLE DESCRIPTION &rest ARGS)"
1356 (if (symbolp lang-env)
1357 (setq lang-env (symbol-name lang-env)))
1358 (if (symbolp input-method)
1359 (setq input-method (symbol-name input-method)))
1360 (let ((info (cons lang-env args))
1361 (slot (assoc input-method input-method-alist)))
1362 (if slot
1363 (setcdr slot info)
1364 (setq slot (cons input-method info))
1365 (setq input-method-alist (cons slot input-method-alist)))))
1366
1367 (defun read-input-method-name (prompt &optional default inhibit-null)
1368 "Read a name of input method from a minibuffer prompting with PROMPT.
1369 If DEFAULT is non-nil, use that as the default,
1370 and substitute it into PROMPT at the first `%s'.
1371 If INHIBIT-NULL is non-nil, null input signals an error.
1372
1373 The return value is a string."
1374 (if default
1375 (setq prompt (format prompt default)))
1376 (let* ((completion-ignore-case t)
1377 ;; As it is quite normal to change input method in the
1378 ;; minibuffer, we must enable it even if
1379 ;; enable-recursive-minibuffers is currently nil.
1380 (enable-recursive-minibuffers t)
1381 ;; This binding is necessary because input-method-history is
1382 ;; buffer local.
1383 (input-method (completing-read prompt input-method-alist
1384 nil t nil 'input-method-history
1385 default)))
1386 (if (and input-method (symbolp input-method))
1387 (setq input-method (symbol-name input-method)))
1388 (if (> (length input-method) 0)
1389 input-method
1390 (if inhibit-null
1391 (error "No valid input method is specified")))))
1392
1393 (defun activate-input-method (input-method)
1394 "Switch to input method INPUT-METHOD for the current buffer.
1395 If some other input method is already active, turn it off first.
1396 If INPUT-METHOD is nil, deactivate any current input method."
1397 (if (and input-method (symbolp input-method))
1398 (setq input-method (symbol-name input-method)))
1399 (if (and current-input-method
1400 (not (string= current-input-method input-method)))
1401 (inactivate-input-method))
1402 (unless (or current-input-method (null input-method))
1403 (let ((slot (assoc input-method input-method-alist)))
1404 (if (null slot)
1405 (error "Can't activate input method `%s'" input-method))
1406 (setq current-input-method-title nil)
1407 (let ((func (nth 2 slot)))
1408 (if (functionp func)
1409 (apply (nth 2 slot) input-method (nthcdr 5 slot))
1410 (if (and (consp func) (symbolp (car func)) (symbolp (cdr func)))
1411 (progn
1412 (require (cdr func))
1413 (apply (car func) input-method (nthcdr 5 slot)))
1414 (error "Can't activate input method `%s'" input-method))))
1415 (setq current-input-method input-method)
1416 (or (stringp current-input-method-title)
1417 (setq current-input-method-title (nth 3 slot)))
1418 (unwind-protect
1419 (run-hooks 'input-method-activate-hook)
1420 (force-mode-line-update)))))
1421
1422 (defun inactivate-input-method ()
1423 "Turn off the current input method."
1424 (when current-input-method
1425 (if input-method-history
1426 (unless (string= current-input-method (car input-method-history))
1427 (setq input-method-history
1428 (cons current-input-method
1429 (delete current-input-method input-method-history))))
1430 (setq input-method-history (list current-input-method)))
1431 (unwind-protect
1432 (progn
1433 (setq input-method-function nil
1434 current-input-method-title nil)
1435 (funcall inactivate-current-input-method-function))
1436 (unwind-protect
1437 (run-hooks 'input-method-inactivate-hook)
1438 (setq current-input-method nil)
1439 (force-mode-line-update)))))
1440
1441 (defun set-input-method (input-method &optional interactive)
1442 "Select and activate input method INPUT-METHOD for the current buffer.
1443 This also sets the default input method to the one you specify.
1444 If INPUT-METHOD is nil, this function turns off the input method, and
1445 also causes you to be prompted for a name of an input method the next
1446 time you invoke \\[toggle-input-method].
1447 When called interactively, the optional arg INTERACTIVE is non-nil,
1448 which marks the variable `default-input-method' as set for Custom buffers.
1449
1450 To deactivate the input method interactively, use \\[toggle-input-method].
1451 To deactivate it programmatically, use `inactivate-input-method'."
1452 (interactive
1453 (let* ((default (or (car input-method-history) default-input-method)))
1454 (list (read-input-method-name
1455 (if default "Select input method (default %s): " "Select input method: ")
1456 default t)
1457 t)))
1458 (activate-input-method input-method)
1459 (setq default-input-method input-method)
1460 (when interactive
1461 (customize-mark-as-set 'default-input-method))
1462 default-input-method)
1463
1464 (defvar toggle-input-method-active nil
1465 "Non-nil inside `toggle-input-method'.")
1466
1467 (defun toggle-input-method (&optional arg interactive)
1468 "Enable or disable multilingual text input method for the current buffer.
1469 Only one input method can be enabled at any time in a given buffer.
1470
1471 The normal action is to enable an input method if none was
1472 enabled, and disable the current one otherwise. Which input method
1473 to enable can be determined in various ways--either the one most
1474 recently used, or the one specified by `default-input-method', or
1475 as a last resort by reading the name of an input method in the
1476 minibuffer.
1477
1478 With a prefix argument, read an input method name with the minibuffer
1479 and enable that one. The default is the most recent input method specified
1480 \(not including the currently active input method, if any).
1481
1482 When called interactively, the optional arg INTERACTIVE is non-nil,
1483 which marks the variable `default-input-method' as set for Custom buffers."
1484
1485 (interactive "P\np")
1486 (if toggle-input-method-active
1487 (error "Recursive use of `toggle-input-method'"))
1488 (if (and current-input-method (not arg))
1489 (inactivate-input-method)
1490 (let ((toggle-input-method-active t)
1491 (default (or (car input-method-history) default-input-method)))
1492 (if (and arg default (equal current-input-method default)
1493 (> (length input-method-history) 1))
1494 (setq default (nth 1 input-method-history)))
1495 (activate-input-method
1496 (if (or arg (not default))
1497 (progn
1498 (read-input-method-name
1499 (if default "Input method (default %s): " "Input method: " )
1500 default t))
1501 default))
1502 (unless default-input-method
1503 (prog1
1504 (setq default-input-method current-input-method)
1505 (when interactive
1506 (customize-mark-as-set 'default-input-method)))))))
1507
1508 (autoload 'help-buffer "help-mode")
1509
1510 (defun describe-input-method (input-method)
1511 "Describe input method INPUT-METHOD."
1512 (interactive
1513 (list (read-input-method-name
1514 "Describe input method (default current choice): ")))
1515 (if (and input-method (symbolp input-method))
1516 (setq input-method (symbol-name input-method)))
1517 (help-setup-xref (list #'describe-input-method
1518 (or input-method current-input-method))
1519 (interactive-p))
1520
1521 (if (null input-method)
1522 (describe-current-input-method)
1523 (let ((current current-input-method))
1524 (condition-case nil
1525 (progn
1526 (save-excursion
1527 (activate-input-method input-method)
1528 (describe-current-input-method))
1529 (activate-input-method current))
1530 (error
1531 (activate-input-method current)
1532 (help-setup-xref (list #'describe-input-method input-method)
1533 (interactive-p))
1534 (with-output-to-temp-buffer (help-buffer)
1535 (let ((elt (assoc input-method input-method-alist)))
1536 (princ (format
1537 "Input method: %s (`%s' in mode line) for %s\n %s\n"
1538 input-method (nth 3 elt) (nth 1 elt) (nth 4 elt))))))))))
1539
1540 (defun describe-current-input-method ()
1541 "Describe the input method currently in use.
1542 This is a subroutine for `describe-input-method'."
1543 (if current-input-method
1544 (if (and (symbolp describe-current-input-method-function)
1545 (fboundp describe-current-input-method-function))
1546 (funcall describe-current-input-method-function)
1547 (message "No way to describe the current input method `%s'"
1548 current-input-method)
1549 (ding))
1550 (error "No input method is activated now")))
1551
1552 (defun read-multilingual-string (prompt &optional initial-input input-method)
1553 "Read a multilingual string from minibuffer, prompting with string PROMPT.
1554 The input method selected last time is activated in minibuffer.
1555 If optional second arg INITIAL-INPUT is non-nil, insert it in the minibuffer
1556 initially.
1557 Optional 3rd argument INPUT-METHOD specifies the input method
1558 to be activated instead of the one selected last time. It is a symbol
1559 or a string."
1560 (setq input-method
1561 (or input-method
1562 current-input-method
1563 default-input-method
1564 (read-input-method-name "Input method: " nil t)))
1565 (if (and input-method (symbolp input-method))
1566 (setq input-method (symbol-name input-method)))
1567 (let ((prev-input-method current-input-method))
1568 (unwind-protect
1569 (progn
1570 (activate-input-method input-method)
1571 (read-string prompt initial-input nil nil t))
1572 (activate-input-method prev-input-method))))
1573
1574 ;; Variables to control behavior of input methods. All input methods
1575 ;; should react to these variables.
1576
1577 (defcustom input-method-verbose-flag 'default
1578 "A flag to control extra guidance given by input methods.
1579 The value should be nil, t, `complex-only', or `default'.
1580
1581 The extra guidance is done by showing list of available keys in echo
1582 area. When you use the input method in the minibuffer, the guidance
1583 is shown at the bottom short window (split from the existing window).
1584
1585 If the value is t, extra guidance is always given, if the value is
1586 nil, extra guidance is always suppressed.
1587
1588 If the value is `complex-only', only complex input methods such as
1589 `chinese-py' and `japanese' give extra guidance.
1590
1591 If the value is `default', complex input methods always give extra
1592 guidance, but simple input methods give it only when you are not in
1593 the minibuffer.
1594
1595 See also the variable `input-method-highlight-flag'."
1596 :type '(choice (const :tag "Always" t) (const :tag "Never" nil)
1597 (const complex-only) (const default))
1598 :group 'mule)
1599
1600 (defcustom input-method-highlight-flag t
1601 "If this flag is non-nil, input methods highlight partially-entered text.
1602 For instance, while you are in the middle of a Quail input method sequence,
1603 the text inserted so far is temporarily underlined.
1604 The underlining goes away when you finish or abort the input method sequence.
1605 See also the variable `input-method-verbose-flag'."
1606 :type 'boolean
1607 :group 'mule)
1608
1609 (defcustom input-method-activate-hook nil
1610 "Normal hook run just after an input method is activated.
1611
1612 The variable `current-input-method' keeps the input method name
1613 just activated."
1614 :type 'hook
1615 :group 'mule)
1616
1617 (defcustom input-method-inactivate-hook nil
1618 "Normal hook run just after an input method is inactivated.
1619
1620 The variable `current-input-method' still keeps the input method name
1621 just inactivated."
1622 :type 'hook
1623 :group 'mule)
1624
1625 (defcustom input-method-after-insert-chunk-hook nil
1626 "Normal hook run just after an input method insert some chunk of text."
1627 :type 'hook
1628 :group 'mule)
1629
1630 (defvar input-method-exit-on-first-char nil
1631 "This flag controls when an input method returns.
1632 Usually, the input method does not return while there's a possibility
1633 that it may find a different translation if a user types another key.
1634 But, if this flag is non-nil, the input method returns as soon as
1635 the current key sequence gets long enough to have some valid translation.")
1636
1637 (defcustom input-method-use-echo-area nil
1638 "This flag controls how an input method shows an intermediate key sequence.
1639 Usually, the input method inserts the intermediate key sequence,
1640 or candidate translations corresponding to the sequence,
1641 at point in the current buffer.
1642 But, if this flag is non-nil, it displays them in echo area instead."
1643 :type 'hook
1644 :group 'mule)
1645
1646 (defvar input-method-exit-on-invalid-key nil
1647 "This flag controls the behavior of an input method on invalid key input.
1648 Usually, when a user types a key which doesn't start any character
1649 handled by the input method, the key is handled by turning off the
1650 input method temporarily. After that key, the input method is re-enabled.
1651 But, if this flag is non-nil, the input method is never back on.")
1652
1653 \f
1654 (defcustom set-language-environment-hook nil
1655 "Normal hook run after some language environment is set.
1656
1657 When you set some hook function here, that effect usually should not
1658 be inherited to another language environment. So, you had better set
1659 another function in `exit-language-environment-hook' (which see) to
1660 cancel the effect."
1661 :type 'hook
1662 :group 'mule)
1663
1664 (defcustom exit-language-environment-hook nil
1665 "Normal hook run after exiting from some language environment.
1666 When this hook is run, the variable `current-language-environment'
1667 is still bound to the language environment being exited.
1668
1669 This hook is mainly used for canceling the effect of
1670 `set-language-environment-hook' (which see)."
1671 :type 'hook
1672 :group 'mule)
1673
1674 (put 'setup-specified-language-environment 'apropos-inhibit t)
1675
1676 (defun setup-specified-language-environment ()
1677 "Switch to a specified language environment."
1678 (interactive)
1679 (let (language-name)
1680 (if (and (symbolp last-command-event)
1681 (or (not (eq last-command-event 'Default))
1682 (setq last-command-event 'English))
1683 (setq language-name (symbol-name last-command-event)))
1684 (prog1
1685 (set-language-environment language-name)
1686 (customize-mark-as-set 'current-language-environment))
1687 (error "Bogus calling sequence"))))
1688
1689 (defcustom current-language-environment "English"
1690 "The last language environment specified with `set-language-environment'.
1691 This variable should be set only with \\[customize], which is equivalent
1692 to using the function `set-language-environment'."
1693 :link '(custom-manual "(emacs)Language Environments")
1694 :set (lambda (symbol value) (set-language-environment value))
1695 :get (lambda (x)
1696 (or (car-safe (assoc-string
1697 (if (symbolp current-language-environment)
1698 (symbol-name current-language-environment)
1699 current-language-environment)
1700 language-info-alist t))
1701 "English"))
1702 ;; custom type will be updated with `set-language-info'.
1703 :type (if language-info-alist
1704 (cons 'choice (mapcar
1705 (lambda (lang)
1706 (list 'const lang))
1707 (sort (mapcar 'car language-info-alist) 'string<)))
1708 'string)
1709 :initialize 'custom-initialize-default
1710 :group 'mule)
1711
1712 (defun reset-language-environment ()
1713 "Reset multilingual environment of Emacs to the default status.
1714
1715 The default status is as follows:
1716
1717 The default value of `buffer-file-coding-system' is nil.
1718 The default coding system for process I/O is nil.
1719 The default value for the command `set-terminal-coding-system' is nil.
1720 The default value for the command `set-keyboard-coding-system' is nil.
1721
1722 The order of priorities of coding systems are as follows:
1723 utf-8
1724 iso-2022-7bit
1725 iso-latin-1
1726 iso-2022-7bit-lock
1727 iso-2022-8bit-ss2
1728 emacs-mule
1729 raw-text"
1730 (interactive)
1731 ;; This function formerly set default-enable-multibyte-characters to t,
1732 ;; but that is incorrect. It should not alter the unibyte/multibyte choice.
1733
1734 (set-coding-system-priority
1735 'utf-8
1736 'iso-2022-7bit
1737 'iso-latin-1
1738 'iso-2022-7bit-lock
1739 'iso-2022-8bit-ss2
1740 'emacs-mule
1741 'raw-text)
1742
1743 (set-default-coding-systems nil)
1744 (setq default-sendmail-coding-system 'iso-latin-1)
1745 ;; On Darwin systems, this should be utf-8, but when this file is loaded
1746 ;; utf-8 is not yet defined, so we set it in set-locale-environment instead.
1747 (setq default-file-name-coding-system 'iso-latin-1)
1748 ;; Preserve eol-type from existing default-process-coding-systems.
1749 ;; On non-unix-like systems in particular, these may have been set
1750 ;; carefully by the user, or by the startup code, to deal with the
1751 ;; users shell appropriately, so should not be altered by changing
1752 ;; language environment.
1753 (let ((output-coding
1754 ;; When bootstrapping, coding-systems are not defined yet, so
1755 ;; we need to catch the error from check-coding-system.
1756 (condition-case nil
1757 (coding-system-change-text-conversion
1758 (car default-process-coding-system) 'undecided)
1759 (coding-system-error 'undecided)))
1760 (input-coding
1761 (condition-case nil
1762 (coding-system-change-text-conversion
1763 (cdr default-process-coding-system) 'iso-latin-1)
1764 (coding-system-error 'iso-latin-1))))
1765 (setq default-process-coding-system
1766 (cons output-coding input-coding)))
1767
1768 ;; Don't alter the terminal and keyboard coding systems here.
1769 ;; The terminal still supports the same coding system
1770 ;; that it supported a minute ago.
1771 ;; (set-terminal-coding-system-internal nil)
1772 ;; (set-keyboard-coding-system-internal nil)
1773
1774 ;; Back in Emacs-20, it was necessary to provide some fallback implicit
1775 ;; conversion, because almost no packages handled coding-system issues.
1776 ;; Nowadays it'd just paper over bugs.
1777 ;; (set-unibyte-charset 'iso-8859-1)
1778 )
1779
1780 (reset-language-environment)
1781
1782 (defun set-display-table-and-terminal-coding-system (language-name &optional coding-system display)
1783 "Set up the display table and terminal coding system for LANGUAGE-NAME."
1784 (let ((coding (get-language-info language-name 'unibyte-display)))
1785 (if (and coding
1786 (or (not coding-system)
1787 (coding-system-equal coding coding-system)))
1788 (standard-display-european-internal)
1789 ;; The following 2 lines undo the 8-bit display that we set up
1790 ;; in standard-display-european-internal, which see. This is in
1791 ;; case the user has used standard-display-european earlier in
1792 ;; this session. (The MS-DOS port doesn't use that setup, so it
1793 ;; doesn't need to undo it.)
1794 (when standard-display-table
1795 (dotimes (i 128)
1796 (aset standard-display-table (+ i 128) nil))))
1797 (or (eq window-system 'pc)
1798 (set-terminal-coding-system (or coding-system coding) display))))
1799
1800 (defun set-language-environment (language-name)
1801 "Set up multi-lingual environment for using LANGUAGE-NAME.
1802 This sets the coding system priority and the default input method
1803 and sometimes other things. LANGUAGE-NAME should be a string
1804 which is the name of a language environment. For example, \"Latin-1\"
1805 specifies the character set for the major languages of Western Europe."
1806 (interactive (list (read-language-name
1807 nil
1808 "Set language environment (default English): ")))
1809 (if language-name
1810 (if (symbolp language-name)
1811 (setq language-name (symbol-name language-name)))
1812 (setq language-name "English"))
1813 (let ((slot (assoc-string language-name language-info-alist t)))
1814 (unless slot
1815 (error "Language environment not defined: %S" language-name))
1816 (setq language-name (car slot)))
1817 (if current-language-environment
1818 (let ((func (get-language-info current-language-environment
1819 'exit-function)))
1820 (run-hooks 'exit-language-environment-hook)
1821 (if (functionp func) (funcall func))))
1822
1823 (reset-language-environment)
1824 ;; The features might set up coding systems.
1825 (let ((required-features (get-language-info language-name 'features)))
1826 (while required-features
1827 (require (car required-features))
1828 (setq required-features (cdr required-features))))
1829
1830 (setq current-language-environment language-name)
1831
1832 (set-language-environment-coding-systems language-name)
1833 (set-language-environment-input-method language-name)
1834 (set-language-environment-nonascii-translation language-name)
1835 (set-language-environment-charset language-name)
1836 ;; Unibyte setups if necessary.
1837 (unless default-enable-multibyte-characters
1838 (set-language-environment-unibyte language-name))
1839
1840 (let ((func (get-language-info language-name 'setup-function)))
1841 (if (functionp func)
1842 (funcall func)))
1843
1844 (setq current-iso639-language
1845 (get-language-info language-name 'iso639-language))
1846
1847 (run-hooks 'set-language-environment-hook)
1848 (force-mode-line-update t))
1849
1850 (define-widget 'charset 'symbol
1851 "An Emacs charset."
1852 :tag "Charset"
1853 :complete-function (lambda ()
1854 (interactive)
1855 (lisp-complete-symbol 'charsetp))
1856 :completion-ignore-case t
1857 :value 'ascii
1858 :validate (lambda (widget)
1859 (unless (charsetp (widget-value widget))
1860 (widget-put widget :error (format "Invalid charset: %S"
1861 (widget-value widget)))
1862 widget))
1863 :prompt-history 'charset-history)
1864
1865 (defcustom language-info-custom-alist nil
1866 "Customizations of language environment parameters.
1867 Value is an alist with elements like those of `language-info-alist'.
1868 These are used to set values in `language-info-alist' which replace
1869 the defaults. A typical use is replacing the default input method for
1870 the environment. Use \\[describe-language-environment] to find the environment's settings.
1871
1872 This option is intended for use at startup. Removing items doesn't
1873 remove them from the language info until you next restart Emacs.
1874
1875 Setting this variable directly does not take effect. See
1876 `set-language-info-alist' for use in programs."
1877 :group 'mule
1878 :version "23.1"
1879 :set (lambda (s v)
1880 (custom-set-default s v)
1881 ;; Can't do this before language environments are set up.
1882 (when v
1883 ;; modify language-info-alist
1884 (dolist (elt v)
1885 (set-language-info-alist (car elt) (cdr elt)))
1886 ;; re-set the environment in case its parameters changed
1887 (set-language-environment current-language-environment)))
1888 :type `(alist
1889 :key-type (string :tag "Language environment"
1890 :completion-ignore-case t
1891 :complete-function widget-string-complete
1892 :completion-alist language-info-alist)
1893 :value-type
1894 (alist :key-type symbol
1895 :options ((documentation string)
1896 (charset (repeat charset))
1897 (sample-text string)
1898 (setup-function function)
1899 (exit-function function)
1900 (coding-system (repeat coding-system))
1901 (coding-priority (repeat coding-system))
1902 (nonascii-translation charset)
1903 (input-method
1904 (string
1905 :completion-ignore-case t
1906 :complete-function widget-string-complete
1907 :completion-alist input-method-alist
1908 :prompt-history input-method-history))
1909 (features (repeat symbol))
1910 (unibyte-display coding-system)))))
1911
1912 (declare-function x-server-vendor "xfns.c" (&optional terminal))
1913 (declare-function x-server-version "xfns.c" (&optional terminal))
1914
1915 (defun standard-display-european-internal ()
1916 ;; Actually set up direct output of non-ASCII characters.
1917 (standard-display-8bit (if (eq window-system 'pc) 128 160) 255)
1918 ;; Unibyte Emacs on MS-DOS wants to display all 8-bit characters with
1919 ;; the native font, and codes 160 and 146 stand for something very
1920 ;; different there.
1921 (or (and (eq window-system 'pc) (not default-enable-multibyte-characters))
1922 (progn
1923 ;; Most X fonts used to do the wrong thing for latin-1 code 160.
1924 (unless (and (eq window-system 'x)
1925 ;; XFree86 4 has fixed the fonts.
1926 (string= "The XFree86 Project, Inc" (x-server-vendor))
1927 (> (aref (number-to-string (nth 2 (x-server-version))) 0)
1928 ?3))
1929 ;; Make non-line-break space display as a plain space.
1930 (aset standard-display-table 160 [32]))
1931 ;; Most Windows programs send out apostrophes as \222. Most X fonts
1932 ;; don't contain a character at that position. Map it to the ASCII
1933 ;; apostrophe. [This is actually RIGHT SINGLE QUOTATION MARK,
1934 ;; U+2019, normally from the windows-1252 character set. XFree 4
1935 ;; fonts probably have the appropriate glyph at this position,
1936 ;; so they could use standard-display-8bit. It's better to use a
1937 ;; proper windows-1252 coding system. --fx]
1938 (aset standard-display-table 146 [39]))))
1939
1940 (defun set-language-environment-coding-systems (language-name)
1941 "Do various coding system setups for language environment LANGUAGE-NAME."
1942 (let* ((priority (get-language-info language-name 'coding-priority))
1943 (default-coding (car priority))
1944 (eol-type (coding-system-eol-type default-buffer-file-coding-system)))
1945 (when priority
1946 (set-default-coding-systems
1947 (if (memq eol-type '(0 1 2 unix dos mac))
1948 (coding-system-change-eol-conversion default-coding eol-type)
1949 default-coding))
1950 (setq default-sendmail-coding-system default-coding)
1951 (apply 'set-coding-system-priority priority))))
1952
1953 (defun set-language-environment-input-method (language-name)
1954 "Do various input method setups for language environment LANGUAGE-NAME."
1955 (let ((input-method (get-language-info language-name 'input-method)))
1956 (when input-method
1957 (setq default-input-method input-method)
1958 (if input-method-history
1959 (setq input-method-history
1960 (cons input-method
1961 (delete input-method input-method-history)))))))
1962
1963 (defun set-language-environment-nonascii-translation (language-name)
1964 "Do unibyte/multibyte translation setup for language environment LANGUAGE-NAME."
1965 ;; Note: For DOS, we assumed that the charset cpXXX is already
1966 ;; defined.
1967 (let ((nonascii (get-language-info language-name 'nonascii-translation)))
1968 (if (eq window-system 'pc)
1969 (setq nonascii (intern "cp%d" dos-codepage)))
1970 (or (and (charsetp nonascii)
1971 (get-charset-property nonascii :ascii-compatible-p))
1972 (setq nonascii 'iso-8859-1))
1973 ;; Back in Emacs-20, it was necessary to provide some fallback implicit
1974 ;; conversion, because almost no packages handled coding-system issues.
1975 ;; Nowadays it'd just paper over bugs.
1976 ;; (set-unibyte-charset nonascii)
1977 ))
1978
1979 (defun set-language-environment-charset (language-name)
1980 "Do various charset setups for language environment LANGUAGE-NAME."
1981 ;; Put higher priorities to such charsets that are supported by the
1982 ;; coding systems of higher priorities in this environment.
1983 (let ((charsets (get-language-info language-name 'charset)))
1984 (dolist (coding (get-language-info language-name 'coding-priority))
1985 (setq charsets (append charsets (coding-system-charset-list coding))))
1986 (if charsets
1987 (apply 'set-charset-priority charsets))))
1988
1989 (defun set-language-environment-unibyte (language-name)
1990 "Do various unibyte-mode setups for language environment LANGUAGE-NAME."
1991 (set-display-table-and-terminal-coding-system language-name))
1992
1993 (defsubst princ-list (&rest args)
1994 "Print all arguments with `princ', then print \"\\n\"."
1995 (while args (princ (car args)) (setq args (cdr args)))
1996 (princ "\n"))
1997
1998 (put 'describe-specified-language-support 'apropos-inhibit t)
1999
2000 ;; Print language-specific information such as input methods,
2001 ;; charsets, and coding systems. This function is intended to be
2002 ;; called from the menu:
2003 ;; [menu-bar mule describe-language-environment LANGUAGE]
2004 ;; and should not run it by `M-x describe-current-input-method-function'.
2005 (defun describe-specified-language-support ()
2006 "Describe how Emacs supports the specified language environment."
2007 (interactive)
2008 (let (language-name)
2009 (if (not (and (symbolp last-command-event)
2010 (or (not (eq last-command-event 'Default))
2011 (setq last-command-event 'English))
2012 (setq language-name (symbol-name last-command-event))))
2013 (error "Bogus calling sequence"))
2014 (describe-language-environment language-name)))
2015
2016 (defun describe-language-environment (language-name)
2017 "Describe how Emacs supports language environment LANGUAGE-NAME."
2018 (interactive
2019 (list (read-language-name
2020 'documentation
2021 "Describe language environment (default current choice): ")))
2022 (if (null language-name)
2023 (setq language-name current-language-environment))
2024 (if (or (null language-name)
2025 (null (get-language-info language-name 'documentation)))
2026 (error "No documentation for the specified language"))
2027 (if (symbolp language-name)
2028 (setq language-name (symbol-name language-name)))
2029 (dolist (feature (get-language-info language-name 'features))
2030 (require feature))
2031 (let ((doc (get-language-info language-name 'documentation)))
2032 (help-setup-xref (list #'describe-language-environment language-name)
2033 (interactive-p))
2034 (with-output-to-temp-buffer (help-buffer)
2035 (save-excursion
2036 (set-buffer standard-output)
2037 (insert language-name " language environment\n\n")
2038 (if (stringp doc)
2039 (insert doc "\n\n"))
2040 (condition-case nil
2041 (let ((str (eval (get-language-info language-name 'sample-text))))
2042 (if (stringp str)
2043 (insert "Sample text:\n " str "\n\n")))
2044 (error nil))
2045 (let ((input-method (get-language-info language-name 'input-method))
2046 (l (copy-sequence input-method-alist))
2047 (first t))
2048 (when (and input-method
2049 (setq input-method (assoc input-method l)))
2050 (insert "Input methods (default " (car input-method) ")\n")
2051 (setq l (cons input-method (delete input-method l))
2052 first nil))
2053 (dolist (elt l)
2054 (when (or (eq input-method elt)
2055 (eq t (compare-strings language-name nil nil
2056 (nth 1 elt) nil nil t)))
2057 (when first
2058 (insert "Input methods:\n")
2059 (setq first nil))
2060 (insert " " (car elt))
2061 (search-backward (car elt))
2062 (help-xref-button 0 'help-input-method (car elt))
2063 (goto-char (point-max))
2064 (insert " (\""
2065 (if (stringp (nth 3 elt)) (nth 3 elt) (car (nth 3 elt)))
2066 "\" in mode line)\n")))
2067 (or first
2068 (insert "\n")))
2069 (insert "Character sets:\n")
2070 (let ((l (get-language-info language-name 'charset)))
2071 (if (null l)
2072 (insert " nothing specific to " language-name "\n")
2073 (while l
2074 (insert " " (symbol-name (car l)))
2075 (search-backward (symbol-name (car l)))
2076 (help-xref-button 0 'help-character-set (car l))
2077 (goto-char (point-max))
2078 (insert ": " (charset-description (car l)) "\n")
2079 (setq l (cdr l)))))
2080 (insert "\n")
2081 (insert "Coding systems:\n")
2082 (let ((l (get-language-info language-name 'coding-system)))
2083 (if (null l)
2084 (insert " nothing specific to " language-name "\n")
2085 (while l
2086 (insert " " (symbol-name (car l)))
2087 (search-backward (symbol-name (car l)))
2088 (help-xref-button 0 'help-coding-system (car l))
2089 (goto-char (point-max))
2090 (insert " (`"
2091 (coding-system-mnemonic (car l))
2092 "' in mode line):\n\t"
2093 (coding-system-doc-string (car l))
2094 "\n")
2095 (let ((aliases (coding-system-aliases (car l))))
2096 (when aliases
2097 (insert "\t(alias:")
2098 (while aliases
2099 (insert " " (symbol-name (car aliases)))
2100 (setq aliases (cdr aliases)))
2101 (insert ")\n")))
2102 (setq l (cdr l)))))))))
2103 \f
2104 ;;; Locales.
2105
2106 (defvar locale-translation-file-name nil
2107 "File name for the system's file of locale-name aliases, or nil if none.")
2108
2109 ;; The following definitions might as well be marked as constants and
2110 ;; purecopied, since they're normally used on startup, and probably
2111 ;; should reflect the facilities of the base Emacs.
2112 (defconst locale-language-names
2113 (purecopy
2114 '(
2115 ;; Locale names of the form LANGUAGE[_TERRITORY][.CODESET][@MODIFIER]
2116 ;; as specified in the Single Unix Spec, Version 2.
2117 ;; LANGUAGE is a language code taken from ISO 639:1988 (E/F)
2118 ;; with additions from ISO 639/RA Newsletter No.1/1989;
2119 ;; see Internet RFC 2165 (1997-06) and
2120 ;; http://www.evertype.com/standards/iso639/iso639-en.html
2121 ;; TERRITORY is a country code taken from ISO 3166
2122 ;; http://www.din.de/gremien/nas/nabd/iso3166ma/codlstp1/en_listp1.html.
2123 ;; CODESET and MODIFIER are implementation-dependent.
2124
2125 ;; jasonr comments: MS Windows uses three letter codes for
2126 ;; languages instead of the two letter ISO codes that POSIX
2127 ;; uses. In most cases the first two letters are the same, so
2128 ;; most of the regexps in locale-language-names work. Japanese
2129 ;; and Chinese are exceptions, which are listed in the
2130 ;; non-standard section at the bottom of locale-language-names.
2131
2132 ("aa_DJ" . "Latin-1") ; Afar
2133 ("aa" . "UTF-8")
2134 ;; ab Abkhazian
2135 ("af" . "Latin-1") ; Afrikaans
2136 ("am" "Ethiopic" utf-8) ; Amharic
2137 ("an" . "Latin-9") ; Aragonese
2138 ; ar Arabic glibc uses 8859-6
2139 ; as Assamese
2140 ; ay Aymara
2141 ("az" . "UTF-8") ; Azerbaijani
2142 ; ba Bashkir
2143 ("be" "Belarusian" cp1251) ; Belarusian [Byelorussian until early 1990s]
2144 ("bg" "Bulgarian" cp1251) ; Bulgarian
2145 ; bh Bihari
2146 ; bi Bislama
2147 ("bn" . "UTF-8") ; Bengali, Bangla
2148 ("bo" . "Tibetan")
2149 ("br" . "Latin-1") ; Breton
2150 ("bs" . "Latin-2") ; Bosnian
2151 ("byn" . "UTF-8") ; Bilin; Blin
2152 ("ca" . "Latin-1") ; Catalan
2153 ; co Corsican
2154 ("cs" "Czech" iso-8859-2)
2155 ("cy" "Welsh" iso-8859-14)
2156 ("da" . "Latin-1") ; Danish
2157 ("de" "German" iso-8859-1)
2158 ; dv Divehi
2159 ; dz Bhutani
2160 ("el" "Greek" iso-8859-7)
2161 ;; Users who specify "en" explicitly typically want Latin-1, not ASCII.
2162 ;; That's actually what the GNU locales define, modulo things like
2163 ;; en_IN -- fx.
2164 ("en_IN" "English" utf-8) ; glibc uses utf-8 for English in India
2165 ("en" "English" iso-8859-1) ; English
2166 ("eo" . "Esperanto") ; Esperanto
2167 ("es" "Spanish" iso-8859-1)
2168 ("et" . "Latin-1") ; Estonian
2169 ("eu" . "Latin-1") ; Basque
2170 ("fa" . "UTF-8") ; Persian
2171 ("fi" . "Latin-1") ; Finnish
2172 ("fj" . "Latin-1") ; Fiji
2173 ("fo" . "Latin-1") ; Faroese
2174 ("fr" "French" iso-8859-1) ; French
2175 ("fy" . "Latin-1") ; Frisian
2176 ("ga" . "Latin-1") ; Irish Gaelic (new orthography)
2177 ("gd" . "Latin-9") ; Scots Gaelic
2178 ("gez" "Ethiopic" utf-8) ; Geez
2179 ("gl" . "Latin-1") ; Gallegan; Galician
2180 ; gn Guarani
2181 ("gu" . "UTF-8") ; Gujarati
2182 ("gv" . "Latin-1") ; Manx Gaelic
2183 ; ha Hausa
2184 ("he" "Hebrew" iso-8859-8)
2185 ("hi" "Devanagari" utf-8) ; Hindi
2186 ("hr" "Croatian" iso-8859-2) ; Croatian
2187 ("hu" . "Latin-2") ; Hungarian
2188 ; hy Armenian
2189 ; ia Interlingua
2190 ("id" . "Latin-1") ; Indonesian
2191 ; ie Interlingue
2192 ; ik Inupiak
2193 ("is" . "Latin-1") ; Icelandic
2194 ("it" "Italian" iso-8859-1) ; Italian
2195 ; iu Inuktitut
2196 ("iw" "Hebrew" iso-8859-8)
2197 ("ja" "Japanese" euc-jp)
2198 ; jw Javanese
2199 ("ka" "Georgian" georgian-ps) ; Georgian
2200 ; kk Kazakh
2201 ("kl" . "Latin-1") ; Greenlandic
2202 ; km Cambodian
2203 ("kn" "Kannada" utf-8)
2204 ("ko" "Korean" euc-kr)
2205 ; ks Kashmiri
2206 ; ku Kurdish
2207 ("kw" . "Latin-1") ; Cornish
2208 ; ky Kirghiz
2209 ("la" . "Latin-1") ; Latin
2210 ("lb" . "Latin-1") ; Luxemburgish
2211 ("lg" . "Laint-6") ; Ganda
2212 ; ln Lingala
2213 ("lo" "Lao" utf-8) ; Laothian
2214 ("lt" "Lithuanian" iso-8859-13)
2215 ("lv" . "Latvian") ; Latvian, Lettish
2216 ; mg Malagasy
2217 ("mi" . "Latin-7") ; Maori
2218 ("mk" "Cyrillic-ISO" iso-8859-5) ; Macedonian
2219 ("ml" "Malayalam" utf-8)
2220 ("mn" . "UTF-8") ; Mongolian
2221 ; mo Moldavian
2222 ("mr" "Devanagari" utf-8) ; Marathi
2223 ("ms" . "Latin-1") ; Malay
2224 ("mt" . "Latin-3") ; Maltese
2225 ; my Burmese
2226 ; na Nauru
2227 ("nb" . "Latin-1") ; Norwegian
2228 ("ne" "Devanagari" utf-8) ; Nepali
2229 ("nl" "Dutch" iso-8859-1)
2230 ("no" . "Latin-1") ; Norwegian
2231 ("oc" . "Latin-1") ; Occitan
2232 ("om_ET" . "UTF-8") ; (Afan) Oromo
2233 ("om" . "Latin-1") ; (Afan) Oromo
2234 ; or Oriya
2235 ("pa" . "UTF-8") ; Punjabi
2236 ("pl" . "Latin-2") ; Polish
2237 ; ps Pashto, Pushto
2238 ("pt" . "Latin-1") ; Portuguese
2239 ; qu Quechua
2240 ("rm" . "Latin-1") ; Rhaeto-Romanic
2241 ; rn Kirundi
2242 ("ro" "Romanian" iso-8859-2)
2243 ("ru_RU" "Russian" iso-8859-5)
2244 ("ru_UA" "Russian" koi8-u)
2245 ; rw Kinyarwanda
2246 ("sa" . "Devanagari") ; Sanskrit
2247 ; sd Sindhi
2248 ("se" . "UTF-8") ; Northern Sami
2249 ; sg Sangho
2250 ("sh" . "Latin-2") ; Serbo-Croatian
2251 ; si Sinhalese
2252 ("sid" . "UTF-8") ; Sidamo
2253 ("sk" "Slovak" iso-8859-2)
2254 ("sl" "Slovenian" iso-8859-2)
2255 ; sm Samoan
2256 ; sn Shona
2257 ("so_ET" "UTF-8") ; Somali
2258 ("so" "Latin-1") ; Somali
2259 ("sq" . "Latin-1") ; Albanian
2260 ("sr" . "Latin-2") ; Serbian (Latin alphabet)
2261 ; ss Siswati
2262 ("st" . "Latin-1") ; Sesotho
2263 ; su Sundanese
2264 ("sv" "Swedish" iso-8859-1) ; Swedish
2265 ("sw" . "Latin-1") ; Swahili
2266 ("ta" "Tamil" utf-8)
2267 ("te" . "UTF-8") ; Telugu
2268 ("tg" "Tajik" koi8-t)
2269 ("th" "Thai" tis-620)
2270 ("ti" "Ethiopic" utf-8) ; Tigrinya
2271 ("tig_ER" . "UTF-8") ; Tigre
2272 ; tk Turkmen
2273 ("tl" . "Latin-1") ; Tagalog
2274 ; tn Setswana
2275 ; to Tonga
2276 ("tr" "Turkish" iso-8859-9)
2277 ; ts Tsonga
2278 ("tt" . "UTF-8") ; Tatar
2279 ; tw Twi
2280 ; ug Uighur
2281 ("uk" "Ukrainian" koi8-u)
2282 ("ur" . "UTF-8") ; Urdu
2283 ("uz_UZ@cyrillic" . "UTF-8"); Uzbek
2284 ("uz" . "Latin-1") ; Uzbek
2285 ("vi" "Vietnamese" utf-8)
2286 ; vo Volapuk
2287 ("wa" . "Latin-1") ; Walloon
2288 ; wo Wolof
2289 ("xh" . "Latin-1") ; Xhosa
2290 ("yi" . "Windows-1255") ; Yiddish
2291 ; yo Yoruba
2292 ; za Zhuang
2293 ("zh_HK" . "Chinese-Big5")
2294 ; zh_HK/BIG5-HKSCS \
2295 ("zh_TW" . "Chinese-Big5")
2296 ("zh_CN.GB2312" "Chinese-GB")
2297 ("zh_CN.GBK" "Chinese-GBK")
2298 ("zh_CN.GB18030" "Chinese-GB18030")
2299 ("zh_CN.UTF-8" . "Chinese-GBK")
2300 ("zh_CN" . "Chinese-GB")
2301 ("zh" . "Chinese-GB")
2302 ("zu" . "Latin-1") ; Zulu
2303
2304 ;; ISO standard locales
2305 ("c$" . "ASCII")
2306 ("posix$" . "ASCII")
2307
2308 ;; The "IPA" Emacs language environment does not correspond
2309 ;; to any ISO 639 code, so let it stand for itself.
2310 ("ipa$" . "IPA")
2311
2312 ;; Nonstandard or obsolete language codes
2313 ("cz" . "Czech") ; e.g. Solaris 2.6
2314 ("ee" . "Latin-4") ; Estonian, e.g. X11R6.4
2315 ("iw" . "Hebrew") ; e.g. X11R6.4
2316 ("sp" . "Cyrillic-ISO") ; Serbian (Cyrillic alphabet), e.g. X11R6.4
2317 ("su" . "Latin-1") ; Finnish, e.g. Solaris 2.6
2318 ("jp" . "Japanese") ; e.g. MS Windows
2319 ("chs" . "Chinese-GBK") ; MS Windows Chinese Simplified
2320 ("cht" . "Chinese-BIG5") ; MS Windows Chinese Traditional
2321 ("gbz" . "UTF-8") ; MS Windows Dari Persian
2322 ("div" . "UTF-8") ; MS Windows Divehi (Maldives)
2323 ("wee" . "Latin-2") ; MS Windows Lower Sorbian
2324 ("wen" . "Latin-2") ; MS Windows Upper Sorbian
2325 ))
2326 "Alist of locale regexps vs the corresponding languages and coding systems.
2327 Each element has this form:
2328 \(LOCALE-REGEXP LANG-ENV CODING-SYSTEM)
2329 The first element whose LOCALE-REGEXP matches the start of a
2330 downcased locale specifies the LANG-ENV \(language environment)
2331 and CODING-SYSTEM corresponding to that locale. If there is no
2332 appropriate language environment, the element may have this form:
2333 \(LOCALE-REGEXP . LANG-ENV)
2334 In this case, LANG-ENV is one of generic language environments for an
2335 specific encoding such as \"Latin-1\" and \"UTF-8\".")
2336
2337 (defconst locale-charset-language-names
2338 (purecopy
2339 '((".*8859[-_]?1\\>" . "Latin-1")
2340 (".*8859[-_]?2\\>" . "Latin-2")
2341 (".*8859[-_]?3\\>" . "Latin-3")
2342 (".*8859[-_]?4\\>" . "Latin-4")
2343 (".*8859[-_]?9\\>" . "Latin-5")
2344 (".*8859[-_]?14\\>" . "Latin-8")
2345 (".*8859[-_]?15\\>" . "Latin-9")
2346 (".*utf\\(?:-?8\\)?\\>" . "UTF-8")
2347 ;; utf-8@euro exists, so put this last. (@euro really specifies
2348 ;; the currency, rather than the charset.)
2349 (".*@euro\\>" . "Latin-9")))
2350 "List of pairs of locale regexps and charset language names.
2351 The first element whose locale regexp matches the start of a downcased locale
2352 specifies the language name whose charset corresponds to that locale.
2353 This language name is used if the locale is not listed in
2354 `locale-language-names'.")
2355
2356 (defconst locale-preferred-coding-systems
2357 (purecopy
2358 '((".*8859[-_]?1\\>" . iso-8859-1)
2359 (".*8859[-_]?2\\>" . iso-8859-2)
2360 (".*8859[-_]?3\\>" . iso-8859-3)
2361 (".*8859[-_]?4\\>" . iso-8859-4)
2362 (".*8859[-_]?9\\>" . iso-8859-9)
2363 (".*8859[-_]?14\\>" . iso-8859-14)
2364 (".*8859[-_]?15\\>" . iso-8859-15)
2365 (".*utf\\(?:-?8\\)?" . utf-8)
2366 ;; utf-8@euro exists, so put this after utf-8. (@euro really
2367 ;; specifies the currency, rather than the charset.)
2368 (".*@euro" . iso-8859-15)
2369 ("koi8-?r" . koi8-r)
2370 ("koi8-?u" . koi8-u)
2371 ("tcvn" . tcvn)
2372 ("big5[-_]?hkscs" . big5-hkscs)
2373 ("big5" . big5)
2374 ("euc-?tw" . euc-tw)
2375 ("euc-?cn" .euc-cn)
2376 ("gb2312" . gb2312)
2377 ("gbk" . gbk)
2378 ("gb18030" . gb18030)
2379 ("ja.*[._]euc" . japanese-iso-8bit)
2380 ("ja.*[._]jis7" . iso-2022-jp)
2381 ("ja.*[._]pck" . japanese-shift-jis)
2382 ("ja.*[._]sjis" . japanese-shift-jis)
2383 ("jpn" . japanese-shift-jis) ; MS-Windows uses this.
2384 ))
2385 "List of pairs of locale regexps and preferred coding systems.
2386 The first element whose locale regexp matches the start of a downcased locale
2387 specifies the coding system to prefer when using that locale.
2388 This coding system is used if the locale specifies a specific charset.")
2389
2390 (defun locale-name-match (key alist)
2391 "Search for KEY in ALIST, which should be a list of regexp-value pairs.
2392 Return the value corresponding to the first regexp that matches the
2393 start of KEY, or nil if there is no match."
2394 (let (element)
2395 (while (and alist (not element))
2396 (if (string-match (concat "\\`\\(?:" (car (car alist)) "\\)") key)
2397 (setq element (car alist)))
2398 (setq alist (cdr alist)))
2399 (cdr element)))
2400
2401 (defun locale-charset-match-p (charset1 charset2)
2402 "Whether charset names (strings) CHARSET1 and CHARSET2 are equivalent.
2403 Matching is done ignoring case and any hyphens and underscores in the
2404 names. E.g. `ISO_8859-1' and `iso88591' both match `iso-8859-1'."
2405 (setq charset1 (replace-regexp-in-string "[-_]" "" charset1))
2406 (setq charset2 (replace-regexp-in-string "[-_]" "" charset2))
2407 (eq t (compare-strings charset1 nil nil charset2 nil nil t)))
2408
2409 (defvar locale-charset-alist nil
2410 "Coding system alist keyed on locale-style charset name.
2411 Used by `locale-charset-to-coding-system'.")
2412
2413 (defun locale-charset-to-coding-system (charset)
2414 "Find coding system corresponding to CHARSET.
2415 CHARSET is any sort of non-Emacs charset name, such as might be used
2416 in a locale codeset, or elsewhere. It is matched to a coding system
2417 first by case-insensitive lookup in `locale-charset-alist'. Then
2418 matches are looked for in the coding system list, treating case and
2419 the characters `-' and `_' as insignificant. The coding system base
2420 is returned. Thus, for instance, if charset \"ISO8859-2\",
2421 `iso-latin-2' is returned."
2422 (or (car (assoc-string charset locale-charset-alist t))
2423 (let ((cs coding-system-alist)
2424 c)
2425 (while (and (not c) cs)
2426 (if (locale-charset-match-p charset (caar cs))
2427 (setq c (intern (caar cs)))
2428 (pop cs)))
2429 (if c (coding-system-base c)))))
2430
2431 ;; Fixme: This ought to deal with the territory part of the locale
2432 ;; too, for setting things such as calendar holidays, ps-print paper
2433 ;; size, spelling dictionary.
2434
2435 (defun locale-translate (locale)
2436 "Expand LOCALE according to `locale-translation-file-name', if possible.
2437 For example, translate \"swedish\" into \"sv_SE.ISO8859-1\"."
2438 (if locale-translation-file-name
2439 (with-temp-buffer
2440 (set-buffer-multibyte nil)
2441 (insert-file-contents locale-translation-file-name)
2442 (if (re-search-forward
2443 (concat "^" (regexp-quote locale) ":?[ \t]+") nil t)
2444 (buffer-substring (point) (line-end-position))
2445 locale))
2446 locale))
2447
2448 (defun set-locale-environment (&optional locale-name frame)
2449 "Set up multi-lingual environment for using LOCALE-NAME.
2450 This sets the language environment, the coding system priority,
2451 the default input method and sometimes other things.
2452
2453 LOCALE-NAME should be a string which is the name of a locale supported
2454 by the system. Often it is of the form xx_XX.CODE, where xx is a
2455 language, XX is a country, and CODE specifies a character set and
2456 coding system. For example, the locale name \"ja_JP.EUC\" might name
2457 a locale for Japanese in Japan using the `japanese-iso-8bit'
2458 coding-system. The name may also have a modifier suffix, e.g. `@euro'
2459 or `@cyrillic'.
2460
2461 If LOCALE-NAME is nil, its value is taken from the environment
2462 variables LC_ALL, LC_CTYPE and LANG (the first one that is set).
2463
2464 The locale names supported by your system can typically be found in a
2465 directory named `/usr/share/locale' or `/usr/lib/locale'. LOCALE-NAME
2466 will be translated according to the table specified by
2467 `locale-translation-file-name'.
2468
2469 If FRAME is non-nil, only set the keyboard coding system and the
2470 terminal coding system for the terminal of that frame, and don't
2471 touch session-global parameters like the language environment.
2472
2473 See also `locale-charset-language-names', `locale-language-names',
2474 `locale-preferred-coding-systems' and `locale-coding-system'."
2475 (interactive "sSet environment for locale: ")
2476
2477 ;; Do this at runtime for the sake of binaries possibly transported
2478 ;; to a system without X.
2479 (setq locale-translation-file-name
2480 (let ((files
2481 '("/usr/share/X11/locale/locale.alias" ; e.g. X11R7
2482 "/usr/lib/X11/locale/locale.alias" ; e.g. X11R6.4
2483 "/usr/X11R6/lib/X11/locale/locale.alias" ; XFree86, e.g. RedHat 4.2
2484 "/usr/openwin/lib/locale/locale.alias" ; e.g. Solaris 2.6
2485 ;;
2486 ;; The following name appears after the X-related names above,
2487 ;; since the X-related names are what X actually uses.
2488 "/usr/share/locale/locale.alias" ; GNU/Linux sans X
2489 )))
2490 (while (and files (not (file-exists-p (car files))))
2491 (setq files (cdr files)))
2492 (car files)))
2493
2494 (let ((locale locale-name))
2495
2496 (unless locale
2497 ;; Use the first of these three environment variables
2498 ;; that has a nonempty value.
2499 (let ((vars '("LC_ALL" "LC_CTYPE" "LANG")))
2500 (while (and vars
2501 (= 0 (length locale))) ; nil or empty string
2502 (setq locale (getenv (pop vars) frame)))))
2503
2504 (when locale
2505 (setq locale (locale-translate locale))
2506
2507 ;; Leave the system locales alone if the caller did not specify
2508 ;; an explicit locale name, as their defaults are set from
2509 ;; LC_MESSAGES and LC_TIME, not LC_CTYPE, and the user might not
2510 ;; want to set them to the same value as LC_CTYPE.
2511 (when locale-name
2512 (setq system-messages-locale locale)
2513 (setq system-time-locale locale)))
2514
2515 (setq woman-locale
2516 (or system-messages-locale
2517 (let ((msglocale (getenv "LC_MESSAGES" frame)))
2518 (if (zerop (length msglocale))
2519 locale
2520 (locale-translate msglocale)))))
2521
2522 (when locale
2523 (setq locale (downcase locale))
2524
2525 (let ((language-name
2526 (locale-name-match locale locale-language-names))
2527 (charset-language-name
2528 (locale-name-match locale locale-charset-language-names))
2529 (default-eol-type (coding-system-eol-type
2530 default-buffer-file-coding-system))
2531 (coding-system
2532 (or (locale-name-match locale locale-preferred-coding-systems)
2533 (when locale
2534 (if (string-match "\\.\\([^@]+\\)" locale)
2535 (locale-charset-to-coding-system
2536 (match-string 1 locale)))))))
2537
2538 (if (consp language-name)
2539 ;; locale-language-names specify both lang-env and coding.
2540 ;; But, what specified in locale-preferred-coding-systems
2541 ;; has higher priority.
2542 (setq coding-system (or coding-system
2543 (nth 1 language-name))
2544 language-name (car language-name))
2545 ;; Otherwise, if locale is not listed in locale-language-names,
2546 ;; use what listed in locale-charset-language-names.
2547 (if (not language-name)
2548 (setq language-name charset-language-name)))
2549
2550 ;; If a specific EOL conversion was specified in the default
2551 ;; buffer-file-coding-system, preserve it in the coding system
2552 ;; we will be using from now on.
2553 (if (and (memq default-eol-type '(0 1 2 unix dos mac))
2554 coding-system
2555 (coding-system-p coding-system))
2556 (setq coding-system (coding-system-change-eol-conversion
2557 coding-system default-eol-type)))
2558
2559 (when language-name
2560
2561 ;; Set up for this character set. This is now the right way
2562 ;; to do it for both unibyte and multibyte modes.
2563 (unless frame
2564 (set-language-environment language-name))
2565
2566 ;; If default-enable-multibyte-characters is nil,
2567 ;; we are using single-byte characters,
2568 ;; so the display table and terminal coding system are irrelevant.
2569 (when default-enable-multibyte-characters
2570 (set-display-table-and-terminal-coding-system
2571 language-name coding-system frame))
2572
2573 ;; Set the `keyboard-coding-system' if appropriate (tty
2574 ;; only). At least X and MS Windows can generate
2575 ;; multilingual input.
2576 ;; XXX This was disabled unless `window-system', but that
2577 ;; leads to buggy behavior when a tty frame is opened
2578 ;; later. Setting the keyboard coding system has no adverse
2579 ;; effect on X, so let's do it anyway. -- Lorentey
2580 (let ((kcs (or coding-system
2581 (car (get-language-info language-name
2582 'coding-system)))))
2583 (if kcs (set-keyboard-coding-system kcs frame)))
2584
2585 (unless frame
2586 (setq locale-coding-system
2587 (car (get-language-info language-name 'coding-priority)))))
2588
2589 (when (and (not frame)
2590 coding-system
2591 (not (coding-system-equal coding-system
2592 locale-coding-system)))
2593 (prefer-coding-system coding-system)
2594 ;; Fixme: perhaps prefer-coding-system should set this too.
2595 ;; But it's not the time to do such a fundamental change.
2596 (setq default-sendmail-coding-system coding-system)
2597 (setq locale-coding-system coding-system))))
2598
2599 ;; On Windows, override locale-coding-system,
2600 ;; default-file-name-coding-system, keyboard-coding-system,
2601 ;; terminal-coding-system with system codepage.
2602 (when (boundp 'w32-ansi-code-page)
2603 (let ((code-page-coding (intern (format "cp%d" w32-ansi-code-page))))
2604 (when (coding-system-p code-page-coding)
2605 (unless frame (setq locale-coding-system code-page-coding))
2606 (set-keyboard-coding-system code-page-coding frame)
2607 (set-terminal-coding-system code-page-coding frame)
2608 ;; Set default-file-name-coding-system last, so that Emacs
2609 ;; doesn't try to use cpNNNN when it defines keyboard and
2610 ;; terminal encoding. That's because the above two lines
2611 ;; will want to load code-pages.el, where cpNNNN are
2612 ;; defined; if default-file-name-coding-system were set to
2613 ;; cpNNNN while these two lines run, Emacs will want to use
2614 ;; it for encoding the file name it wants to load. And that
2615 ;; will fail, since cpNNNN is not yet usable until
2616 ;; code-pages.el finishes loading.
2617 (setq default-file-name-coding-system code-page-coding))))
2618
2619 (when (eq system-type 'darwin)
2620 ;; On Darwin, file names are always encoded in utf-8, no matter
2621 ;; the locale.
2622 (setq default-file-name-coding-system 'utf-8)
2623 ;; Mac OS X's Terminal.app by default uses utf-8 regardless of
2624 ;; the locale.
2625 (when (and (null window-system)
2626 (equal (getenv "TERM_PROGRAM" frame) "Apple_Terminal"))
2627 (set-terminal-coding-system 'utf-8)
2628 (set-keyboard-coding-system 'utf-8)))
2629
2630 ;; Default to A4 paper if we're not in a C, POSIX or US locale.
2631 ;; (See comments in Flocale_info.)
2632 (unless frame
2633 (let ((locale locale)
2634 (paper (locale-info 'paper)))
2635 (if paper
2636 ;; This will always be null at the time of writing.
2637 (cond
2638 ((equal paper '(216 279))
2639 (setq ps-paper-type 'letter))
2640 ((equal paper '(210 297))
2641 (setq ps-paper-type 'a4)))
2642 (let ((vars '("LC_ALL" "LC_PAPER" "LANG")))
2643 (while (and vars (= 0 (length locale)))
2644 (setq locale (getenv (pop vars) frame))))
2645 (when locale
2646 ;; As of glibc 2.2.5, these are the only US Letter locales,
2647 ;; and the rest are A4.
2648 (setq ps-paper-type
2649 (or (locale-name-match locale '(("c$" . letter)
2650 ("posix$" . letter)
2651 (".._us" . letter)
2652 (".._pr" . letter)
2653 (".._ca" . letter)
2654 ("enu$" . letter) ; Windows
2655 ("esu$" . letter)
2656 ("enc$" . letter)
2657 ("frc$" . letter)))
2658 'a4)))))))
2659 nil)
2660 \f
2661 ;;; Character property
2662
2663 ;; Each element has the form (PROP . TABLE).
2664 ;; PROP is a symbol representing a character property.
2665 ;; TABLE is a char-table containing the property value for each character.
2666 ;; TABLE may be a name of file to load to build a char-table.
2667 ;; Don't modify this variable directly but use `define-char-code-property'.
2668
2669 (defvar char-code-property-alist nil
2670 "Alist of character property name vs char-table containing property values.
2671 Internal use only.")
2672
2673 (put 'char-code-property-table 'char-table-extra-slots 5)
2674
2675 (defun define-char-code-property (name table &optional docstring)
2676 "Define NAME as a character code property given by TABLE.
2677 TABLE is a char-table of purpose `char-code-property-table' with
2678 these extra slots:
2679 1st: NAME.
2680 2nd: Function to call to get a property value of a character.
2681 It is called with three arguments CHAR, VAL, and TABLE, where
2682 CHAR is a character, VAL is the value of (aref TABLE CHAR).
2683 3rd: Function to call to put a property value of a character.
2684 It is called with the same arguments as above.
2685 4th: Function to call to get a description string of a property value.
2686 It is called with one argument VALUE, a property value.
2687 5th: Data used by the above functions.
2688
2689 TABLE may be a name of file to load to build a char-table. The
2690 file should contain a call of `define-char-code-property' with a
2691 char-table of the above format as the argument TABLE.
2692
2693 TABLE may also be nil, in which case no property value is pre-assigned.
2694
2695 Optional 3rd argment DOCSTRING is a documentation string of the property.
2696
2697 See also the documentation of `get-char-code-property' and
2698 `put-char-code-property'."
2699 (or (symbolp name)
2700 (error "Not a symbol: %s" name))
2701 (if (char-table-p table)
2702 (or (and (eq (char-table-subtype table) 'char-code-property-table)
2703 (eq (char-table-extra-slot table 0) name))
2704 (error "Invalid char-table: %s" table))
2705 (or (stringp table)
2706 (error "Not a char-table nor a file name: %s" table)))
2707 (let ((slot (assq name char-code-property-alist)))
2708 (if slot
2709 (setcdr slot table)
2710 (setq char-code-property-alist
2711 (cons (cons name table) char-code-property-alist))))
2712 (put name 'char-code-property-documentation docstring))
2713
2714 (defvar char-code-property-table
2715 (make-char-table 'char-code-property-table)
2716 "Char-table containing a property list of each character code.
2717 This table is used for properties not listed in `char-code-property-alist'.
2718 See also the documentation of `get-char-code-property' and
2719 `put-char-code-property'.")
2720
2721 (defun get-char-code-property (char propname)
2722 "Return the value of CHAR's PROPNAME property."
2723 (let ((slot (assq propname char-code-property-alist)))
2724 (if slot
2725 (let (table value func)
2726 (if (stringp (cdr slot))
2727 (load (cdr slot)))
2728 (setq table (cdr slot)
2729 value (aref table char)
2730 func (char-table-extra-slot table 1))
2731 (if (functionp func)
2732 (setq value (funcall func char value table)))
2733 value)
2734 (plist-get (aref char-code-property-table char) propname))))
2735
2736 (defun put-char-code-property (char propname value)
2737 "Store CHAR's PROPNAME property with VALUE.
2738 It can be retrieved with `(get-char-code-property CHAR PROPNAME)'."
2739 (let ((slot (assq propname char-code-property-alist)))
2740 (if slot
2741 (let (table func)
2742 (if (stringp (cdr slot))
2743 (load (cdr slot)))
2744 (setq table (cdr slot)
2745 func (char-table-extra-slot table 2))
2746 (if (functionp func)
2747 (funcall func char value table)
2748 (aset table char value)))
2749 (let* ((plist (aref char-code-property-table char))
2750 (x (plist-put plist propname value)))
2751 (or (eq x plist)
2752 (aset char-code-property-table char x))))
2753 value))
2754
2755 (defun char-code-property-description (prop value)
2756 "Return a description string of character property PROP's value VALUE.
2757 If there's no description string for VALUE, return nil."
2758 (let ((slot (assq prop char-code-property-alist)))
2759 (if slot
2760 (let (table func)
2761 (if (stringp (cdr slot))
2762 (load (cdr slot)))
2763 (setq table (cdr slot)
2764 func (char-table-extra-slot table 3))
2765 (if (functionp func)
2766 (funcall func value))))))
2767
2768 \f
2769 ;; Pretty description of encoded string
2770
2771 ;; Alist of ISO 2022 control code vs the corresponding mnemonic string.
2772 (defvar iso-2022-control-alist
2773 '((?\x1b . "ESC")
2774 (?\x0e . "SO")
2775 (?\x0f . "SI")
2776 (?\x8e . "SS2")
2777 (?\x8f . "SS3")
2778 (?\x9b . "CSI")))
2779
2780 (defun encoded-string-description (str coding-system)
2781 "Return a pretty description of STR that is encoded by CODING-SYSTEM."
2782 (setq str (string-as-unibyte str))
2783 (mapconcat
2784 (if (and coding-system (eq (coding-system-type coding-system) 'iso-2022))
2785 ;; Try to get a pretty description for ISO 2022 escape sequences.
2786 (function (lambda (x) (or (cdr (assq x iso-2022-control-alist))
2787 (format "#x%02X" x))))
2788 (function (lambda (x) (format "#x%02X" x))))
2789 str " "))
2790
2791 (defun encode-coding-char (char coding-system)
2792 "Encode CHAR by CODING-SYSTEM and return the resulting string.
2793 If CODING-SYSTEM can't safely encode CHAR, return nil."
2794 (let* ((str1 (string-as-multibyte (string char)))
2795 (str2 (string-as-multibyte (string char char)))
2796 (found (find-coding-systems-string str1))
2797 enc1 enc2 i1 i2)
2798 (if (and (consp found)
2799 (eq (car found) 'undecided))
2800 str1
2801 (when (memq (coding-system-base coding-system) found)
2802 ;; We must find the encoded string of CHAR. But, just encoding
2803 ;; CHAR will put extra control sequences (usually to designate
2804 ;; ASCII charset) at the tail if type of CODING is ISO 2022.
2805 ;; To exclude such tailing bytes, we at first encode one-char
2806 ;; string and two-char string, then check how many bytes at the
2807 ;; tail of both encoded strings are the same.
2808
2809 (setq enc1 (encode-coding-string str1 coding-system)
2810 i1 (length enc1)
2811 enc2 (encode-coding-string str2 coding-system)
2812 i2 (length enc2))
2813 (while (and (> i1 0) (= (aref enc1 (1- i1)) (aref enc2 (1- i2))))
2814 (setq i1 (1- i1) i2 (1- i2)))
2815
2816 ;; Now (substring enc1 i1) and (substring enc2 i2) are the same,
2817 ;; and they are the extra control sequences at the tail to
2818 ;; exclude.
2819 (substring enc2 0 i2)))))
2820
2821 ;; Backwards compatibility. These might be better with :init-value t,
2822 ;; but that breaks loadup.
2823 (define-minor-mode unify-8859-on-encoding-mode
2824 "Obsolete."
2825 :group 'mule
2826 :global t)
2827 (define-minor-mode unify-8859-on-decoding-mode
2828 "Obsolete."
2829 :group 'mule
2830 :global t)
2831
2832 (defvar nonascii-insert-offset 0 "This variable is obsolete.")
2833 (defvar nonascii-translation-table nil "This variable is obsolete.")
2834
2835 (defun ucs-insert (arg)
2836 "Insert a character of the given Unicode code point.
2837 Interactively, prompts for a hex string giving the code."
2838 (interactive "sUnicode (hex): ")
2839 (or (integerp arg)
2840 (setq arg (string-to-number arg 16)))
2841 (if (or (< arg 0) (> arg #x10FFFF))
2842 (error "Not a Unicode character code: 0x%X" arg))
2843 (insert-and-inherit arg))
2844
2845
2846 ;; arch-tag: b382c432-4b36-460e-bf4c-05efd0bb18dc
2847 ;;; mule-cmds.el ends here