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