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