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