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