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