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