(toggle-enable-multibyte-characters, sort-coding-systems,
search-unencodable-char): Doc fixes.
(default-input-method, input-method-verbose-flag, input-method-highlight-flag):
Remove * in defcustom's docstrings.
(exit-language-environment-hook, set-default-coding-systems,
coding-system-change-eol-conversion, prefer-coding-system,
find-multibyte-characters, leim-list-entry-regexp, set-input-method,
input-method-exit-on-first-char, princ-list, locale-language-names,
locale-charset-language-names, define-char-code-property):
Fix typos in docstrings.
2007-05-29 00:14:53 +00:00
|
|
|
|
;;; mule-cmds.el --- commands for multilingual environment -*-coding: iso-2022-7bit -*-
|
2004-11-08 23:03:30 +00:00
|
|
|
|
|
2008-06-07 02:38:32 +00:00
|
|
|
|
;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
|
2010-01-13 08:35:10 +00:00
|
|
|
|
;; 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
|
2006-12-13 01:13:58 +00:00
|
|
|
|
;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
2010-01-13 08:35:10 +00:00
|
|
|
|
;; 2005, 2006, 2007, 2008, 2009, 2010
|
2005-05-13 06:03:46 +00:00
|
|
|
|
;; National Institute of Advanced Industrial Science and Technology (AIST)
|
|
|
|
|
;; Registration Number H14PRO021
|
2003-09-08 12:53:41 +00:00
|
|
|
|
;; Copyright (C) 2003
|
2002-03-01 02:12:40 +00:00
|
|
|
|
;; National Institute of Advanced Industrial Science and Technology (AIST)
|
|
|
|
|
;; Registration Number H13PRO009
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
2002-09-08 19:49:54 +00:00
|
|
|
|
;; Keywords: mule, i18n
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
2008-05-06 04:29:13 +00:00
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1997-02-20 07:02:49 +00:00
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 04:29:13 +00:00
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2008-05-06 04:29:13 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
2001-07-15 19:53:53 +00:00
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
1997-02-20 07:02:49 +00:00
|
|
|
|
;;; Code:
|
|
|
|
|
|
2009-09-10 06:20:25 +00:00
|
|
|
|
(eval-when-compile (require 'cl)) ; letf
|
|
|
|
|
|
2008-06-07 02:38:32 +00:00
|
|
|
|
(defvar dos-codepage)
|
|
|
|
|
(autoload 'widget-value "wid-edit")
|
2000-04-01 11:54:49 +00:00
|
|
|
|
|
2005-08-29 14:08:30 +00:00
|
|
|
|
(defvar mac-system-coding-system)
|
|
|
|
|
|
1997-02-20 07:02:49 +00:00
|
|
|
|
;;; MULE related key bindings and menus.
|
|
|
|
|
|
2009-08-10 21:42:33 +00:00
|
|
|
|
(defvar mule-keymap
|
|
|
|
|
(let ((map (make-sparse-keymap)))
|
|
|
|
|
(define-key map "f" 'set-buffer-file-coding-system)
|
|
|
|
|
(define-key map "r" 'revert-buffer-with-coding-system)
|
|
|
|
|
(define-key map "F" 'set-file-name-coding-system)
|
|
|
|
|
(define-key map "t" 'set-terminal-coding-system)
|
|
|
|
|
(define-key map "k" 'set-keyboard-coding-system)
|
|
|
|
|
(define-key map "p" 'set-buffer-process-coding-system)
|
|
|
|
|
(define-key map "x" 'set-selection-coding-system)
|
|
|
|
|
(define-key map "X" 'set-next-selection-coding-system)
|
|
|
|
|
(define-key map "\C-\\" 'set-input-method)
|
|
|
|
|
(define-key map "c" 'universal-coding-system-argument)
|
|
|
|
|
(define-key map "l" 'set-language-environment)
|
|
|
|
|
map)
|
1999-05-14 00:33:27 +00:00
|
|
|
|
"Keymap for Mule (Multilingual environment) specific commands.")
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
1997-04-05 02:35:53 +00:00
|
|
|
|
;; Keep "C-x C-m ..." for mule specific commands.
|
1997-09-03 07:27:58 +00:00
|
|
|
|
(define-key ctl-x-map "\C-m" mule-keymap)
|
1997-02-26 12:50:36 +00:00
|
|
|
|
|
1998-12-21 11:24:39 +00:00
|
|
|
|
(defvar describe-language-environment-map
|
2009-08-10 21:42:33 +00:00
|
|
|
|
(let ((map (make-sparse-keymap "Describe Language Environment")))
|
|
|
|
|
(define-key map
|
2009-10-23 05:15:26 +00:00
|
|
|
|
[Default] `(menu-item ,(purecopy "Default") describe-specified-language-support))
|
2009-08-10 21:42:33 +00:00
|
|
|
|
map))
|
1997-05-28 03:37:32 +00:00
|
|
|
|
|
1998-12-21 11:24:39 +00:00
|
|
|
|
(defvar setup-language-environment-map
|
2009-08-10 21:42:33 +00:00
|
|
|
|
(let ((map (make-sparse-keymap "Set Language Environment")))
|
|
|
|
|
(define-key map
|
2009-10-23 05:15:26 +00:00
|
|
|
|
[Default] `(menu-item ,(purecopy "Default") setup-specified-language-environment))
|
2009-08-10 21:42:33 +00:00
|
|
|
|
map))
|
1997-05-28 03:37:32 +00:00
|
|
|
|
|
1998-12-21 11:24:39 +00:00
|
|
|
|
(defvar set-coding-system-map
|
2009-08-10 21:42:33 +00:00
|
|
|
|
(let ((map (make-sparse-keymap "Set Coding System")))
|
|
|
|
|
(define-key-after map [universal-coding-system-argument]
|
2009-10-23 05:15:26 +00:00
|
|
|
|
`(menu-item ,(purecopy "For Next Command") universal-coding-system-argument
|
|
|
|
|
:help ,(purecopy "Coding system to be used by next command")))
|
2009-11-11 06:06:43 +00:00
|
|
|
|
(define-key-after map [separator-1] menu-bar-separator)
|
2009-08-10 21:42:33 +00:00
|
|
|
|
(define-key-after map [set-buffer-file-coding-system]
|
2009-10-23 05:15:26 +00:00
|
|
|
|
`(menu-item ,(purecopy "For Saving This Buffer") set-buffer-file-coding-system
|
|
|
|
|
:help ,(purecopy "How to encode this buffer when saved")))
|
2009-08-10 21:42:33 +00:00
|
|
|
|
(define-key-after map [revert-buffer-with-coding-system]
|
2009-10-23 05:15:26 +00:00
|
|
|
|
`(menu-item ,(purecopy "For Reverting This File Now")
|
2009-08-10 21:42:33 +00:00
|
|
|
|
revert-buffer-with-coding-system
|
|
|
|
|
:enable buffer-file-name
|
2009-10-23 05:15:26 +00:00
|
|
|
|
:help ,(purecopy "Revisit this file immediately using specified coding system")))
|
2009-08-10 21:42:33 +00:00
|
|
|
|
(define-key-after map [set-file-name-coding-system]
|
2009-10-23 05:15:26 +00:00
|
|
|
|
`(menu-item ,(purecopy "For File Name") set-file-name-coding-system
|
|
|
|
|
:help ,(purecopy "How to decode/encode file names")))
|
2009-11-11 06:06:43 +00:00
|
|
|
|
(define-key-after map [separator-2] menu-bar-separator)
|
2009-08-10 21:42:33 +00:00
|
|
|
|
|
|
|
|
|
(define-key-after map [set-keyboard-coding-system]
|
2009-10-23 05:15:26 +00:00
|
|
|
|
`(menu-item ,(purecopy "For Keyboard") set-keyboard-coding-system
|
|
|
|
|
:help ,(purecopy "How to decode keyboard input")))
|
2009-08-10 21:42:33 +00:00
|
|
|
|
(define-key-after map [set-terminal-coding-system]
|
2009-10-23 05:15:26 +00:00
|
|
|
|
`(menu-item ,(purecopy "For Terminal") set-terminal-coding-system
|
2009-08-10 21:42:33 +00:00
|
|
|
|
:enable (null (memq initial-window-system '(x w32 ns)))
|
2009-10-23 05:15:26 +00:00
|
|
|
|
:help ,(purecopy "How to encode terminal output")))
|
2009-11-11 06:06:43 +00:00
|
|
|
|
(define-key-after map [separator-3] menu-bar-separator)
|
2009-08-10 21:42:33 +00:00
|
|
|
|
|
|
|
|
|
(define-key-after map [set-selection-coding-system]
|
2009-10-23 05:15:26 +00:00
|
|
|
|
`(menu-item ,(purecopy "For X Selections/Clipboard") set-selection-coding-system
|
2009-08-10 21:42:33 +00:00
|
|
|
|
:visible (display-selections-p)
|
2009-10-23 05:15:26 +00:00
|
|
|
|
:help ,(purecopy "How to en/decode data to/from selection/clipboard")))
|
2009-08-10 21:42:33 +00:00
|
|
|
|
(define-key-after map [set-next-selection-coding-system]
|
2009-10-23 05:15:26 +00:00
|
|
|
|
`(menu-item ,(purecopy "For Next X Selection") set-next-selection-coding-system
|
2009-08-10 21:42:33 +00:00
|
|
|
|
:visible (display-selections-p)
|
2009-10-23 05:15:26 +00:00
|
|
|
|
:help ,(purecopy "How to en/decode next selection/clipboard operation")))
|
2009-08-10 21:42:33 +00:00
|
|
|
|
(define-key-after map [set-buffer-process-coding-system]
|
2009-10-23 05:15:26 +00:00
|
|
|
|
`(menu-item ,(purecopy "For I/O with Subprocess") set-buffer-process-coding-system
|
2009-08-10 21:42:33 +00:00
|
|
|
|
:visible (fboundp 'start-process)
|
|
|
|
|
:enable (get-buffer-process (current-buffer))
|
2009-10-23 05:15:26 +00:00
|
|
|
|
:help ,(purecopy "How to en/decode I/O from/to subprocess connected to this buffer")))
|
2009-08-10 21:42:33 +00:00
|
|
|
|
map))
|
|
|
|
|
|
|
|
|
|
(defvar mule-menu-keymap
|
|
|
|
|
(let ((map (make-sparse-keymap "Mule (Multilingual Environment)")))
|
|
|
|
|
(define-key-after map [set-language-environment]
|
2009-10-23 05:15:26 +00:00
|
|
|
|
`(menu-item ,(purecopy "Set Language Environment") ,setup-language-environment-map))
|
2009-11-11 06:06:43 +00:00
|
|
|
|
(define-key-after map [separator-mule] menu-bar-separator)
|
2009-08-10 21:42:33 +00:00
|
|
|
|
|
|
|
|
|
(define-key-after map [toggle-input-method]
|
2009-10-23 05:15:26 +00:00
|
|
|
|
`(menu-item ,(purecopy "Toggle Input Method") toggle-input-method))
|
2009-08-10 21:42:33 +00:00
|
|
|
|
(define-key-after map [set-input-method]
|
2009-10-23 05:15:26 +00:00
|
|
|
|
`(menu-item ,(purecopy "Select Input Method...") set-input-method))
|
2009-08-10 21:42:33 +00:00
|
|
|
|
(define-key-after map [describe-input-method]
|
2009-10-23 05:15:26 +00:00
|
|
|
|
`(menu-item ,(purecopy "Describe Input Method") describe-input-method))
|
2009-11-11 06:06:43 +00:00
|
|
|
|
(define-key-after map [separator-input-method] menu-bar-separator)
|
2009-08-10 21:42:33 +00:00
|
|
|
|
|
|
|
|
|
(define-key-after map [set-various-coding-system]
|
2009-10-23 05:15:26 +00:00
|
|
|
|
`(menu-item ,(purecopy "Set Coding Systems") ,set-coding-system-map
|
2009-09-03 06:54:57 +00:00
|
|
|
|
:enable (default-value 'enable-multibyte-characters)))
|
2009-08-10 21:42:33 +00:00
|
|
|
|
(define-key-after map [view-hello-file]
|
2009-10-23 05:15:26 +00:00
|
|
|
|
`(menu-item ,(purecopy "Show Multi-lingual Text") view-hello-file
|
2009-08-10 21:42:33 +00:00
|
|
|
|
:enable (file-readable-p
|
|
|
|
|
(expand-file-name "HELLO" data-directory))
|
2009-10-23 05:15:26 +00:00
|
|
|
|
:help ,(purecopy "Display file which says HELLO in many languages")))
|
2009-11-11 06:06:43 +00:00
|
|
|
|
(define-key-after map [separator-coding-system] menu-bar-separator)
|
2009-08-10 21:42:33 +00:00
|
|
|
|
|
|
|
|
|
(define-key-after map [describe-language-environment]
|
2009-10-23 05:15:26 +00:00
|
|
|
|
`(menu-item ,(purecopy "Describe Language Environment")
|
2010-05-15 14:06:58 +00:00
|
|
|
|
,describe-language-environment-map
|
2009-10-23 05:15:26 +00:00
|
|
|
|
:help ,(purecopy "Show multilingual settings for a specific language")))
|
2009-08-10 21:42:33 +00:00
|
|
|
|
(define-key-after map [describe-input-method]
|
2009-10-23 05:15:26 +00:00
|
|
|
|
`(menu-item ,(purecopy "Describe Input Method...") describe-input-method
|
|
|
|
|
:help ,(purecopy "Keyboard layout for a specific input method")))
|
2009-08-10 21:42:33 +00:00
|
|
|
|
(define-key-after map [describe-coding-system]
|
2009-10-23 05:15:26 +00:00
|
|
|
|
`(menu-item ,(purecopy "Describe Coding System...") describe-coding-system))
|
2009-08-10 21:42:33 +00:00
|
|
|
|
(define-key-after map [list-character-sets]
|
2009-10-23 05:15:26 +00:00
|
|
|
|
`(menu-item ,(purecopy "List Character Sets") list-character-sets
|
|
|
|
|
:help ,(purecopy "Show table of available character sets")))
|
2009-08-10 21:42:33 +00:00
|
|
|
|
(define-key-after map [mule-diag]
|
2009-10-23 05:15:26 +00:00
|
|
|
|
`(menu-item ,(purecopy "Show All of Mule Status") mule-diag
|
|
|
|
|
:help ,(purecopy "Display multilingual environment settings")))
|
2009-08-10 21:42:33 +00:00
|
|
|
|
map)
|
|
|
|
|
"Keymap for Mule (Multilingual environment) menu specific commands.")
|
2000-04-01 11:54:49 +00:00
|
|
|
|
|
1997-02-20 07:02:49 +00:00
|
|
|
|
;; This should be a single character key binding because users use it
|
|
|
|
|
;; very frequently while editing multilingual text. Now we can use
|
|
|
|
|
;; only two such keys: "\C-\\" and "\C-^", but the latter is not
|
|
|
|
|
;; convenient because it requires shifting on most keyboards. An
|
|
|
|
|
;; alternative is "\C-\]" which is now bound to `abort-recursive-edit'
|
|
|
|
|
;; but it won't be used that frequently.
|
|
|
|
|
(define-key global-map "\C-\\" 'toggle-input-method)
|
|
|
|
|
|
2001-11-16 13:06:51 +00:00
|
|
|
|
;; This is no good because people often type Shift-SPC
|
|
|
|
|
;; meaning to type SPC. -- rms.
|
|
|
|
|
;; ;; Here's an alternative key binding for X users (Shift-SPACE).
|
|
|
|
|
;; (define-key global-map [?\S- ] 'toggle-input-method)
|
1997-07-15 08:24:47 +00:00
|
|
|
|
|
2000-08-29 05:37:48 +00:00
|
|
|
|
;;; Mule related hyperlinks.
|
|
|
|
|
(defconst help-xref-mule-regexp-template
|
|
|
|
|
(purecopy (concat "\\(\\<\\("
|
|
|
|
|
"\\(coding system\\)\\|"
|
2000-09-07 02:38:07 +00:00
|
|
|
|
"\\(input method\\)\\|"
|
|
|
|
|
"\\(character set\\)\\|"
|
|
|
|
|
"\\(charset\\)"
|
2000-08-29 05:37:48 +00:00
|
|
|
|
"\\)\\s-+\\)?"
|
|
|
|
|
;; Note starting with word-syntax character:
|
|
|
|
|
"`\\(\\sw\\(\\sw\\|\\s_\\)+\\)'")))
|
|
|
|
|
|
1999-01-06 10:25:34 +00:00
|
|
|
|
(defun coding-system-change-eol-conversion (coding-system eol-type)
|
(toggle-enable-multibyte-characters, sort-coding-systems,
search-unencodable-char): Doc fixes.
(default-input-method, input-method-verbose-flag, input-method-highlight-flag):
Remove * in defcustom's docstrings.
(exit-language-environment-hook, set-default-coding-systems,
coding-system-change-eol-conversion, prefer-coding-system,
find-multibyte-characters, leim-list-entry-regexp, set-input-method,
input-method-exit-on-first-char, princ-list, locale-language-names,
locale-charset-language-names, define-char-code-property):
Fix typos in docstrings.
2007-05-29 00:14:53 +00:00
|
|
|
|
"Return a coding system which differs from CODING-SYSTEM in EOL conversion.
|
1999-01-06 10:25:34 +00:00
|
|
|
|
The returned coding system converts end-of-line by EOL-TYPE
|
|
|
|
|
but text as the same way as CODING-SYSTEM.
|
|
|
|
|
EOL-TYPE should be `unix', `dos', `mac', or nil.
|
|
|
|
|
If EOL-TYPE is nil, the returned coding system detects
|
|
|
|
|
how end-of-line is formatted automatically while decoding.
|
|
|
|
|
|
|
|
|
|
EOL-TYPE can be specified by an integer 0, 1, or 2.
|
|
|
|
|
They means `unix', `dos', and `mac' respectively."
|
|
|
|
|
(if (symbolp eol-type)
|
|
|
|
|
(setq eol-type (cond ((eq eol-type 'unix) 0)
|
|
|
|
|
((eq eol-type 'dos) 1)
|
|
|
|
|
((eq eol-type 'mac) 2)
|
|
|
|
|
(t eol-type))))
|
2006-10-05 14:46:26 +00:00
|
|
|
|
;; We call `coding-system-base' before `coding-system-eol-type',
|
|
|
|
|
;; because the coding-system may not be initialized until then.
|
|
|
|
|
(let* ((base (coding-system-base coding-system))
|
|
|
|
|
(orig-eol-type (coding-system-eol-type coding-system)))
|
|
|
|
|
(cond ((vectorp orig-eol-type)
|
|
|
|
|
(if (not eol-type)
|
|
|
|
|
coding-system
|
|
|
|
|
(aref orig-eol-type eol-type)))
|
|
|
|
|
((not eol-type)
|
|
|
|
|
base)
|
|
|
|
|
((= eol-type orig-eol-type)
|
|
|
|
|
coding-system)
|
|
|
|
|
((progn (setq orig-eol-type (coding-system-eol-type base))
|
|
|
|
|
(vectorp orig-eol-type))
|
|
|
|
|
(aref orig-eol-type eol-type)))))
|
1999-01-06 10:25:34 +00:00
|
|
|
|
|
|
|
|
|
(defun coding-system-change-text-conversion (coding-system coding)
|
|
|
|
|
"Return a coding system which differs from CODING-SYSTEM in text conversion.
|
|
|
|
|
The returned coding system converts text by CODING
|
|
|
|
|
but end-of-line as the same way as CODING-SYSTEM.
|
|
|
|
|
If CODING is nil, the returned coding system detects
|
|
|
|
|
how text is formatted automatically while decoding."
|
2002-04-07 18:51:29 +00:00
|
|
|
|
(let ((eol-type (coding-system-eol-type coding-system)))
|
|
|
|
|
(coding-system-change-eol-conversion
|
|
|
|
|
(if coding coding 'undecided)
|
|
|
|
|
(if (numberp eol-type) (aref [unix dos mac] eol-type)))))
|
1999-01-06 10:25:34 +00:00
|
|
|
|
|
2009-01-27 04:39:30 +00:00
|
|
|
|
;; Canonicalize the coding system name NAME by removing some prefixes
|
|
|
|
|
;; and delimiter characters. Support function of
|
|
|
|
|
;; coding-system-from-name.
|
|
|
|
|
(defun canonicalize-coding-system-name (name)
|
2010-01-15 12:35:31 +00:00
|
|
|
|
(if (string-match "^\\(ms\\|ibm\\|windows-\\)\\([0-9]+\\)$" name)
|
|
|
|
|
;; "ms950", "ibm950", "windows-950" -> "cp950"
|
|
|
|
|
(concat "cp" (match-string 2 name))
|
|
|
|
|
(if (string-match "^iso[-_ ]?[0-9]" name)
|
|
|
|
|
;; "iso-8859-1" -> "8859-1", "iso-2022-jp" ->"2022-jp"
|
|
|
|
|
(setq name (substring name (1- (match-end 0)))))
|
|
|
|
|
(let ((idx (string-match "[-_ /]" name)))
|
|
|
|
|
;; Delete "-", "_", " ", "/" but do distinguish "16-be" and "16be".
|
|
|
|
|
(while idx
|
|
|
|
|
(if (and (>= idx 2)
|
|
|
|
|
(eq (string-match "16-[lb]e$" name (- idx 2))
|
|
|
|
|
(- idx 2)))
|
|
|
|
|
(setq idx (string-match "[-_ /]" name (match-end 0)))
|
|
|
|
|
(setq name (concat (substring name 0 idx) (substring name (1+ idx)))
|
|
|
|
|
idx (string-match "[-_ /]" name idx))))
|
|
|
|
|
name)))
|
2009-01-27 04:39:30 +00:00
|
|
|
|
|
|
|
|
|
(defun coding-system-from-name (name)
|
|
|
|
|
"Return a coding system whose name matches with NAME (string or symbol)."
|
|
|
|
|
(let (sym)
|
|
|
|
|
(if (stringp name) (setq sym (intern name))
|
|
|
|
|
(setq sym name name (symbol-name name)))
|
|
|
|
|
(if (coding-system-p sym)
|
|
|
|
|
sym
|
|
|
|
|
(let ((eol-type
|
|
|
|
|
(if (string-match "-\\(unix\\|dos\\|mac\\)$" name)
|
|
|
|
|
(prog1 (intern (match-string 1 name))
|
|
|
|
|
(setq name (substring name 0 (match-beginning 0)))))))
|
|
|
|
|
(setq name (canonicalize-coding-system-name (downcase name)))
|
|
|
|
|
(catch 'tag
|
|
|
|
|
(dolist (elt (coding-system-list))
|
|
|
|
|
(if (string= (canonicalize-coding-system-name (symbol-name elt))
|
|
|
|
|
name)
|
|
|
|
|
(throw 'tag (if eol-type (coding-system-change-eol-conversion
|
|
|
|
|
elt eol-type)
|
|
|
|
|
elt)))))))))
|
|
|
|
|
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(defun toggle-enable-multibyte-characters (&optional arg)
|
1997-12-21 01:49:03 +00:00
|
|
|
|
"Change whether this buffer uses multibyte characters.
|
2008-11-04 17:11:06 +00:00
|
|
|
|
With ARG, use multibyte characters if the ARG is positive.
|
1997-12-21 01:49:03 +00:00
|
|
|
|
|
|
|
|
|
Note that this command does not convert the byte contents of
|
|
|
|
|
the buffer; it only changes the way those bytes are interpreted.
|
|
|
|
|
In general, therefore, this command *changes* the sequence of
|
|
|
|
|
characters that the current buffer contains.
|
|
|
|
|
|
(toggle-enable-multibyte-characters, sort-coding-systems,
search-unencodable-char): Doc fixes.
(default-input-method, input-method-verbose-flag, input-method-highlight-flag):
Remove * in defcustom's docstrings.
(exit-language-environment-hook, set-default-coding-systems,
coding-system-change-eol-conversion, prefer-coding-system,
find-multibyte-characters, leim-list-entry-regexp, set-input-method,
input-method-exit-on-first-char, princ-list, locale-language-names,
locale-charset-language-names, define-char-code-property):
Fix typos in docstrings.
2007-05-29 00:14:53 +00:00
|
|
|
|
We suggest you avoid using this command unless you know what you are
|
|
|
|
|
doing. If you use it by mistake, and the buffer is now displayed
|
1997-12-21 01:49:03 +00:00
|
|
|
|
wrong, use this command again to toggle back to the right mode."
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(interactive "P")
|
1998-02-03 06:29:24 +00:00
|
|
|
|
(let ((new-flag
|
|
|
|
|
(if (null arg) (null enable-multibyte-characters)
|
|
|
|
|
(> (prefix-numeric-value arg) 0))))
|
|
|
|
|
(set-buffer-multibyte new-flag))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(force-mode-line-update))
|
|
|
|
|
|
|
|
|
|
(defun view-hello-file ()
|
2008-06-28 19:01:46 +00:00
|
|
|
|
"Display the HELLO file, which lists many languages and characters."
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(interactive)
|
1997-04-05 02:35:53 +00:00
|
|
|
|
;; We have to decode the file in any environment.
|
2010-04-20 14:45:14 +00:00
|
|
|
|
(letf ((coding-system-for-read 'iso-2022-7bit))
|
2010-06-04 01:38:12 +00:00
|
|
|
|
(view-file (expand-file-name "HELLO" data-directory))))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
2002-09-13 02:15:56 +00:00
|
|
|
|
(defun universal-coding-system-argument (coding-system)
|
1997-05-28 03:37:32 +00:00
|
|
|
|
"Execute an I/O command using the specified coding system."
|
2002-09-13 02:15:56 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(let ((default (and buffer-file-coding-system
|
1998-05-01 04:16:29 +00:00
|
|
|
|
(not (eq (coding-system-type buffer-file-coding-system)
|
2003-06-06 03:59:02 +00:00
|
|
|
|
'undecided))
|
2002-09-13 02:15:56 +00:00
|
|
|
|
buffer-file-coding-system)))
|
|
|
|
|
(list (read-coding-system
|
|
|
|
|
(if default
|
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
* woman.el (woman-file-name):
* wid-edit.el (widget-file-prompt-value)
(widget-coding-system-prompt-value):
* w32-fns.el (set-w32-system-coding-system):
* vc.el (vc-version-diff, vc-annotate):
* textmodes/reftex-auc.el (reftex-arg-cite)
(reftex-arg-index-tag):
* textmodes/refer.el (refer-get-bib-files):
* textmodes/artist.el (artist-figlet-choose-font):
* terminal.el (terminal-emulator):
* replace.el (occur-read-primary-args):
* rect.el (string-rectangle, string-insert-rectangle):
* ps-print.el (ps-print-preprint):
* progmodes/pascal.el (pascal-goto-defun):
* progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
* progmodes/compile.el (compilation-find-file):
* printing.el (pr-interactive-n-up):
* play/animate.el (animate-birthday-present):
* net/rcompile.el (remote-compile):
* man.el (man, Man-goto-section, Man-follow-manual-reference):
* mail/rmailsum.el (rmail-summary-search-backward)
(rmail-summary-search):
* mail/rmailout.el (rmail-output-read-rmail-file-name)
(rmail-output-read-file-name):
* mail/rmail.el (rmail-search, rmail-search-backwards):
* mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
* locate.el (locate):
* international/quail.el (quail-show-keyboard-layout):
* international/mule.el (set-buffer-file-coding-system)
(revert-buffer-with-coding-system, set-file-name-coding-system)
(set-terminal-coding-system, set-keyboard-coding-system)
(set-next-selection-coding-system):
* international/mule-diag.el (describe-coding-system)
(describe-font, describe-fontset):
* international/mule-cmds.el (universal-coding-system-argument)
(search-unencodable-char, describe-input-method)
(set-language-environment, describe-language-environment):
* international/codepage.el (codepage-setup):
* international/code-pages.el (codepage-setup):
* info.el (Info-search, Info-follow-reference)
(Info-search-backward):
* emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-clear-cache, ad-activate)
(ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
(ad-enable-advice, ad-disable-advice, ad-remove-advice)
(ad-read-regexp):
* ediff-util.el (ediff-toggle-regexp-match):
* ediff-ptch.el (ediff-prompt-for-patch-file):
* dired-aux.el (dired-diff):
* diff.el (diff):
* cus-edit.el (custom-variable-prompt):
* calendar/timeclock.el (timeclock-ask-for-project):
* calc/calcalg3.el (calc-get-fit-variables):
* calc/calc-store.el (calc-edit-variable)
(calc-permanent-variable):
* vc-mcvs.el (vc-mcvs-register):
* shadowfile.el (shadow-define-literal-group):
* woman.el (woman-file-name):
* vc.el (vc-version-diff, vc-merge):
* textmodes/reftex-index.el (reftex-index-complete-tag):
* format.el (format-decode-buffer, format-decode-region):
* emulation/viper-cmd.el (viper-read-string-with-history):
* emacs-lisp/debug.el (cancel-debug-on-entry):
* emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
* ediff.el (ediff-merge-revisions)
(ediff-merge-revisions-with-ancestor, ediff-revision):
* completion.el (interactive-completion-string-reader):
* calc/calc-prog.el (calc-user-define-formula):
Follow convention for reading with the minibuffer.
2005-09-24 13:44:02 +00:00
|
|
|
|
(format "Coding system for following command (default %s): " default)
|
2002-09-13 02:15:56 +00:00
|
|
|
|
"Coding system for following command: ")
|
|
|
|
|
default))))
|
|
|
|
|
(let* ((keyseq (read-key-sequence
|
1997-09-07 06:51:34 +00:00
|
|
|
|
(format "Command to execute with %s:" coding-system)))
|
2001-01-24 13:14:45 +00:00
|
|
|
|
(cmd (key-binding keyseq))
|
|
|
|
|
prefix)
|
2008-10-22 06:44:52 +00:00
|
|
|
|
;; read-key-sequence ignores quit, so make an explicit check.
|
|
|
|
|
;; Like many places, this assumes quit == C-g, but it need not be.
|
2009-01-09 05:00:56 +00:00
|
|
|
|
(if (equal last-input-event ?\C-g)
|
2008-10-22 06:44:52 +00:00
|
|
|
|
(keyboard-quit))
|
2008-10-05 19:07:03 +00:00
|
|
|
|
(when (memq cmd '(universal-argument digit-argument))
|
2001-01-24 13:14:45 +00:00
|
|
|
|
(call-interactively cmd)
|
2003-02-04 13:24:35 +00:00
|
|
|
|
|
2001-01-24 13:14:45 +00:00
|
|
|
|
;; Process keys bound in `universal-argument-map'.
|
|
|
|
|
(while (progn
|
|
|
|
|
(setq keyseq (read-key-sequence nil t)
|
|
|
|
|
cmd (key-binding keyseq t))
|
|
|
|
|
(not (eq cmd 'universal-argument-other-key)))
|
|
|
|
|
(let ((current-prefix-arg prefix-arg)
|
2009-01-09 04:29:16 +00:00
|
|
|
|
;; Have to bind `last-command-event' here so that
|
2004-04-16 12:51:06 +00:00
|
|
|
|
;; `digit-argument', for instance, can compute the
|
2001-01-24 13:14:45 +00:00
|
|
|
|
;; prefix arg.
|
2009-01-09 04:29:16 +00:00
|
|
|
|
(last-command-event (aref keyseq 0)))
|
2001-01-24 13:14:45 +00:00
|
|
|
|
(call-interactively cmd)))
|
|
|
|
|
|
2002-09-08 19:49:54 +00:00
|
|
|
|
;; This is the final call to `universal-argument-other-key', which
|
2001-01-24 13:14:45 +00:00
|
|
|
|
;; set's the final `prefix-arg.
|
|
|
|
|
(let ((current-prefix-arg prefix-arg))
|
|
|
|
|
(call-interactively cmd))
|
2003-02-04 13:24:35 +00:00
|
|
|
|
|
2001-01-24 13:14:45 +00:00
|
|
|
|
;; Read the command to execute with the given prefix arg.
|
|
|
|
|
(setq prefix prefix-arg
|
|
|
|
|
keyseq (read-key-sequence nil t)
|
|
|
|
|
cmd (key-binding keyseq)))
|
|
|
|
|
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(let ((coding-system-for-read coding-system)
|
2001-01-24 13:14:45 +00:00
|
|
|
|
(coding-system-for-write coding-system)
|
2002-12-17 11:40:47 +00:00
|
|
|
|
(coding-system-require-warning t)
|
2001-01-24 13:14:45 +00:00
|
|
|
|
(current-prefix-arg prefix))
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(message "")
|
|
|
|
|
(call-interactively cmd))))
|
|
|
|
|
|
1997-08-04 07:03:08 +00:00
|
|
|
|
(defun set-default-coding-systems (coding-system)
|
1997-08-10 04:07:03 +00:00
|
|
|
|
"Set default value of various coding systems to CODING-SYSTEM.
|
1998-03-03 01:36:35 +00:00
|
|
|
|
This sets the following coding systems:
|
1997-08-10 04:07:03 +00:00
|
|
|
|
o coding system of a newly created buffer
|
1997-10-23 12:05:45 +00:00
|
|
|
|
o default coding system for subprocess I/O
|
|
|
|
|
This also sets the following values:
|
2005-07-07 12:43:14 +00:00
|
|
|
|
o default value used as `file-name-coding-system' for converting file names
|
(toggle-enable-multibyte-characters, sort-coding-systems,
search-unencodable-char): Doc fixes.
(default-input-method, input-method-verbose-flag, input-method-highlight-flag):
Remove * in defcustom's docstrings.
(exit-language-environment-hook, set-default-coding-systems,
coding-system-change-eol-conversion, prefer-coding-system,
find-multibyte-characters, leim-list-entry-regexp, set-input-method,
input-method-exit-on-first-char, princ-list, locale-language-names,
locale-charset-language-names, define-char-code-property):
Fix typos in docstrings.
2007-05-29 00:14:53 +00:00
|
|
|
|
if CODING-SYSTEM is ASCII-compatible
|
2009-01-24 15:55:55 +00:00
|
|
|
|
o default value for the command `set-terminal-coding-system'
|
2005-07-07 12:43:14 +00:00
|
|
|
|
o default value for the command `set-keyboard-coding-system'
|
(toggle-enable-multibyte-characters, sort-coding-systems,
search-unencodable-char): Doc fixes.
(default-input-method, input-method-verbose-flag, input-method-highlight-flag):
Remove * in defcustom's docstrings.
(exit-language-environment-hook, set-default-coding-systems,
coding-system-change-eol-conversion, prefer-coding-system,
find-multibyte-characters, leim-list-entry-regexp, set-input-method,
input-method-exit-on-first-char, princ-list, locale-language-names,
locale-charset-language-names, define-char-code-property):
Fix typos in docstrings.
2007-05-29 00:14:53 +00:00
|
|
|
|
if CODING-SYSTEM is ASCII-compatible"
|
1997-08-04 07:03:08 +00:00
|
|
|
|
(check-coding-system coding-system)
|
|
|
|
|
(setq-default buffer-file-coding-system coding-system)
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(if (fboundp 'ucs-set-table-for-input)
|
|
|
|
|
(dolist (buffer (buffer-list))
|
|
|
|
|
(or (local-variable-p 'buffer-file-coding-system buffer)
|
|
|
|
|
(ucs-set-table-for-input buffer))))
|
|
|
|
|
|
2006-11-22 01:03:19 +00:00
|
|
|
|
(if (eq system-type 'darwin)
|
2005-02-03 16:06:34 +00:00
|
|
|
|
;; The file-name coding system on Darwin systems is always utf-8.
|
2006-11-22 01:03:19 +00:00
|
|
|
|
(setq default-file-name-coding-system 'utf-8)
|
2009-09-03 06:54:57 +00:00
|
|
|
|
(if (and (default-value 'enable-multibyte-characters)
|
2006-11-22 01:03:19 +00:00
|
|
|
|
(or (not coding-system)
|
|
|
|
|
(coding-system-get coding-system 'ascii-compatible-p)))
|
|
|
|
|
(setq default-file-name-coding-system coding-system)))
|
2008-10-01 16:18:59 +00:00
|
|
|
|
(setq default-terminal-coding-system coding-system)
|
1997-08-04 07:03:08 +00:00
|
|
|
|
(setq default-keyboard-coding-system coding-system)
|
2002-04-07 18:51:29 +00:00
|
|
|
|
;; Preserve eol-type from existing default-process-coding-systems.
|
|
|
|
|
;; On non-unix-like systems in particular, these may have been set
|
|
|
|
|
;; carefully by the user, or by the startup code, to deal with the
|
|
|
|
|
;; users shell appropriately, so should not be altered by changing
|
|
|
|
|
;; language environment.
|
|
|
|
|
(let ((output-coding
|
|
|
|
|
(coding-system-change-text-conversion
|
|
|
|
|
(car default-process-coding-system) coding-system))
|
|
|
|
|
(input-coding
|
|
|
|
|
(coding-system-change-text-conversion
|
|
|
|
|
(cdr default-process-coding-system) coding-system)))
|
|
|
|
|
(setq default-process-coding-system
|
|
|
|
|
(cons output-coding input-coding))))
|
1997-08-04 07:03:08 +00:00
|
|
|
|
|
1997-08-10 04:07:03 +00:00
|
|
|
|
(defun prefer-coding-system (coding-system)
|
|
|
|
|
"Add CODING-SYSTEM at the front of the priority list for automatic detection.
|
1998-03-03 01:36:35 +00:00
|
|
|
|
This also sets the following coding systems:
|
1997-08-10 04:07:03 +00:00
|
|
|
|
o coding system of a newly created buffer
|
1997-10-23 12:05:45 +00:00
|
|
|
|
o default coding system for subprocess I/O
|
|
|
|
|
This also sets the following values:
|
(toggle-enable-multibyte-characters, sort-coding-systems,
search-unencodable-char): Doc fixes.
(default-input-method, input-method-verbose-flag, input-method-highlight-flag):
Remove * in defcustom's docstrings.
(exit-language-environment-hook, set-default-coding-systems,
coding-system-change-eol-conversion, prefer-coding-system,
find-multibyte-characters, leim-list-entry-regexp, set-input-method,
input-method-exit-on-first-char, princ-list, locale-language-names,
locale-charset-language-names, define-char-code-property):
Fix typos in docstrings.
2007-05-29 00:14:53 +00:00
|
|
|
|
o default value used as `file-name-coding-system' for converting file names
|
2009-01-24 15:55:55 +00:00
|
|
|
|
o default value for the command `set-terminal-coding-system'
|
1998-12-17 17:12:56 +00:00
|
|
|
|
o default value for the command `set-keyboard-coding-system'
|
|
|
|
|
|
1998-12-30 17:21:44 +00:00
|
|
|
|
If CODING-SYSTEM specifies a certain type of EOL conversion, the coding
|
|
|
|
|
systems set by this function will use that type of EOL conversion.
|
|
|
|
|
|
2008-11-18 01:35:25 +00:00
|
|
|
|
A coding system that requires automatic detection of text+encoding
|
|
|
|
|
\(e.g. undecided, unix) can't be preferred."
|
1997-08-10 04:07:03 +00:00
|
|
|
|
(interactive "zPrefer coding system: ")
|
|
|
|
|
(if (not (and coding-system (coding-system-p coding-system)))
|
|
|
|
|
(error "Invalid coding system `%s'" coding-system))
|
2002-03-01 02:12:40 +00:00
|
|
|
|
(if (memq (coding-system-type coding-system) '(raw-text undecided))
|
|
|
|
|
(error "Can't prefer the coding system `%s'" coding-system))
|
|
|
|
|
(let ((base (coding-system-base coding-system))
|
1998-12-30 17:21:44 +00:00
|
|
|
|
(eol-type (coding-system-eol-type coding-system)))
|
2002-03-01 02:12:40 +00:00
|
|
|
|
(set-coding-system-priority base)
|
2009-10-02 03:48:36 +00:00
|
|
|
|
(and (called-interactively-p 'interactive)
|
2002-03-01 02:12:40 +00:00
|
|
|
|
(or (eq base coding-system)
|
|
|
|
|
(message "Highest priority is set to %s (base of %s)"
|
|
|
|
|
base coding-system)))
|
1998-12-30 17:21:44 +00:00
|
|
|
|
;; If they asked for specific EOL conversion, honor that.
|
1998-12-31 05:44:40 +00:00
|
|
|
|
(if (memq eol-type '(0 1 2))
|
2002-03-01 02:12:40 +00:00
|
|
|
|
(setq base
|
|
|
|
|
(coding-system-change-eol-conversion base eol-type)))
|
|
|
|
|
(set-default-coding-systems base)))
|
1997-08-10 04:07:03 +00:00
|
|
|
|
|
2000-07-27 06:09:25 +00:00
|
|
|
|
(defvar sort-coding-systems-predicate nil
|
|
|
|
|
"If non-nil, a predicate function to sort coding systems.
|
|
|
|
|
|
|
|
|
|
It is called with two coding systems, and should return t if the first
|
|
|
|
|
one is \"less\" than the second.
|
|
|
|
|
|
|
|
|
|
The function `sort-coding-systems' use it.")
|
|
|
|
|
|
|
|
|
|
(defun sort-coding-systems (codings)
|
|
|
|
|
"Sort coding system list CODINGS by a priority of each coding system.
|
(toggle-enable-multibyte-characters, sort-coding-systems,
search-unencodable-char): Doc fixes.
(default-input-method, input-method-verbose-flag, input-method-highlight-flag):
Remove * in defcustom's docstrings.
(exit-language-environment-hook, set-default-coding-systems,
coding-system-change-eol-conversion, prefer-coding-system,
find-multibyte-characters, leim-list-entry-regexp, set-input-method,
input-method-exit-on-first-char, princ-list, locale-language-names,
locale-charset-language-names, define-char-code-property):
Fix typos in docstrings.
2007-05-29 00:14:53 +00:00
|
|
|
|
Return the sorted list. CODINGS is modified by side effects.
|
2000-07-27 06:09:25 +00:00
|
|
|
|
|
|
|
|
|
If a coding system is most preferred, it has the highest priority.
|
(toggle-enable-multibyte-characters, sort-coding-systems,
search-unencodable-char): Doc fixes.
(default-input-method, input-method-verbose-flag, input-method-highlight-flag):
Remove * in defcustom's docstrings.
(exit-language-environment-hook, set-default-coding-systems,
coding-system-change-eol-conversion, prefer-coding-system,
find-multibyte-characters, leim-list-entry-regexp, set-input-method,
input-method-exit-on-first-char, princ-list, locale-language-names,
locale-charset-language-names, define-char-code-property):
Fix typos in docstrings.
2007-05-29 00:14:53 +00:00
|
|
|
|
Otherwise, coding systems that correspond to MIME charsets have
|
|
|
|
|
higher priorities. Among them, a coding system included in the
|
|
|
|
|
`coding-system' key of the current language environment has higher
|
|
|
|
|
priority. See also the documentation of `language-info-alist'.
|
2000-07-27 06:09:25 +00:00
|
|
|
|
|
|
|
|
|
If the variable `sort-coding-systems-predicate' (which see) is
|
(toggle-enable-multibyte-characters, sort-coding-systems,
search-unencodable-char): Doc fixes.
(default-input-method, input-method-verbose-flag, input-method-highlight-flag):
Remove * in defcustom's docstrings.
(exit-language-environment-hook, set-default-coding-systems,
coding-system-change-eol-conversion, prefer-coding-system,
find-multibyte-characters, leim-list-entry-regexp, set-input-method,
input-method-exit-on-first-char, princ-list, locale-language-names,
locale-charset-language-names, define-char-code-property):
Fix typos in docstrings.
2007-05-29 00:14:53 +00:00
|
|
|
|
non-nil, it is used to sort CODINGS instead."
|
2000-07-27 06:09:25 +00:00
|
|
|
|
(if sort-coding-systems-predicate
|
|
|
|
|
(sort codings sort-coding-systems-predicate)
|
2003-09-08 12:53:41 +00:00
|
|
|
|
(let* ((from-priority (coding-system-priority-list))
|
|
|
|
|
(most-preferred (car from-priority))
|
2000-07-27 06:09:25 +00:00
|
|
|
|
(lang-preferred (get-language-info current-language-environment
|
|
|
|
|
'coding-system))
|
|
|
|
|
(func (function
|
|
|
|
|
(lambda (x)
|
|
|
|
|
(let ((base (coding-system-base x)))
|
2003-04-11 01:20:36 +00:00
|
|
|
|
;; We calculate the priority number 0..255 by
|
|
|
|
|
;; using the 8 bits PMMLCEII as this:
|
2007-08-08 07:27:21 +00:00
|
|
|
|
;; P: 1 if most preferred.
|
|
|
|
|
;; MM: greater than 0 if mime-charset.
|
|
|
|
|
;; L: 1 if one of the current lang. env.'s codings.
|
|
|
|
|
;; C: 1 if one of codings listed in the category list.
|
|
|
|
|
;; E: 1 if not XXX-with-esc
|
2003-04-11 01:20:36 +00:00
|
|
|
|
;; II: if iso-2022 based, 0..3, else 1.
|
|
|
|
|
(logior
|
|
|
|
|
(lsh (if (eq base most-preferred) 1 0) 7)
|
|
|
|
|
(lsh
|
2003-09-08 12:53:41 +00:00
|
|
|
|
(let ((mime (coding-system-get base :mime-charset)))
|
2003-01-03 20:16:56 +00:00
|
|
|
|
;; Prefer coding systems corresponding to a
|
|
|
|
|
;; MIME charset.
|
2000-07-27 06:09:25 +00:00
|
|
|
|
(if mime
|
2003-01-03 20:16:56 +00:00
|
|
|
|
;; Lower utf-16 priority so that we
|
|
|
|
|
;; normally prefer utf-8 to it, and put
|
|
|
|
|
;; x-ctext below that.
|
2008-11-18 01:35:25 +00:00
|
|
|
|
(cond ((string-match-p "utf-16"
|
|
|
|
|
(symbol-name mime))
|
2003-04-11 01:20:36 +00:00
|
|
|
|
2)
|
2008-11-18 01:35:25 +00:00
|
|
|
|
((string-match-p "^x-" (symbol-name mime))
|
2003-04-11 01:20:36 +00:00
|
|
|
|
1)
|
|
|
|
|
(t 3))
|
2000-07-27 06:09:25 +00:00
|
|
|
|
0))
|
2003-04-11 01:20:36 +00:00
|
|
|
|
5)
|
|
|
|
|
(lsh (if (memq base lang-preferred) 1 0) 4)
|
2003-09-08 12:53:41 +00:00
|
|
|
|
(lsh (if (memq base from-priority) 1 0) 3)
|
2008-11-18 01:35:25 +00:00
|
|
|
|
(lsh (if (string-match-p "-with-esc\\'"
|
|
|
|
|
(symbol-name base))
|
2003-04-11 01:20:36 +00:00
|
|
|
|
0 1) 2)
|
2003-09-08 12:53:41 +00:00
|
|
|
|
(if (eq (coding-system-type base) 'iso-2022)
|
|
|
|
|
(let ((category (coding-system-category base)))
|
|
|
|
|
;; For ISO based coding systems, prefer
|
|
|
|
|
;; one that doesn't use designation nor
|
|
|
|
|
;; locking/single shifting.
|
2003-06-06 03:59:02 +00:00
|
|
|
|
(cond
|
|
|
|
|
((or (eq category 'coding-category-iso-8-1)
|
|
|
|
|
(eq category 'coding-category-iso-8-2))
|
|
|
|
|
2)
|
|
|
|
|
((or (eq category 'coding-category-iso-7-tight)
|
|
|
|
|
(eq category 'coding-category-iso-7))
|
|
|
|
|
1)
|
|
|
|
|
(t
|
|
|
|
|
0)))
|
|
|
|
|
1)
|
2002-06-27 18:40:25 +00:00
|
|
|
|
))))))
|
2000-07-27 06:09:25 +00:00
|
|
|
|
(sort codings (function (lambda (x y)
|
|
|
|
|
(> (funcall func x) (funcall func y))))))))
|
1998-01-22 01:42:20 +00:00
|
|
|
|
|
1998-04-06 05:07:36 +00:00
|
|
|
|
(defun find-coding-systems-region (from to)
|
1998-01-22 01:42:20 +00:00
|
|
|
|
"Return a list of proper coding systems to encode a text between FROM and TO.
|
2003-09-08 12:53:41 +00:00
|
|
|
|
|
2002-07-24 22:20:49 +00:00
|
|
|
|
If FROM is a string, find coding systems in that instead of the buffer.
|
1998-01-22 01:42:20 +00:00
|
|
|
|
All coding systems in the list can safely encode any multibyte characters
|
|
|
|
|
in the text.
|
|
|
|
|
|
1998-09-06 14:31:49 +00:00
|
|
|
|
If the text contains no multibyte characters, return a list of a single
|
1998-04-06 05:07:36 +00:00
|
|
|
|
element `undecided'."
|
2000-07-27 06:09:25 +00:00
|
|
|
|
(let ((codings (find-coding-systems-region-internal from to)))
|
|
|
|
|
(if (eq codings t)
|
|
|
|
|
;; The text contains only ASCII characters. Any coding
|
|
|
|
|
;; systems are safe.
|
|
|
|
|
'(undecided)
|
|
|
|
|
;; We need copy-sequence because sorting will alter the argument.
|
|
|
|
|
(sort-coding-systems (copy-sequence codings)))))
|
1998-01-22 01:42:20 +00:00
|
|
|
|
|
1998-04-06 05:07:36 +00:00
|
|
|
|
(defun find-coding-systems-string (string)
|
|
|
|
|
"Return a list of proper coding systems to encode STRING.
|
|
|
|
|
All coding systems in the list can safely encode any multibyte characters
|
|
|
|
|
in STRING.
|
|
|
|
|
|
1998-09-06 14:31:49 +00:00
|
|
|
|
If STRING contains no multibyte characters, return a list of a single
|
1998-04-06 05:07:36 +00:00
|
|
|
|
element `undecided'."
|
2000-07-27 06:09:25 +00:00
|
|
|
|
(find-coding-systems-region string nil))
|
1998-04-06 05:07:36 +00:00
|
|
|
|
|
|
|
|
|
(defun find-coding-systems-for-charsets (charsets)
|
|
|
|
|
"Return a list of proper coding systems to encode characters of CHARSETS.
|
2003-03-18 04:23:50 +00:00
|
|
|
|
CHARSETS is a list of character sets.
|
2002-09-08 19:49:54 +00:00
|
|
|
|
|
|
|
|
|
This only finds coding systems of type `charset', whose
|
|
|
|
|
`:charset-list' property includes all of CHARSETS (plus `ascii' for
|
2008-11-18 01:35:25 +00:00
|
|
|
|
ASCII-compatible coding systems). It was used in older versions of
|
2002-09-08 19:49:54 +00:00
|
|
|
|
Emacs, but is unlikely to be what you really want now."
|
|
|
|
|
;; Deal with aliases.
|
|
|
|
|
(setq charsets (mapcar (lambda (c)
|
|
|
|
|
(get-charset-property c :name))
|
|
|
|
|
charsets))
|
2000-07-27 06:09:25 +00:00
|
|
|
|
(cond ((or (null charsets)
|
|
|
|
|
(and (= (length charsets) 1)
|
|
|
|
|
(eq 'ascii (car charsets))))
|
|
|
|
|
'(undecided))
|
|
|
|
|
((or (memq 'eight-bit-control charsets)
|
|
|
|
|
(memq 'eight-bit-graphic charsets))
|
2002-09-08 19:49:54 +00:00
|
|
|
|
'(raw-text utf-8-emacs))
|
2000-07-27 06:09:25 +00:00
|
|
|
|
(t
|
2002-09-08 19:49:54 +00:00
|
|
|
|
(let (codings)
|
|
|
|
|
(dolist (cs (coding-system-list t))
|
2003-01-07 18:06:43 +00:00
|
|
|
|
(let ((cs-charsets (and (eq (coding-system-type cs) 'charset)
|
|
|
|
|
(coding-system-charset-list cs)))
|
2002-09-08 19:49:54 +00:00
|
|
|
|
(charsets charsets))
|
|
|
|
|
(if (coding-system-get cs :ascii-compatible-p)
|
|
|
|
|
(add-to-list 'cs-charsets 'ascii))
|
|
|
|
|
(if (catch 'ok
|
|
|
|
|
(when cs-charsets
|
|
|
|
|
(while charsets
|
|
|
|
|
(unless (memq (pop charsets) cs-charsets)
|
|
|
|
|
(throw 'ok nil)))
|
|
|
|
|
t))
|
|
|
|
|
(push cs codings))))
|
|
|
|
|
(nreverse codings)))))
|
1998-01-22 01:42:20 +00:00
|
|
|
|
|
1998-07-25 04:23:13 +00:00
|
|
|
|
(defun find-multibyte-characters (from to &optional maxcount excludes)
|
|
|
|
|
"Find multibyte characters in the region specified by FROM and TO.
|
|
|
|
|
If FROM is a string, find multibyte characters in the string.
|
|
|
|
|
The return value is an alist of the following format:
|
|
|
|
|
((CHARSET COUNT CHAR ...) ...)
|
|
|
|
|
where
|
|
|
|
|
CHARSET is a character set,
|
|
|
|
|
COUNT is a number of characters,
|
2002-09-08 19:49:54 +00:00
|
|
|
|
CHARs are the characters found from the character set.
|
1998-07-25 04:23:13 +00:00
|
|
|
|
Optional 3rd arg MAXCOUNT limits how many CHARs are put in the above list.
|
(toggle-enable-multibyte-characters, sort-coding-systems,
search-unencodable-char): Doc fixes.
(default-input-method, input-method-verbose-flag, input-method-highlight-flag):
Remove * in defcustom's docstrings.
(exit-language-environment-hook, set-default-coding-systems,
coding-system-change-eol-conversion, prefer-coding-system,
find-multibyte-characters, leim-list-entry-regexp, set-input-method,
input-method-exit-on-first-char, princ-list, locale-language-names,
locale-charset-language-names, define-char-code-property):
Fix typos in docstrings.
2007-05-29 00:14:53 +00:00
|
|
|
|
Optional 4th arg EXCLUDES is a list of character sets to be ignored."
|
1998-07-25 04:23:13 +00:00
|
|
|
|
(let ((chars nil)
|
|
|
|
|
charset char)
|
|
|
|
|
(if (stringp from)
|
2003-06-06 03:59:02 +00:00
|
|
|
|
(if (multibyte-string-p from)
|
|
|
|
|
(let ((idx 0))
|
2008-11-18 01:35:25 +00:00
|
|
|
|
(while (setq idx (string-match-p "[^\000-\177]" from idx))
|
2003-06-06 03:59:02 +00:00
|
|
|
|
(setq char (aref from idx)
|
|
|
|
|
charset (char-charset char))
|
|
|
|
|
(unless (memq charset excludes)
|
|
|
|
|
(let ((slot (assq charset chars)))
|
|
|
|
|
(if slot
|
|
|
|
|
(if (not (memq char (nthcdr 2 slot)))
|
|
|
|
|
(let ((count (nth 1 slot)))
|
|
|
|
|
(setcar (cdr slot) (1+ count))
|
|
|
|
|
(if (or (not maxcount) (< count maxcount))
|
|
|
|
|
(nconc slot (list char)))))
|
|
|
|
|
(setq chars (cons (list charset 1 char) chars)))))
|
|
|
|
|
(setq idx (1+ idx)))))
|
|
|
|
|
(if enable-multibyte-characters
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char from)
|
|
|
|
|
(while (re-search-forward "[^\000-\177]" to t)
|
|
|
|
|
(setq char (preceding-char)
|
|
|
|
|
charset (char-charset char))
|
|
|
|
|
(unless (memq charset excludes)
|
1998-07-25 04:23:13 +00:00
|
|
|
|
(let ((slot (assq charset chars)))
|
|
|
|
|
(if slot
|
2003-06-06 03:59:02 +00:00
|
|
|
|
(if (not (member char (nthcdr 2 slot)))
|
1998-07-25 04:23:13 +00:00
|
|
|
|
(let ((count (nth 1 slot)))
|
|
|
|
|
(setcar (cdr slot) (1+ count))
|
|
|
|
|
(if (or (not maxcount) (< count maxcount))
|
|
|
|
|
(nconc slot (list char)))))
|
2003-06-06 03:59:02 +00:00
|
|
|
|
(setq chars (cons (list charset 1 char) chars)))))))))
|
1998-07-25 04:23:13 +00:00
|
|
|
|
(nreverse chars)))
|
|
|
|
|
|
2002-08-11 01:04:41 +00:00
|
|
|
|
(defun search-unencodable-char (coding-system)
|
|
|
|
|
"Search forward from point for a character that is not encodable.
|
|
|
|
|
It asks which coding system to check.
|
|
|
|
|
If such a character is found, set point after that character.
|
|
|
|
|
Otherwise, don't move point.
|
|
|
|
|
|
(toggle-enable-multibyte-characters, sort-coding-systems,
search-unencodable-char): Doc fixes.
(default-input-method, input-method-verbose-flag, input-method-highlight-flag):
Remove * in defcustom's docstrings.
(exit-language-environment-hook, set-default-coding-systems,
coding-system-change-eol-conversion, prefer-coding-system,
find-multibyte-characters, leim-list-entry-regexp, set-input-method,
input-method-exit-on-first-char, princ-list, locale-language-names,
locale-charset-language-names, define-char-code-property):
Fix typos in docstrings.
2007-05-29 00:14:53 +00:00
|
|
|
|
When called from a program, the value is the position of the unencodable
|
|
|
|
|
character found, or nil if all characters are encodable."
|
2002-08-11 01:04:41 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(list (let ((default (or buffer-file-coding-system 'us-ascii)))
|
|
|
|
|
(read-coding-system
|
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
* woman.el (woman-file-name):
* wid-edit.el (widget-file-prompt-value)
(widget-coding-system-prompt-value):
* w32-fns.el (set-w32-system-coding-system):
* vc.el (vc-version-diff, vc-annotate):
* textmodes/reftex-auc.el (reftex-arg-cite)
(reftex-arg-index-tag):
* textmodes/refer.el (refer-get-bib-files):
* textmodes/artist.el (artist-figlet-choose-font):
* terminal.el (terminal-emulator):
* replace.el (occur-read-primary-args):
* rect.el (string-rectangle, string-insert-rectangle):
* ps-print.el (ps-print-preprint):
* progmodes/pascal.el (pascal-goto-defun):
* progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
* progmodes/compile.el (compilation-find-file):
* printing.el (pr-interactive-n-up):
* play/animate.el (animate-birthday-present):
* net/rcompile.el (remote-compile):
* man.el (man, Man-goto-section, Man-follow-manual-reference):
* mail/rmailsum.el (rmail-summary-search-backward)
(rmail-summary-search):
* mail/rmailout.el (rmail-output-read-rmail-file-name)
(rmail-output-read-file-name):
* mail/rmail.el (rmail-search, rmail-search-backwards):
* mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
* locate.el (locate):
* international/quail.el (quail-show-keyboard-layout):
* international/mule.el (set-buffer-file-coding-system)
(revert-buffer-with-coding-system, set-file-name-coding-system)
(set-terminal-coding-system, set-keyboard-coding-system)
(set-next-selection-coding-system):
* international/mule-diag.el (describe-coding-system)
(describe-font, describe-fontset):
* international/mule-cmds.el (universal-coding-system-argument)
(search-unencodable-char, describe-input-method)
(set-language-environment, describe-language-environment):
* international/codepage.el (codepage-setup):
* international/code-pages.el (codepage-setup):
* info.el (Info-search, Info-follow-reference)
(Info-search-backward):
* emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-clear-cache, ad-activate)
(ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
(ad-enable-advice, ad-disable-advice, ad-remove-advice)
(ad-read-regexp):
* ediff-util.el (ediff-toggle-regexp-match):
* ediff-ptch.el (ediff-prompt-for-patch-file):
* dired-aux.el (dired-diff):
* diff.el (diff):
* cus-edit.el (custom-variable-prompt):
* calendar/timeclock.el (timeclock-ask-for-project):
* calc/calcalg3.el (calc-get-fit-variables):
* calc/calc-store.el (calc-edit-variable)
(calc-permanent-variable):
* vc-mcvs.el (vc-mcvs-register):
* shadowfile.el (shadow-define-literal-group):
* woman.el (woman-file-name):
* vc.el (vc-version-diff, vc-merge):
* textmodes/reftex-index.el (reftex-index-complete-tag):
* format.el (format-decode-buffer, format-decode-region):
* emulation/viper-cmd.el (viper-read-string-with-history):
* emacs-lisp/debug.el (cancel-debug-on-entry):
* emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
* ediff.el (ediff-merge-revisions)
(ediff-merge-revisions-with-ancestor, ediff-revision):
* completion.el (interactive-completion-string-reader):
* calc/calc-prog.el (calc-user-define-formula):
Follow convention for reading with the minibuffer.
2005-09-24 13:44:02 +00:00
|
|
|
|
(format "Coding-system (default %s): " default)
|
2002-08-11 01:04:41 +00:00
|
|
|
|
default))))
|
|
|
|
|
(let ((pos (unencodable-char-position (point) (point-max) coding-system)))
|
|
|
|
|
(if pos
|
|
|
|
|
(goto-char (1+ pos))
|
|
|
|
|
(message "All following characters are encodable by %s" coding-system))
|
|
|
|
|
pos))
|
|
|
|
|
|
1998-05-11 01:22:35 +00:00
|
|
|
|
(defvar last-coding-system-specified nil
|
|
|
|
|
"Most recent coding system explicitly specified by the user when asked.
|
|
|
|
|
This variable is set whenever Emacs asks the user which coding system
|
|
|
|
|
to use in order to write a file. If you set it to nil explicitly,
|
|
|
|
|
then call `write-region', then afterward this variable will be non-nil
|
|
|
|
|
only if the user was explicitly asked and specified a coding system.")
|
|
|
|
|
|
2000-07-27 06:09:25 +00:00
|
|
|
|
(defvar select-safe-coding-system-accept-default-p nil
|
2005-06-10 14:12:17 +00:00
|
|
|
|
"If non-nil, a function to control the behavior of coding system selection.
|
2000-07-27 06:09:25 +00:00
|
|
|
|
The meaning is the same as the argument ACCEPT-DEFAULT-P of the
|
|
|
|
|
function `select-safe-coding-system' (which see). This variable
|
|
|
|
|
overrides that argument.")
|
|
|
|
|
|
2004-11-08 23:03:30 +00:00
|
|
|
|
(defun select-safe-coding-system-interactively (from to codings unsafe
|
|
|
|
|
&optional rejected default)
|
|
|
|
|
"Select interactively a coding system for the region FROM ... TO.
|
|
|
|
|
FROM can be a string, as in `write-region'.
|
|
|
|
|
CODINGS is the list of base coding systems known to be safe for this region,
|
|
|
|
|
typically obtained with `find-coding-systems-region'.
|
|
|
|
|
UNSAFE is a list of coding systems known to be unsafe for this region.
|
|
|
|
|
REJECTED is a list of coding systems which were safe but for some reason
|
|
|
|
|
were not recommended in the particular context.
|
|
|
|
|
DEFAULT is the coding system to use by default in the query."
|
|
|
|
|
;; At first, if some defaults are unsafe, record at most 11
|
|
|
|
|
;; problematic characters and their positions for them by turning
|
|
|
|
|
;; (CODING ...)
|
|
|
|
|
;; into
|
|
|
|
|
;; ((CODING (POS . CHAR) (POS . CHAR) ...) ...)
|
|
|
|
|
(if unsafe
|
|
|
|
|
(setq unsafe
|
|
|
|
|
(mapcar #'(lambda (coding)
|
|
|
|
|
(cons coding
|
|
|
|
|
(if (stringp from)
|
|
|
|
|
(mapcar #'(lambda (pos)
|
|
|
|
|
(cons pos (aref from pos)))
|
|
|
|
|
(unencodable-char-position
|
|
|
|
|
0 (length from) coding
|
|
|
|
|
11 from))
|
|
|
|
|
(mapcar #'(lambda (pos)
|
|
|
|
|
(cons pos (char-after pos)))
|
|
|
|
|
(unencodable-char-position
|
|
|
|
|
from to coding 11)))))
|
|
|
|
|
unsafe)))
|
|
|
|
|
|
|
|
|
|
;; Change each safe coding system to the corresponding
|
|
|
|
|
;; mime-charset name if it is also a coding system. Such a name
|
|
|
|
|
;; is more friendly to users.
|
|
|
|
|
(let ((l codings)
|
|
|
|
|
mime-charset)
|
|
|
|
|
(while l
|
2004-12-06 12:37:22 +00:00
|
|
|
|
(setq mime-charset (coding-system-get (car l) :mime-charset))
|
|
|
|
|
(if (and mime-charset (coding-system-p mime-charset)
|
|
|
|
|
(coding-system-equal (car l) mime-charset))
|
2004-11-08 23:03:30 +00:00
|
|
|
|
(setcar l mime-charset))
|
|
|
|
|
(setq l (cdr l))))
|
|
|
|
|
|
|
|
|
|
;; Don't offer variations with locking shift, which you
|
|
|
|
|
;; basically never want.
|
|
|
|
|
(let (l)
|
|
|
|
|
(dolist (elt codings (setq codings (nreverse l)))
|
|
|
|
|
(unless (or (eq 'coding-category-iso-7-else
|
|
|
|
|
(coding-system-category elt))
|
|
|
|
|
(eq 'coding-category-iso-8-else
|
|
|
|
|
(coding-system-category elt)))
|
|
|
|
|
(push elt l))))
|
|
|
|
|
|
|
|
|
|
;; Remove raw-text, emacs-mule and no-conversion unless nothing
|
|
|
|
|
;; else is available.
|
|
|
|
|
(setq codings
|
|
|
|
|
(or (delq 'raw-text
|
|
|
|
|
(delq 'emacs-mule
|
|
|
|
|
(delq 'no-conversion codings)))
|
|
|
|
|
'(raw-text emacs-mule no-conversion)))
|
|
|
|
|
|
|
|
|
|
(let ((window-configuration (current-window-configuration))
|
|
|
|
|
(bufname (buffer-name))
|
|
|
|
|
coding-system)
|
|
|
|
|
(save-excursion
|
|
|
|
|
;; If some defaults are unsafe, make sure the offending
|
|
|
|
|
;; buffer is displayed.
|
|
|
|
|
(when (and unsafe (not (stringp from)))
|
|
|
|
|
(pop-to-buffer bufname)
|
|
|
|
|
(goto-char (apply 'min (mapcar #'(lambda (x) (car (cadr x)))
|
|
|
|
|
unsafe))))
|
|
|
|
|
;; Then ask users to select one from CODINGS while showing
|
|
|
|
|
;; the reason why none of the defaults are not used.
|
|
|
|
|
(with-output-to-temp-buffer "*Warning*"
|
|
|
|
|
(with-current-buffer standard-output
|
|
|
|
|
(if (and (null rejected) (null unsafe))
|
|
|
|
|
(insert "No default coding systems to try for "
|
|
|
|
|
(if (stringp from)
|
|
|
|
|
(format "string \"%s\"." from)
|
|
|
|
|
(format "buffer `%s'." bufname)))
|
|
|
|
|
(insert
|
|
|
|
|
"These default coding systems were tried to encode"
|
|
|
|
|
(if (stringp from)
|
|
|
|
|
(concat " \"" (if (> (length from) 10)
|
|
|
|
|
(concat (substring from 0 10) "...\"")
|
|
|
|
|
(concat from "\"")))
|
|
|
|
|
(format " text\nin the buffer `%s'" bufname))
|
|
|
|
|
":\n")
|
|
|
|
|
(let ((pos (point))
|
|
|
|
|
(fill-prefix " "))
|
|
|
|
|
(dolist (x (append rejected unsafe))
|
2007-06-16 02:16:18 +00:00
|
|
|
|
(princ " ") (princ x))
|
2004-11-08 23:03:30 +00:00
|
|
|
|
(insert "\n")
|
|
|
|
|
(fill-region-as-paragraph pos (point)))
|
|
|
|
|
(when rejected
|
2006-12-27 13:19:19 +00:00
|
|
|
|
(insert "These safely encode the text in the buffer,
|
|
|
|
|
but are not recommended for encoding text in this context,
|
2004-11-08 23:03:30 +00:00
|
|
|
|
e.g., for sending an email message.\n ")
|
|
|
|
|
(dolist (x rejected)
|
|
|
|
|
(princ " ") (princ x))
|
|
|
|
|
(insert "\n"))
|
|
|
|
|
(when unsafe
|
2006-12-27 13:19:19 +00:00
|
|
|
|
(insert (if rejected "The other coding systems"
|
2004-11-08 23:03:30 +00:00
|
|
|
|
"However, each of them")
|
2006-12-27 13:19:19 +00:00
|
|
|
|
" encountered characters it couldn't encode:\n")
|
2004-11-08 23:03:30 +00:00
|
|
|
|
(dolist (coding unsafe)
|
2006-12-27 13:19:19 +00:00
|
|
|
|
(insert (format " %s cannot encode these:" (car coding)))
|
2004-11-08 23:03:30 +00:00
|
|
|
|
(let ((i 0)
|
|
|
|
|
(func1
|
|
|
|
|
#'(lambda (bufname pos)
|
|
|
|
|
(when (buffer-live-p (get-buffer bufname))
|
|
|
|
|
(pop-to-buffer bufname)
|
|
|
|
|
(goto-char pos))))
|
|
|
|
|
(func2
|
|
|
|
|
#'(lambda (bufname pos coding)
|
|
|
|
|
(when (buffer-live-p (get-buffer bufname))
|
|
|
|
|
(pop-to-buffer bufname)
|
|
|
|
|
(if (< (point) pos)
|
|
|
|
|
(goto-char pos)
|
|
|
|
|
(forward-char 1)
|
|
|
|
|
(search-unencodable-char coding)
|
|
|
|
|
(forward-char -1))))))
|
|
|
|
|
(dolist (elt (cdr coding))
|
|
|
|
|
(insert " ")
|
|
|
|
|
(if (stringp from)
|
|
|
|
|
(insert (if (< i 10) (cdr elt) "..."))
|
|
|
|
|
(if (< i 10)
|
|
|
|
|
(insert-text-button
|
|
|
|
|
(cdr elt)
|
|
|
|
|
:type 'help-xref
|
2006-12-27 05:11:42 +00:00
|
|
|
|
'face 'link
|
2004-11-08 23:03:30 +00:00
|
|
|
|
'help-echo
|
|
|
|
|
"mouse-2, RET: jump to this character"
|
|
|
|
|
'help-function func1
|
|
|
|
|
'help-args (list bufname (car elt)))
|
|
|
|
|
(insert-text-button
|
|
|
|
|
"..."
|
|
|
|
|
:type 'help-xref
|
2006-12-27 05:11:42 +00:00
|
|
|
|
'face 'link
|
2004-11-08 23:03:30 +00:00
|
|
|
|
'help-echo
|
|
|
|
|
"mouse-2, RET: next unencodable character"
|
|
|
|
|
'help-function func2
|
|
|
|
|
'help-args (list bufname (car elt)
|
|
|
|
|
(car coding)))))
|
|
|
|
|
(setq i (1+ i))))
|
|
|
|
|
(insert "\n"))
|
2007-01-09 07:24:08 +00:00
|
|
|
|
(insert (substitute-command-keys "\
|
2006-12-27 01:25:31 +00:00
|
|
|
|
|
2007-01-09 07:24:08 +00:00
|
|
|
|
Click on a character (or switch to this window by `\\[other-window]'\n\
|
|
|
|
|
and select the characters by RET) to jump to the place it appears,\n\
|
2006-12-27 13:19:19 +00:00
|
|
|
|
where `\\[universal-argument] \\[what-cursor-position]' will give information about it.\n"))))
|
2006-12-27 01:25:31 +00:00
|
|
|
|
(insert (substitute-command-keys "\nSelect \
|
2006-12-27 13:19:19 +00:00
|
|
|
|
one of the safe coding systems listed below,\n\
|
|
|
|
|
or cancel the writing with \\[keyboard-quit] and edit the buffer\n\
|
|
|
|
|
to remove or modify the problematic characters,\n\
|
|
|
|
|
or specify any other coding system (and risk losing\n\
|
|
|
|
|
the problematic characters).\n\n"))
|
2004-11-08 23:03:30 +00:00
|
|
|
|
(let ((pos (point))
|
|
|
|
|
(fill-prefix " "))
|
|
|
|
|
(dolist (x codings)
|
|
|
|
|
(princ " ") (princ x))
|
|
|
|
|
(insert "\n")
|
2006-12-27 01:25:31 +00:00
|
|
|
|
(fill-region-as-paragraph pos (point)))))
|
2004-11-08 23:03:30 +00:00
|
|
|
|
|
|
|
|
|
;; Read a coding system.
|
|
|
|
|
(setq coding-system
|
|
|
|
|
(read-coding-system
|
|
|
|
|
(format "Select coding system (default %s): " default)
|
|
|
|
|
default))
|
|
|
|
|
(setq last-coding-system-specified coding-system))
|
|
|
|
|
|
|
|
|
|
(kill-buffer "*Warning*")
|
|
|
|
|
(set-window-configuration window-configuration)
|
|
|
|
|
coding-system))
|
|
|
|
|
|
2000-07-27 06:09:25 +00:00
|
|
|
|
(defun select-safe-coding-system (from to &optional default-coding-system
|
2002-06-03 22:55:26 +00:00
|
|
|
|
accept-default-p file)
|
1998-02-04 11:25:47 +00:00
|
|
|
|
"Ask a user to select a safe coding system from candidates.
|
|
|
|
|
The candidates of coding systems which can safely encode a text
|
2000-07-27 06:09:25 +00:00
|
|
|
|
between FROM and TO are shown in a popup window. Among them, the most
|
|
|
|
|
proper one is suggested as the default.
|
|
|
|
|
|
2008-11-18 01:35:25 +00:00
|
|
|
|
The list of `buffer-file-coding-system' of the current buffer, the
|
2009-08-28 04:21:14 +00:00
|
|
|
|
default `buffer-file-coding-system', and the most preferred coding
|
2008-11-18 01:35:25 +00:00
|
|
|
|
system (if it corresponds to a MIME charset) is treated as the
|
|
|
|
|
default coding system list. Among them, the first one that safely
|
|
|
|
|
encodes the text is normally selected silently and returned without
|
|
|
|
|
any user interaction. See also the command `prefer-coding-system'.
|
2002-07-24 22:20:49 +00:00
|
|
|
|
|
|
|
|
|
However, the user is queried if the chosen coding system is
|
2005-07-19 02:29:58 +00:00
|
|
|
|
inconsistent with what would be selected by `find-auto-coding' from
|
2002-07-24 22:20:49 +00:00
|
|
|
|
coding cookies &c. if the contents of the region were read from a
|
|
|
|
|
file. (That could lead to data corruption in a file subsequently
|
|
|
|
|
re-visited and edited.)
|
1998-01-22 01:42:20 +00:00
|
|
|
|
|
2000-07-27 06:09:25 +00:00
|
|
|
|
Optional 3rd arg DEFAULT-CODING-SYSTEM specifies a coding system or a
|
|
|
|
|
list of coding systems to be prepended to the default coding system
|
2002-12-17 11:40:47 +00:00
|
|
|
|
list. However, if DEFAULT-CODING-SYSTEM is a list and the first
|
2006-07-20 11:28:48 +00:00
|
|
|
|
element is t, the cdr part is used as the default coding system list,
|
2009-08-28 04:21:14 +00:00
|
|
|
|
i.e. current `buffer-file-coding-system', default `buffer-file-coding-system',
|
2003-05-22 01:50:11 +00:00
|
|
|
|
and the most preferred coding system are not used.
|
1998-01-22 01:42:20 +00:00
|
|
|
|
|
2000-07-27 06:09:25 +00:00
|
|
|
|
Optional 4th arg ACCEPT-DEFAULT-P, if non-nil, is a function to
|
|
|
|
|
determine the acceptability of the silently selected coding system.
|
|
|
|
|
It is called with that coding system, and should return nil if it
|
|
|
|
|
should not be silently selected and thus user interaction is required.
|
|
|
|
|
|
2002-06-03 22:55:26 +00:00
|
|
|
|
Optional 5th arg FILE is the file name to use for this purpose.
|
|
|
|
|
That is different from `buffer-file-name' when handling `write-region'
|
|
|
|
|
\(for example).
|
|
|
|
|
|
2008-11-18 01:35:25 +00:00
|
|
|
|
The variable `select-safe-coding-system-accept-default-p', if non-nil,
|
|
|
|
|
overrides ACCEPT-DEFAULT-P.
|
1998-01-22 01:42:20 +00:00
|
|
|
|
|
|
|
|
|
Kludgy feature: if FROM is a string, the string is the target text,
|
|
|
|
|
and TO is ignored."
|
2009-08-10 21:42:33 +00:00
|
|
|
|
(if (not (listp default-coding-system))
|
2000-07-27 06:09:25 +00:00
|
|
|
|
(setq default-coding-system (list default-coding-system)))
|
|
|
|
|
|
2005-07-19 02:29:58 +00:00
|
|
|
|
(let ((no-other-defaults nil)
|
|
|
|
|
auto-cs)
|
2006-12-09 15:20:25 +00:00
|
|
|
|
(unless (or (stringp from) find-file-literally)
|
2009-10-04 02:11:57 +00:00
|
|
|
|
;; Find an auto-coding that is specified for the current
|
2005-07-19 02:29:58 +00:00
|
|
|
|
;; buffer and file from the region FROM and TO.
|
|
|
|
|
(save-excursion
|
|
|
|
|
(save-restriction
|
|
|
|
|
(widen)
|
|
|
|
|
(goto-char from)
|
|
|
|
|
(setq auto-cs (find-auto-coding (or file buffer-file-name "")
|
|
|
|
|
(- to from)))
|
|
|
|
|
(if auto-cs
|
|
|
|
|
(if (coding-system-p (car auto-cs))
|
|
|
|
|
(setq auto-cs (car auto-cs))
|
|
|
|
|
(display-warning
|
2008-12-15 15:44:13 +00:00
|
|
|
|
'mule
|
2005-07-19 02:29:58 +00:00
|
|
|
|
(format "\
|
|
|
|
|
Invalid coding system `%s' is specified
|
|
|
|
|
for the current buffer/file by the %s.
|
|
|
|
|
It is highly recommended to fix it before writing to a file."
|
|
|
|
|
(car auto-cs)
|
|
|
|
|
(if (eq (cdr auto-cs) :coding) ":coding tag"
|
2008-12-15 15:44:13 +00:00
|
|
|
|
(format "variable `%s'" (cdr auto-cs))))
|
|
|
|
|
:warning)
|
2005-07-19 02:29:58 +00:00
|
|
|
|
(or (yes-or-no-p "Really proceed with writing? ")
|
|
|
|
|
(error "Save aborted"))
|
|
|
|
|
(setq auto-cs nil))))))
|
|
|
|
|
|
2002-12-17 11:40:47 +00:00
|
|
|
|
(if (eq (car default-coding-system) t)
|
|
|
|
|
(setq no-other-defaults t
|
|
|
|
|
default-coding-system (cdr default-coding-system)))
|
|
|
|
|
|
|
|
|
|
;; Change elements of the list to (coding . base-coding).
|
|
|
|
|
(setq default-coding-system
|
|
|
|
|
(mapcar (function (lambda (x) (cons x (coding-system-base x))))
|
|
|
|
|
default-coding-system))
|
|
|
|
|
|
2005-07-19 02:29:58 +00:00
|
|
|
|
(if (and auto-cs (not no-other-defaults))
|
2009-10-17 03:59:45 +00:00
|
|
|
|
;; If the file has a coding cookie, use it regardless of any
|
|
|
|
|
;; other setting.
|
2005-07-19 02:29:58 +00:00
|
|
|
|
(let ((base (coding-system-base auto-cs)))
|
2009-10-17 03:59:45 +00:00
|
|
|
|
(unless (memq base '(nil undecided))
|
|
|
|
|
(setq default-coding-system (list (cons auto-cs base)))
|
|
|
|
|
(setq no-other-defaults t))))
|
2005-07-19 02:29:58 +00:00
|
|
|
|
|
2002-12-17 11:40:47 +00:00
|
|
|
|
(unless no-other-defaults
|
|
|
|
|
;; If buffer-file-coding-system is not nil nor undecided, append it
|
|
|
|
|
;; to the defaults.
|
|
|
|
|
(if buffer-file-coding-system
|
|
|
|
|
(let ((base (coding-system-base buffer-file-coding-system)))
|
|
|
|
|
(or (eq base 'undecided)
|
|
|
|
|
(rassq base default-coding-system)
|
2006-07-20 11:28:48 +00:00
|
|
|
|
(setq default-coding-system
|
|
|
|
|
(append default-coding-system
|
|
|
|
|
(list (cons buffer-file-coding-system base)))))))
|
2003-05-22 01:50:11 +00:00
|
|
|
|
|
2009-03-03 01:57:22 +00:00
|
|
|
|
(unless (and buffer-file-coding-system-explicit
|
|
|
|
|
(cdr buffer-file-coding-system-explicit))
|
2009-08-28 04:21:14 +00:00
|
|
|
|
;; If default buffer-file-coding-system is not nil nor undecided,
|
2009-03-03 01:57:22 +00:00
|
|
|
|
;; append it to the defaults.
|
2009-08-28 04:21:14 +00:00
|
|
|
|
(when (default-value 'buffer-file-coding-system)
|
|
|
|
|
(let ((base (coding-system-base
|
|
|
|
|
(default-value 'buffer-file-coding-system))))
|
|
|
|
|
(or (eq base 'undecided)
|
|
|
|
|
(rassq base default-coding-system)
|
|
|
|
|
(setq default-coding-system
|
|
|
|
|
(append default-coding-system
|
|
|
|
|
(list (cons (default-value
|
|
|
|
|
'buffer-file-coding-system)
|
|
|
|
|
base)))))))
|
2009-03-03 01:57:22 +00:00
|
|
|
|
|
|
|
|
|
;; If the most preferred coding system has the property mime-charset,
|
|
|
|
|
;; append it to the defaults.
|
|
|
|
|
(let ((preferred (coding-system-priority-list t))
|
|
|
|
|
base)
|
|
|
|
|
(and (coding-system-p preferred)
|
|
|
|
|
(setq base (coding-system-base preferred))
|
|
|
|
|
(coding-system-get preferred :mime-charset)
|
|
|
|
|
(not (rassq base default-coding-system))
|
|
|
|
|
(setq default-coding-system
|
|
|
|
|
(append default-coding-system
|
|
|
|
|
(list (cons preferred base))))))))
|
2005-07-19 02:29:58 +00:00
|
|
|
|
|
|
|
|
|
(if select-safe-coding-system-accept-default-p
|
|
|
|
|
(setq accept-default-p select-safe-coding-system-accept-default-p))
|
|
|
|
|
|
2006-08-04 00:50:04 +00:00
|
|
|
|
;; Decide the eol-type from the top of the default codings,
|
2009-08-28 04:21:14 +00:00
|
|
|
|
;; current buffer-file-coding-system, or default buffer-file-coding-system.
|
2006-08-04 00:50:04 +00:00
|
|
|
|
(if default-coding-system
|
|
|
|
|
(let ((default-eol-type (coding-system-eol-type
|
|
|
|
|
(caar default-coding-system))))
|
|
|
|
|
(if (and (vectorp default-eol-type) buffer-file-coding-system)
|
2006-12-09 15:20:25 +00:00
|
|
|
|
(setq default-eol-type (coding-system-eol-type
|
2006-08-04 00:50:04 +00:00
|
|
|
|
buffer-file-coding-system)))
|
2009-08-28 04:21:14 +00:00
|
|
|
|
(if (and (vectorp default-eol-type)
|
|
|
|
|
(default-value 'buffer-file-coding-system))
|
|
|
|
|
(setq default-eol-type
|
|
|
|
|
(coding-system-eol-type
|
|
|
|
|
(default-value 'buffer-file-coding-system))))
|
2006-08-04 00:50:04 +00:00
|
|
|
|
(if (and default-eol-type (not (vectorp default-eol-type)))
|
|
|
|
|
(dolist (elt default-coding-system)
|
|
|
|
|
(setcar elt (coding-system-change-eol-conversion
|
|
|
|
|
(car elt) default-eol-type))))))
|
|
|
|
|
|
2005-07-19 02:29:58 +00:00
|
|
|
|
(let ((codings (find-coding-systems-region from to))
|
|
|
|
|
(coding-system nil)
|
2009-02-04 07:45:09 +00:00
|
|
|
|
(tick (if (not (stringp from)) (buffer-chars-modified-tick)))
|
2005-07-19 02:29:58 +00:00
|
|
|
|
safe rejected unsafe)
|
2006-08-04 00:50:04 +00:00
|
|
|
|
(if (eq (car codings) 'undecided)
|
|
|
|
|
;; Any coding system is ok.
|
|
|
|
|
(setq coding-system (caar default-coding-system))
|
|
|
|
|
;; Reverse the list so that elements are accumulated in safe,
|
|
|
|
|
;; rejected, and unsafe in the correct order.
|
|
|
|
|
(setq default-coding-system (nreverse default-coding-system))
|
|
|
|
|
|
|
|
|
|
;; Classify the defaults into safe, rejected, and unsafe.
|
|
|
|
|
(dolist (elt default-coding-system)
|
|
|
|
|
(if (or (eq (car codings) 'undecided)
|
|
|
|
|
(memq (cdr elt) codings))
|
|
|
|
|
(if (and (functionp accept-default-p)
|
|
|
|
|
(not (funcall accept-default-p (cdr elt))))
|
|
|
|
|
(push (car elt) rejected)
|
|
|
|
|
(push (car elt) safe))
|
|
|
|
|
(push (car elt) unsafe)))
|
|
|
|
|
(if safe
|
|
|
|
|
(setq coding-system (car safe))))
|
2005-07-19 02:29:58 +00:00
|
|
|
|
|
|
|
|
|
;; If all the defaults failed, ask a user.
|
2006-08-04 00:50:04 +00:00
|
|
|
|
(when (not coding-system)
|
2005-07-19 02:29:58 +00:00
|
|
|
|
(setq coding-system (select-safe-coding-system-interactively
|
|
|
|
|
from to codings unsafe rejected (car codings))))
|
|
|
|
|
|
|
|
|
|
;; Check we're not inconsistent with what `coding:' spec &c would
|
|
|
|
|
;; give when file is re-read.
|
|
|
|
|
;; But don't do this if we explicitly ignored the cookie
|
|
|
|
|
;; by using `find-file-literally'.
|
|
|
|
|
(when (and auto-cs
|
|
|
|
|
(not (and
|
|
|
|
|
coding-system
|
|
|
|
|
(memq (coding-system-type coding-system) '(0 5)))))
|
2004-04-16 12:51:06 +00:00
|
|
|
|
;; Merge coding-system and auto-cs as far as possible.
|
|
|
|
|
(if (not coding-system)
|
|
|
|
|
(setq coding-system auto-cs)
|
|
|
|
|
(if (not auto-cs)
|
|
|
|
|
(setq auto-cs coding-system)
|
|
|
|
|
(let ((eol-type-1 (coding-system-eol-type coding-system))
|
|
|
|
|
(eol-type-2 (coding-system-eol-type auto-cs)))
|
|
|
|
|
(if (eq (coding-system-base coding-system) 'undecided)
|
|
|
|
|
(setq coding-system (coding-system-change-text-conversion
|
|
|
|
|
coding-system auto-cs))
|
|
|
|
|
(if (eq (coding-system-base auto-cs) 'undecided)
|
|
|
|
|
(setq auto-cs (coding-system-change-text-conversion
|
|
|
|
|
auto-cs coding-system))))
|
|
|
|
|
(if (vectorp eol-type-1)
|
|
|
|
|
(or (vectorp eol-type-2)
|
|
|
|
|
(setq coding-system (coding-system-change-eol-conversion
|
|
|
|
|
coding-system eol-type-2)))
|
|
|
|
|
(if (vectorp eol-type-2)
|
|
|
|
|
(setq auto-cs (coding-system-change-eol-conversion
|
|
|
|
|
auto-cs eol-type-1)))))))
|
|
|
|
|
|
|
|
|
|
(if (and auto-cs
|
2002-07-24 22:20:49 +00:00
|
|
|
|
;; Don't barf if writing a compressed file, say.
|
|
|
|
|
;; This check perhaps isn't ideal, but is probably
|
|
|
|
|
;; the best thing to do.
|
|
|
|
|
(not (auto-coding-alist-lookup (or file buffer-file-name "")))
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(not (coding-system-equal coding-system auto-cs)))
|
2002-05-03 04:23:31 +00:00
|
|
|
|
(unless (yes-or-no-p
|
|
|
|
|
(format "Selected encoding %s disagrees with \
|
|
|
|
|
%s specified by file contents. Really save (else edit coding cookies \
|
|
|
|
|
and try again)? " coding-system auto-cs))
|
2005-07-19 02:29:58 +00:00
|
|
|
|
(error "Save aborted"))))
|
2009-02-04 07:45:09 +00:00
|
|
|
|
(when (and tick (/= tick (buffer-chars-modified-tick)))
|
2007-12-27 10:28:28 +00:00
|
|
|
|
(error "Cancelled because the buffer was modified"))
|
2005-07-19 02:29:58 +00:00
|
|
|
|
coding-system)))
|
1998-01-22 01:42:20 +00:00
|
|
|
|
|
|
|
|
|
(setq select-safe-coding-system-function 'select-safe-coding-system)
|
|
|
|
|
|
1998-08-24 01:46:43 +00:00
|
|
|
|
(defun select-message-coding-system ()
|
|
|
|
|
"Return a coding system to encode the outgoing message of the current buffer.
|
|
|
|
|
It at first tries the first coding system found in these variables
|
|
|
|
|
in this order:
|
|
|
|
|
(1) local value of `buffer-file-coding-system'
|
|
|
|
|
(2) value of `sendmail-coding-system'
|
2000-07-27 06:09:25 +00:00
|
|
|
|
(3) value of `default-sendmail-coding-system'
|
2009-08-28 04:21:14 +00:00
|
|
|
|
(4) default value of `buffer-file-coding-system'
|
1998-08-24 01:46:43 +00:00
|
|
|
|
If the found coding system can't encode the current buffer,
|
|
|
|
|
or none of them are bound to a coding system,
|
1998-10-30 10:56:15 +00:00
|
|
|
|
it asks the user to select a proper coding system."
|
1998-08-24 01:46:43 +00:00
|
|
|
|
(let ((coding (or (and (local-variable-p 'buffer-file-coding-system)
|
2000-07-27 06:09:25 +00:00
|
|
|
|
buffer-file-coding-system)
|
|
|
|
|
sendmail-coding-system
|
|
|
|
|
default-sendmail-coding-system
|
2009-08-28 04:21:14 +00:00
|
|
|
|
(default-value 'buffer-file-coding-system))))
|
1998-08-24 01:46:43 +00:00
|
|
|
|
(if (eq coding 'no-conversion)
|
2002-07-24 22:20:49 +00:00
|
|
|
|
;; We should never use no-conversion for outgoing mail.
|
1998-08-24 01:46:43 +00:00
|
|
|
|
(setq coding nil))
|
|
|
|
|
(if (fboundp select-safe-coding-system-function)
|
|
|
|
|
(funcall select-safe-coding-system-function
|
2000-07-27 06:09:25 +00:00
|
|
|
|
(point-min) (point-max) coding
|
2002-05-14 10:16:42 +00:00
|
|
|
|
(function (lambda (x) (coding-system-get x :mime-charset))))
|
1998-08-24 01:46:43 +00:00
|
|
|
|
coding)))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
1998-12-17 17:12:56 +00:00
|
|
|
|
;;; Language support stuff.
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
(defvar language-info-alist nil
|
1998-05-20 00:46:03 +00:00
|
|
|
|
"Alist of language environment definitions.
|
1997-02-20 07:02:49 +00:00
|
|
|
|
Each element looks like:
|
|
|
|
|
(LANGUAGE-NAME . ((KEY . INFO) ...))
|
1998-05-20 00:46:03 +00:00
|
|
|
|
where LANGUAGE-NAME is a string, the name of the language environment,
|
|
|
|
|
KEY is a symbol denoting the kind of information, and
|
|
|
|
|
INFO is the data associated with KEY.
|
|
|
|
|
Meaningful values for KEY include
|
|
|
|
|
|
|
|
|
|
documentation value is documentation of what this language environment
|
|
|
|
|
is meant for, and how to use it.
|
2002-08-15 02:27:11 +00:00
|
|
|
|
charset value is a list of the character sets mainly used
|
|
|
|
|
by this language environment.
|
2002-07-24 22:20:49 +00:00
|
|
|
|
sample-text value is an expression which is evalled to generate
|
|
|
|
|
a line of text written using characters appropriate
|
|
|
|
|
for this language environment.
|
1998-05-20 00:46:03 +00:00
|
|
|
|
setup-function value is a function to call to switch to this
|
|
|
|
|
language environment.
|
|
|
|
|
exit-function value is a function to call to leave this
|
|
|
|
|
language environment.
|
2008-11-18 01:35:25 +00:00
|
|
|
|
coding-system value is a list of coding systems that are good for
|
|
|
|
|
saving text written in this language environment.
|
1998-05-20 00:46:03 +00:00
|
|
|
|
This list serves as suggestions to the user;
|
|
|
|
|
in effect, as a kind of documentation.
|
|
|
|
|
coding-priority value is a list of coding systems for this language
|
|
|
|
|
environment, in order of decreasing priority.
|
|
|
|
|
This is used to set up the coding system priority
|
1998-08-02 01:06:57 +00:00
|
|
|
|
list when you switch to this language environment.
|
1998-08-10 06:29:02 +00:00
|
|
|
|
nonascii-translation
|
2002-08-15 02:27:11 +00:00
|
|
|
|
value is a charset of dimension one to use for
|
|
|
|
|
converting a unibyte character to multibyte
|
|
|
|
|
and vice versa.
|
1998-08-10 06:29:02 +00:00
|
|
|
|
input-method value is a default input method for this language
|
|
|
|
|
environment.
|
1998-08-15 01:28:14 +00:00
|
|
|
|
features value is a list of features requested in this
|
|
|
|
|
language environment.
|
2004-04-16 12:51:06 +00:00
|
|
|
|
ctext-non-standard-encodings
|
2008-11-18 01:35:25 +00:00
|
|
|
|
value is a list of non-standard encoding names used
|
|
|
|
|
in extended segments of CTEXT. See the variable
|
|
|
|
|
`ctext-non-standard-encodings' for more detail.
|
1998-08-10 06:29:02 +00:00
|
|
|
|
|
2009-09-11 21:07:02 +00:00
|
|
|
|
The following key takes effect only when multibyte characters are
|
2009-09-03 06:54:57 +00:00
|
|
|
|
globally disabled, i.e. the default value of `enable-multibyte-characters'
|
2009-09-11 21:07:02 +00:00
|
|
|
|
is nil (which is an obsolete and deprecated use):
|
1998-08-10 06:29:02 +00:00
|
|
|
|
|
2008-11-18 01:35:25 +00:00
|
|
|
|
unibyte-display value is a coding system to encode characters for
|
|
|
|
|
the terminal. Characters in the range of 160 to
|
|
|
|
|
255 display not as octal escapes, but as non-ASCII
|
|
|
|
|
characters in this language environment.")
|
1998-05-20 00:46:03 +00:00
|
|
|
|
|
|
|
|
|
(defun get-language-info (lang-env key)
|
|
|
|
|
"Return information listed under KEY for language environment LANG-ENV.
|
|
|
|
|
KEY is a symbol denoting the kind of information.
|
|
|
|
|
For a list of useful values for KEY and their meanings,
|
|
|
|
|
see `language-info-alist'."
|
|
|
|
|
(if (symbolp lang-env)
|
|
|
|
|
(setq lang-env (symbol-name lang-env)))
|
2004-04-21 19:16:15 +00:00
|
|
|
|
(let ((lang-slot (assoc-string lang-env language-info-alist t)))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(if lang-slot
|
|
|
|
|
(cdr (assq key (cdr lang-slot))))))
|
|
|
|
|
|
1998-05-23 20:05:36 +00:00
|
|
|
|
(defun set-language-info (lang-env key info)
|
1998-05-20 00:46:03 +00:00
|
|
|
|
"Modify part of the definition of language environment LANG-ENV.
|
|
|
|
|
Specifically, this stores the information INFO under KEY
|
|
|
|
|
in the definition of this language environment.
|
1997-02-20 07:02:49 +00:00
|
|
|
|
KEY is a symbol denoting the kind of information.
|
1998-05-20 00:46:03 +00:00
|
|
|
|
INFO is the value for that information.
|
1997-06-07 05:36:13 +00:00
|
|
|
|
|
1998-05-20 00:46:03 +00:00
|
|
|
|
For a list of useful values for KEY and their meanings,
|
1998-05-23 20:05:36 +00:00
|
|
|
|
see `language-info-alist'."
|
1998-05-20 00:46:03 +00:00
|
|
|
|
(if (symbolp lang-env)
|
|
|
|
|
(setq lang-env (symbol-name lang-env)))
|
2005-12-05 07:39:01 +00:00
|
|
|
|
(set-language-info-internal lang-env key info)
|
|
|
|
|
(if (equal lang-env current-language-environment)
|
2006-07-04 03:36:57 +00:00
|
|
|
|
(cond ((eq key 'coding-priority)
|
2006-07-07 01:06:18 +00:00
|
|
|
|
(set-language-environment-coding-systems lang-env)
|
|
|
|
|
(set-language-environment-charset lang-env))
|
2006-07-04 03:36:57 +00:00
|
|
|
|
((eq key 'input-method)
|
|
|
|
|
(set-language-environment-input-method lang-env))
|
|
|
|
|
((eq key 'nonascii-translation)
|
|
|
|
|
(set-language-environment-nonascii-translation lang-env))
|
|
|
|
|
((eq key 'charset)
|
|
|
|
|
(set-language-environment-charset lang-env))
|
2009-09-03 06:54:57 +00:00
|
|
|
|
((and (not (default-value 'enable-multibyte-characters))
|
2006-07-04 03:36:57 +00:00
|
|
|
|
(or (eq key 'unibyte-syntax) (eq key 'unibyte-display)))
|
|
|
|
|
(set-language-environment-unibyte lang-env)))))
|
2005-12-05 07:39:01 +00:00
|
|
|
|
|
|
|
|
|
(defun set-language-info-internal (lang-env key info)
|
|
|
|
|
"Internal use only.
|
|
|
|
|
Arguments are the same as `set-language-info'."
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(let (lang-slot key-slot)
|
1998-05-20 00:46:03 +00:00
|
|
|
|
(setq lang-slot (assoc lang-env language-info-alist))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(if (null lang-slot) ; If no slot for the language, add it.
|
1998-05-20 00:46:03 +00:00
|
|
|
|
(setq lang-slot (list lang-env)
|
1997-02-20 07:02:49 +00:00
|
|
|
|
language-info-alist (cons lang-slot language-info-alist)))
|
|
|
|
|
(setq key-slot (assq key lang-slot))
|
|
|
|
|
(if (null key-slot) ; If no slot for the key, add it.
|
|
|
|
|
(progn
|
|
|
|
|
(setq key-slot (list key))
|
|
|
|
|
(setcdr lang-slot (cons key-slot (cdr lang-slot)))))
|
2002-12-11 21:29:31 +00:00
|
|
|
|
(setcdr key-slot (purecopy info))
|
2002-12-12 00:52:05 +00:00
|
|
|
|
;; Update the custom-type of `current-language-environment'.
|
2002-12-11 21:29:31 +00:00
|
|
|
|
(put 'current-language-environment 'custom-type
|
2002-12-12 00:52:05 +00:00
|
|
|
|
(cons 'choice (mapcar
|
|
|
|
|
(lambda (lang)
|
2003-01-25 18:20:30 +00:00
|
|
|
|
(list 'const lang))
|
|
|
|
|
(sort (mapcar 'car language-info-alist) 'string<))))))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
1998-05-20 00:46:03 +00:00
|
|
|
|
(defun set-language-info-alist (lang-env alist &optional parents)
|
|
|
|
|
"Store ALIST as the definition of language environment LANG-ENV.
|
|
|
|
|
ALIST is an alist of KEY and INFO values. See the documentation of
|
2000-06-21 07:35:25 +00:00
|
|
|
|
`language-info-alist' for the meanings of KEY and INFO.
|
1998-01-22 01:42:20 +00:00
|
|
|
|
|
1998-05-20 00:46:03 +00:00
|
|
|
|
Optional arg PARENTS is a list of parent menu names; it specifies
|
2002-07-24 22:20:49 +00:00
|
|
|
|
where to put this language environment in the
|
1998-05-20 00:46:03 +00:00
|
|
|
|
Describe Language Environment and Set Language Environment menus.
|
|
|
|
|
For example, (\"European\") means to put this language environment
|
|
|
|
|
in the European submenu in each of those two menus."
|
2009-10-24 06:32:03 +00:00
|
|
|
|
(cond ((symbolp lang-env)
|
|
|
|
|
(setq lang-env (symbol-name lang-env)))
|
|
|
|
|
((stringp lang-env)
|
|
|
|
|
(setq lang-env (purecopy lang-env))))
|
1998-01-22 01:42:20 +00:00
|
|
|
|
(let ((describe-map describe-language-environment-map)
|
|
|
|
|
(setup-map setup-language-environment-map))
|
|
|
|
|
(if parents
|
|
|
|
|
(let ((l parents)
|
2000-05-08 11:44:29 +00:00
|
|
|
|
map parent-symbol parent prompt)
|
1998-01-22 01:42:20 +00:00
|
|
|
|
(while l
|
|
|
|
|
(if (symbolp (setq parent-symbol (car l)))
|
|
|
|
|
(setq parent (symbol-name parent))
|
|
|
|
|
(setq parent parent-symbol parent-symbol (intern parent)))
|
|
|
|
|
(setq map (lookup-key describe-map (vector parent-symbol)))
|
2000-05-08 11:44:29 +00:00
|
|
|
|
;; This prompt string is for define-prefix-command, so
|
|
|
|
|
;; that the map it creates will be suitable for a menu.
|
|
|
|
|
(or map (setq prompt (format "%s Environment" parent)))
|
1998-01-22 01:42:20 +00:00
|
|
|
|
(if (not map)
|
|
|
|
|
(progn
|
|
|
|
|
(setq map (intern (format "describe-%s-environment-map"
|
|
|
|
|
(downcase parent))))
|
2000-05-08 11:44:29 +00:00
|
|
|
|
(define-prefix-command map nil prompt)
|
1998-01-22 01:42:20 +00:00
|
|
|
|
(define-key-after describe-map (vector parent-symbol)
|
2009-08-10 21:42:33 +00:00
|
|
|
|
(cons parent map))))
|
1998-01-22 01:42:20 +00:00
|
|
|
|
(setq describe-map (symbol-value map))
|
|
|
|
|
(setq map (lookup-key setup-map (vector parent-symbol)))
|
|
|
|
|
(if (not map)
|
|
|
|
|
(progn
|
|
|
|
|
(setq map (intern (format "setup-%s-environment-map"
|
|
|
|
|
(downcase parent))))
|
2000-05-08 11:44:29 +00:00
|
|
|
|
(define-prefix-command map nil prompt)
|
1998-01-22 01:42:20 +00:00
|
|
|
|
(define-key-after setup-map (vector parent-symbol)
|
2009-08-10 21:42:33 +00:00
|
|
|
|
(cons parent map))))
|
1998-01-22 01:42:20 +00:00
|
|
|
|
(setq setup-map (symbol-value map))
|
|
|
|
|
(setq l (cdr l)))))
|
1998-05-23 20:05:36 +00:00
|
|
|
|
|
|
|
|
|
;; Set up menu items for this language env.
|
1998-08-15 01:28:14 +00:00
|
|
|
|
(let ((doc (assq 'documentation alist)))
|
1998-05-23 20:05:36 +00:00
|
|
|
|
(when doc
|
|
|
|
|
(define-key-after describe-map (vector (intern lang-env))
|
2009-08-10 21:42:33 +00:00
|
|
|
|
(cons lang-env 'describe-specified-language-support))))
|
1998-08-15 01:28:14 +00:00
|
|
|
|
(define-key-after setup-map (vector (intern lang-env))
|
2009-08-10 21:42:33 +00:00
|
|
|
|
(cons lang-env 'setup-specified-language-environment))
|
1998-05-23 20:05:36 +00:00
|
|
|
|
|
2005-12-05 07:39:01 +00:00
|
|
|
|
(dolist (elt alist)
|
|
|
|
|
(set-language-info-internal lang-env (car elt) (cdr elt)))
|
2006-12-09 15:20:25 +00:00
|
|
|
|
|
2005-12-05 07:39:01 +00:00
|
|
|
|
(if (equal lang-env current-language-environment)
|
|
|
|
|
(set-language-environment lang-env))))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
1997-09-03 22:29:06 +00:00
|
|
|
|
(defun read-language-name (key prompt &optional default)
|
1998-05-20 00:46:03 +00:00
|
|
|
|
"Read a language environment name which has information for KEY.
|
1998-08-10 06:29:02 +00:00
|
|
|
|
If KEY is nil, read any language environment.
|
1998-05-20 00:46:03 +00:00
|
|
|
|
Prompt with PROMPT. DEFAULT is the default choice of language environment.
|
|
|
|
|
This returns a language environment name as a string."
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(let* ((completion-ignore-case t)
|
|
|
|
|
(name (completing-read prompt
|
|
|
|
|
language-info-alist
|
1998-08-10 06:29:02 +00:00
|
|
|
|
(and key
|
2002-04-27 22:34:06 +00:00
|
|
|
|
(function (lambda (elm) (and (listp elm) (assq key elm)))))
|
1997-09-03 22:29:06 +00:00
|
|
|
|
t nil nil default)))
|
1997-05-12 06:56:23 +00:00
|
|
|
|
(if (and (> (length name) 0)
|
1998-08-10 06:29:02 +00:00
|
|
|
|
(or (not key)
|
|
|
|
|
(get-language-info name key)))
|
1997-05-12 06:56:23 +00:00
|
|
|
|
name)))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
;;; Multilingual input methods.
|
2002-07-24 22:20:49 +00:00
|
|
|
|
(defgroup leim nil
|
2000-09-07 02:38:07 +00:00
|
|
|
|
"LEIM: Libraries of Emacs Input Methods."
|
|
|
|
|
:group 'mule)
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(defconst leim-list-file-name "leim-list.el"
|
|
|
|
|
"Name of LEIM list file.
|
|
|
|
|
This file contains a list of libraries of Emacs input methods (LEIM)
|
|
|
|
|
in the format of Lisp expression for registering each input method.
|
|
|
|
|
Emacs loads this file at startup time.")
|
|
|
|
|
|
2009-10-24 06:32:03 +00:00
|
|
|
|
(defconst leim-list-header (format
|
2009-03-19 00:59:21 +00:00
|
|
|
|
";;; %s -- list of LEIM (Library of Emacs Input Method) -*-coding: utf-8;-*-
|
1997-06-18 12:55:13 +00:00
|
|
|
|
;;
|
2009-04-08 18:03:17 +00:00
|
|
|
|
;; This file is automatically generated.
|
|
|
|
|
;;
|
1997-06-18 12:55:13 +00:00
|
|
|
|
;; This file contains a list of LEIM (Library of Emacs Input Method)
|
2001-03-01 18:00:34 +00:00
|
|
|
|
;; methods in the same directory as this file. Loading this file
|
|
|
|
|
;; registers all the input methods in Emacs.
|
1997-06-18 12:55:13 +00:00
|
|
|
|
;;
|
1997-07-25 07:43:56 +00:00
|
|
|
|
;; Each entry has the form:
|
1997-06-18 12:55:13 +00:00
|
|
|
|
;; (register-input-method
|
|
|
|
|
;; INPUT-METHOD LANGUAGE-NAME ACTIVATE-FUNC
|
|
|
|
|
;; TITLE DESCRIPTION
|
|
|
|
|
;; ARG ...)
|
2001-03-01 18:00:34 +00:00
|
|
|
|
;; See the function `register-input-method' for the meanings of the arguments.
|
1997-06-18 12:55:13 +00:00
|
|
|
|
;;
|
2009-04-08 18:03:17 +00:00
|
|
|
|
;; If this directory is included in `load-path', Emacs automatically
|
1997-06-18 12:55:13 +00:00
|
|
|
|
;; loads this file at startup time.
|
|
|
|
|
|
|
|
|
|
"
|
|
|
|
|
leim-list-file-name)
|
|
|
|
|
"Header to be inserted in LEIM list file.")
|
|
|
|
|
|
2009-10-24 06:32:03 +00:00
|
|
|
|
(defconst leim-list-entry-regexp "^(register-input-method"
|
1997-06-18 12:55:13 +00:00
|
|
|
|
"Regexp matching head of each entry in LEIM list file.
|
(toggle-enable-multibyte-characters, sort-coding-systems,
search-unencodable-char): Doc fixes.
(default-input-method, input-method-verbose-flag, input-method-highlight-flag):
Remove * in defcustom's docstrings.
(exit-language-environment-hook, set-default-coding-systems,
coding-system-change-eol-conversion, prefer-coding-system,
find-multibyte-characters, leim-list-entry-regexp, set-input-method,
input-method-exit-on-first-char, princ-list, locale-language-names,
locale-charset-language-names, define-char-code-property):
Fix typos in docstrings.
2007-05-29 00:14:53 +00:00
|
|
|
|
See also the variable `leim-list-header'.")
|
1997-06-18 12:55:13 +00:00
|
|
|
|
|
|
|
|
|
(defvar update-leim-list-functions
|
|
|
|
|
'(quail-update-leim-list-file)
|
|
|
|
|
"List of functions to call to update LEIM list file.
|
|
|
|
|
Each function is called with one arg, LEIM directory name.")
|
|
|
|
|
|
1997-08-29 02:06:39 +00:00
|
|
|
|
(defun update-leim-list-file (&rest dirs)
|
|
|
|
|
"Update LEIM list file in directories DIRS."
|
2008-11-18 01:35:25 +00:00
|
|
|
|
(dolist (function update-leim-list-functions)
|
|
|
|
|
(apply function dirs)))
|
1997-06-18 12:55:13 +00:00
|
|
|
|
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(defvar current-input-method nil
|
|
|
|
|
"The current input method for multilingual text.
|
1997-08-02 21:59:55 +00:00
|
|
|
|
If nil, that means no input method is activated now.")
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(make-variable-buffer-local 'current-input-method)
|
|
|
|
|
(put 'current-input-method 'permanent-local t)
|
|
|
|
|
|
|
|
|
|
(defvar current-input-method-title nil
|
1997-06-18 12:55:13 +00:00
|
|
|
|
"Title string of the current input method shown in mode line.")
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(make-variable-buffer-local 'current-input-method-title)
|
|
|
|
|
(put 'current-input-method-title 'permanent-local t)
|
|
|
|
|
|
1997-07-15 08:24:47 +00:00
|
|
|
|
(defcustom default-input-method nil
|
(toggle-enable-multibyte-characters, sort-coding-systems,
search-unencodable-char): Doc fixes.
(default-input-method, input-method-verbose-flag, input-method-highlight-flag):
Remove * in defcustom's docstrings.
(exit-language-environment-hook, set-default-coding-systems,
coding-system-change-eol-conversion, prefer-coding-system,
find-multibyte-characters, leim-list-entry-regexp, set-input-method,
input-method-exit-on-first-char, princ-list, locale-language-names,
locale-charset-language-names, define-char-code-property):
Fix typos in docstrings.
2007-05-29 00:14:53 +00:00
|
|
|
|
"Default input method for multilingual text (a string).
|
1997-07-15 08:24:47 +00:00
|
|
|
|
This is the input method activated automatically by the command
|
1997-08-13 00:37:32 +00:00
|
|
|
|
`toggle-input-method' (\\[toggle-input-method])."
|
2002-09-08 19:49:54 +00:00
|
|
|
|
:link '(custom-manual "(emacs)Input Methods")
|
1998-03-20 06:29:54 +00:00
|
|
|
|
:group 'mule
|
2002-09-09 22:49:04 +00:00
|
|
|
|
:type '(choice (const nil) (string
|
|
|
|
|
:completion-ignore-case t
|
|
|
|
|
:complete-function widget-string-complete
|
|
|
|
|
:completion-alist input-method-alist
|
|
|
|
|
:prompt-history input-method-history))
|
1999-12-14 13:00:09 +00:00
|
|
|
|
:set-after '(current-language-environment))
|
1997-07-15 08:24:47 +00:00
|
|
|
|
|
1999-04-12 18:25:26 +00:00
|
|
|
|
(put 'input-method-function 'permanent-local t)
|
|
|
|
|
|
1997-08-18 10:51:45 +00:00
|
|
|
|
(defvar input-method-history nil
|
2007-12-22 17:08:49 +00:00
|
|
|
|
"History list of input methods read from the minibuffer.
|
|
|
|
|
|
|
|
|
|
Maximum length of the history list is determined by the value
|
|
|
|
|
of `history-length', which see.")
|
1997-08-18 10:51:45 +00:00
|
|
|
|
(make-variable-buffer-local 'input-method-history)
|
|
|
|
|
(put 'input-method-history 'permanent-local t)
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
(defvar inactivate-current-input-method-function nil
|
|
|
|
|
"Function to call for inactivating the current input method.
|
|
|
|
|
Every input method should set this to an appropriate value when activated.
|
1997-08-26 12:03:42 +00:00
|
|
|
|
This function is called with no argument.
|
|
|
|
|
|
|
|
|
|
This function should never change the value of `current-input-method'.
|
|
|
|
|
It is set to nil by the function `inactivate-input-method'.")
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(make-variable-buffer-local 'inactivate-current-input-method-function)
|
|
|
|
|
(put 'inactivate-current-input-method-function 'permanent-local t)
|
|
|
|
|
|
|
|
|
|
(defvar describe-current-input-method-function nil
|
|
|
|
|
"Function to call for describing the current input method.
|
|
|
|
|
This function is called with no argument.")
|
|
|
|
|
(make-variable-buffer-local 'describe-current-input-method-function)
|
|
|
|
|
(put 'describe-current-input-method-function 'permanent-local t)
|
|
|
|
|
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(defvar input-method-alist nil
|
1998-05-20 00:46:03 +00:00
|
|
|
|
"Alist of input method names vs how to use them.
|
1997-06-18 12:55:13 +00:00
|
|
|
|
Each element has the form:
|
1998-05-20 00:46:03 +00:00
|
|
|
|
(INPUT-METHOD LANGUAGE-ENV ACTIVATE-FUNC TITLE DESCRIPTION ARGS...)
|
|
|
|
|
See the function `register-input-method' for the meanings of the elements.")
|
2009-10-15 06:18:02 +00:00
|
|
|
|
;;;###autoload
|
2009-08-26 03:07:25 +00:00
|
|
|
|
(put 'input-method-alist 'risky-local-variable t)
|
1998-05-20 00:46:03 +00:00
|
|
|
|
|
1998-05-23 20:05:36 +00:00
|
|
|
|
(defun register-input-method (input-method lang-env &rest args)
|
2001-03-12 06:18:57 +00:00
|
|
|
|
"Register INPUT-METHOD as an input method for language environment LANG-ENV.
|
1997-06-18 12:55:13 +00:00
|
|
|
|
|
2006-12-09 15:20:25 +00:00
|
|
|
|
INPUT-METHOD and LANG-ENV are symbols or strings.
|
1998-05-20 00:46:03 +00:00
|
|
|
|
ACTIVATE-FUNC is a function to call to activate this method.
|
|
|
|
|
TITLE is a string to show in the mode line when this method is active.
|
|
|
|
|
DESCRIPTION is a string describing this method and what it is good for.
|
|
|
|
|
The ARGS, if any, are passed as arguments to ACTIVATE-FUNC.
|
1998-09-02 04:51:42 +00:00
|
|
|
|
All told, the arguments to ACTIVATE-FUNC are INPUT-METHOD and the ARGS.
|
|
|
|
|
|
2001-03-01 18:00:34 +00:00
|
|
|
|
This function is mainly used in the file \"leim-list.el\" which is
|
|
|
|
|
created at Emacs build time, registering all Quail input methods
|
2001-02-21 14:52:40 +00:00
|
|
|
|
contained in the Emacs distribution.
|
1998-09-02 04:51:42 +00:00
|
|
|
|
|
2001-02-21 14:52:40 +00:00
|
|
|
|
In case you want to register a new Quail input method by yourself, be
|
1998-09-02 04:51:42 +00:00
|
|
|
|
careful to use the same input method title as given in the third
|
2001-02-21 14:52:40 +00:00
|
|
|
|
parameter of `quail-define-package'. (If the values are different, the
|
|
|
|
|
string specified in this function takes precedence.)
|
1998-09-02 04:51:42 +00:00
|
|
|
|
|
|
|
|
|
The commands `describe-input-method' and `list-input-methods' need
|
2001-02-21 14:52:40 +00:00
|
|
|
|
these duplicated values to show some information about input methods
|
2006-12-09 15:20:25 +00:00
|
|
|
|
without loading the relevant Quail packages.
|
|
|
|
|
\n(fn INPUT-METHOD LANG-ENV ACTIVATE-FUNC TITLE DESCRIPTION &rest ARGS)"
|
1998-05-23 20:05:36 +00:00
|
|
|
|
(if (symbolp lang-env)
|
2009-11-11 06:22:30 +00:00
|
|
|
|
(setq lang-env (symbol-name lang-env))
|
|
|
|
|
(setq lang-env (purecopy lang-env)))
|
1997-09-01 07:19:38 +00:00
|
|
|
|
(if (symbolp input-method)
|
2009-11-11 06:22:30 +00:00
|
|
|
|
(setq input-method (symbol-name input-method))
|
|
|
|
|
(setq input-method (purecopy input-method)))
|
|
|
|
|
(setq args (mapcar 'purecopy args))
|
1998-05-23 20:05:36 +00:00
|
|
|
|
(let ((info (cons lang-env args))
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(slot (assoc input-method input-method-alist)))
|
|
|
|
|
(if slot
|
|
|
|
|
(setcdr slot info)
|
|
|
|
|
(setq slot (cons input-method info))
|
|
|
|
|
(setq input-method-alist (cons slot input-method-alist)))))
|
|
|
|
|
|
1997-08-13 00:29:02 +00:00
|
|
|
|
(defun read-input-method-name (prompt &optional default inhibit-null)
|
1997-06-18 12:55:13 +00:00
|
|
|
|
"Read a name of input method from a minibuffer prompting with PROMPT.
|
1997-08-13 00:29:02 +00:00
|
|
|
|
If DEFAULT is non-nil, use that as the default,
|
2001-02-21 14:52:40 +00:00
|
|
|
|
and substitute it into PROMPT at the first `%s'.
|
1997-09-01 07:19:38 +00:00
|
|
|
|
If INHIBIT-NULL is non-nil, null input signals an error.
|
|
|
|
|
|
|
|
|
|
The return value is a string."
|
1997-08-13 00:29:02 +00:00
|
|
|
|
(if default
|
|
|
|
|
(setq prompt (format prompt default)))
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(let* ((completion-ignore-case t)
|
2001-03-19 04:50:39 +00:00
|
|
|
|
;; As it is quite normal to change input method in the
|
|
|
|
|
;; minibuffer, we must enable it even if
|
|
|
|
|
;; enable-recursive-minibuffers is currently nil.
|
|
|
|
|
(enable-recursive-minibuffers t)
|
1997-08-18 10:51:45 +00:00
|
|
|
|
;; This binding is necessary because input-method-history is
|
|
|
|
|
;; buffer local.
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(input-method (completing-read prompt input-method-alist
|
1997-09-04 05:54:38 +00:00
|
|
|
|
nil t nil 'input-method-history
|
|
|
|
|
default)))
|
1999-10-26 13:01:20 +00:00
|
|
|
|
(if (and input-method (symbolp input-method))
|
|
|
|
|
(setq input-method (symbol-name input-method)))
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(if (> (length input-method) 0)
|
|
|
|
|
input-method
|
|
|
|
|
(if inhibit-null
|
1997-07-25 08:06:19 +00:00
|
|
|
|
(error "No valid input method is specified")))))
|
1997-06-18 12:55:13 +00:00
|
|
|
|
|
|
|
|
|
(defun activate-input-method (input-method)
|
1998-05-20 00:46:03 +00:00
|
|
|
|
"Switch to input method INPUT-METHOD for the current buffer.
|
|
|
|
|
If some other input method is already active, turn it off first.
|
|
|
|
|
If INPUT-METHOD is nil, deactivate any current input method."
|
1998-08-18 00:44:20 +00:00
|
|
|
|
(if (and input-method (symbolp input-method))
|
1997-09-01 07:19:38 +00:00
|
|
|
|
(setq input-method (symbol-name input-method)))
|
1997-08-18 10:51:45 +00:00
|
|
|
|
(if (and current-input-method
|
|
|
|
|
(not (string= current-input-method input-method)))
|
1998-08-18 00:44:20 +00:00
|
|
|
|
(inactivate-input-method))
|
1998-05-20 00:46:03 +00:00
|
|
|
|
(unless (or current-input-method (null input-method))
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(let ((slot (assoc input-method input-method-alist)))
|
|
|
|
|
(if (null slot)
|
1997-08-18 10:51:45 +00:00
|
|
|
|
(error "Can't activate input method `%s'" input-method))
|
2001-03-05 11:28:47 +00:00
|
|
|
|
(setq current-input-method-title nil)
|
1997-10-23 12:05:45 +00:00
|
|
|
|
(let ((func (nth 2 slot)))
|
|
|
|
|
(if (functionp func)
|
|
|
|
|
(apply (nth 2 slot) input-method (nthcdr 5 slot))
|
|
|
|
|
(if (and (consp func) (symbolp (car func)) (symbolp (cdr func)))
|
|
|
|
|
(progn
|
|
|
|
|
(require (cdr func))
|
|
|
|
|
(apply (car func) input-method (nthcdr 5 slot)))
|
|
|
|
|
(error "Can't activate input method `%s'" input-method))))
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(setq current-input-method input-method)
|
2001-03-05 11:28:47 +00:00
|
|
|
|
(or (stringp current-input-method-title)
|
|
|
|
|
(setq current-input-method-title (nth 3 slot)))
|
1998-07-30 06:50:59 +00:00
|
|
|
|
(unwind-protect
|
|
|
|
|
(run-hooks 'input-method-activate-hook)
|
|
|
|
|
(force-mode-line-update)))))
|
1997-05-28 03:37:32 +00:00
|
|
|
|
|
|
|
|
|
(defun inactivate-input-method ()
|
1997-08-26 12:03:42 +00:00
|
|
|
|
"Turn off the current input method."
|
1997-08-18 10:51:45 +00:00
|
|
|
|
(when current-input-method
|
|
|
|
|
(if input-method-history
|
|
|
|
|
(unless (string= current-input-method (car input-method-history))
|
|
|
|
|
(setq input-method-history
|
|
|
|
|
(cons current-input-method
|
|
|
|
|
(delete current-input-method input-method-history))))
|
|
|
|
|
(setq input-method-history (list current-input-method)))
|
|
|
|
|
(unwind-protect
|
2007-09-04 04:58:34 +00:00
|
|
|
|
(progn
|
|
|
|
|
(setq input-method-function nil
|
|
|
|
|
current-input-method-title nil)
|
|
|
|
|
(funcall inactivate-current-input-method-function))
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(unwind-protect
|
1997-08-18 10:51:45 +00:00
|
|
|
|
(run-hooks 'input-method-inactivate-hook)
|
2007-09-04 04:58:34 +00:00
|
|
|
|
(setq current-input-method nil)
|
1998-07-30 06:50:59 +00:00
|
|
|
|
(force-mode-line-update)))))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
2004-11-04 10:10:35 +00:00
|
|
|
|
(defun set-input-method (input-method &optional interactive)
|
1998-05-20 00:46:03 +00:00
|
|
|
|
"Select and activate input method INPUT-METHOD for the current buffer.
|
2001-02-12 18:52:02 +00:00
|
|
|
|
This also sets the default input method to the one you specify.
|
2001-02-13 20:03:38 +00:00
|
|
|
|
If INPUT-METHOD is nil, this function turns off the input method, and
|
|
|
|
|
also causes you to be prompted for a name of an input method the next
|
|
|
|
|
time you invoke \\[toggle-input-method].
|
2004-11-04 10:10:35 +00:00
|
|
|
|
When called interactively, the optional arg INTERACTIVE is non-nil,
|
|
|
|
|
which marks the variable `default-input-method' as set for Custom buffers.
|
2001-02-13 20:03:38 +00:00
|
|
|
|
|
2001-02-12 18:52:02 +00:00
|
|
|
|
To deactivate the input method interactively, use \\[toggle-input-method].
|
(toggle-enable-multibyte-characters, sort-coding-systems,
search-unencodable-char): Doc fixes.
(default-input-method, input-method-verbose-flag, input-method-highlight-flag):
Remove * in defcustom's docstrings.
(exit-language-environment-hook, set-default-coding-systems,
coding-system-change-eol-conversion, prefer-coding-system,
find-multibyte-characters, leim-list-entry-regexp, set-input-method,
input-method-exit-on-first-char, princ-list, locale-language-names,
locale-charset-language-names, define-char-code-property):
Fix typos in docstrings.
2007-05-29 00:14:53 +00:00
|
|
|
|
To deactivate it programmatically, use `inactivate-input-method'."
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(interactive
|
1997-08-18 10:51:45 +00:00
|
|
|
|
(let* ((default (or (car input-method-history) default-input-method)))
|
1997-08-18 02:28:28 +00:00
|
|
|
|
(list (read-input-method-name
|
1997-09-04 05:54:38 +00:00
|
|
|
|
(if default "Select input method (default %s): " "Select input method: ")
|
2004-11-04 10:10:35 +00:00
|
|
|
|
default t)
|
|
|
|
|
t)))
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(activate-input-method input-method)
|
2002-02-12 09:49:46 +00:00
|
|
|
|
(setq default-input-method input-method)
|
2004-11-04 10:10:35 +00:00
|
|
|
|
(when interactive
|
2002-02-12 09:49:46 +00:00
|
|
|
|
(customize-mark-as-set 'default-input-method))
|
|
|
|
|
default-input-method)
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
2007-11-29 22:35:11 +00:00
|
|
|
|
(defvar toggle-input-method-active nil
|
|
|
|
|
"Non-nil inside `toggle-input-method'.")
|
|
|
|
|
|
2004-11-04 10:10:35 +00:00
|
|
|
|
(defun toggle-input-method (&optional arg interactive)
|
2001-02-14 15:30:19 +00:00
|
|
|
|
"Enable or disable multilingual text input method for the current buffer.
|
|
|
|
|
Only one input method can be enabled at any time in a given buffer.
|
|
|
|
|
|
2008-11-18 01:35:25 +00:00
|
|
|
|
The normal action is to enable an input method if none was enabled,
|
|
|
|
|
and disable the current one otherwise. Which input method to enable
|
|
|
|
|
can be determined in various ways--either the one most recently used,
|
|
|
|
|
or the one specified by `default-input-method', or as a last resort
|
|
|
|
|
by reading the name of an input method in the minibuffer.
|
2001-02-14 15:30:19 +00:00
|
|
|
|
|
2008-11-18 01:35:25 +00:00
|
|
|
|
With a prefix argument ARG, read an input method name with the minibuffer
|
2001-02-14 15:30:19 +00:00
|
|
|
|
and enable that one. The default is the most recent input method specified
|
2004-11-04 10:10:35 +00:00
|
|
|
|
\(not including the currently active input method, if any).
|
2001-02-14 15:30:19 +00:00
|
|
|
|
|
2008-11-18 01:35:25 +00:00
|
|
|
|
When called interactively, the optional argument INTERACTIVE is non-nil,
|
2004-11-04 10:10:35 +00:00
|
|
|
|
which marks the variable `default-input-method' as set for Custom buffers."
|
|
|
|
|
|
|
|
|
|
(interactive "P\np")
|
2007-11-29 22:35:11 +00:00
|
|
|
|
(if toggle-input-method-active
|
|
|
|
|
(error "Recursive use of `toggle-input-method'"))
|
1998-05-07 20:50:48 +00:00
|
|
|
|
(if (and current-input-method (not arg))
|
|
|
|
|
(inactivate-input-method)
|
2007-11-29 22:35:11 +00:00
|
|
|
|
(let ((toggle-input-method-active t)
|
|
|
|
|
(default (or (car input-method-history) default-input-method)))
|
1998-05-07 20:50:48 +00:00
|
|
|
|
(if (and arg default (equal current-input-method default)
|
|
|
|
|
(> (length input-method-history) 1))
|
|
|
|
|
(setq default (nth 1 input-method-history)))
|
1997-08-18 10:51:45 +00:00
|
|
|
|
(activate-input-method
|
|
|
|
|
(if (or arg (not default))
|
1998-05-07 20:50:48 +00:00
|
|
|
|
(progn
|
|
|
|
|
(read-input-method-name
|
|
|
|
|
(if default "Input method (default %s): " "Input method: " )
|
|
|
|
|
default t))
|
1997-08-18 10:51:45 +00:00
|
|
|
|
default))
|
2002-02-12 09:49:46 +00:00
|
|
|
|
(unless default-input-method
|
2002-07-24 22:20:49 +00:00
|
|
|
|
(prog1
|
2002-02-12 09:49:46 +00:00
|
|
|
|
(setq default-input-method current-input-method)
|
2004-11-04 10:10:35 +00:00
|
|
|
|
(when interactive
|
2002-02-12 09:49:46 +00:00
|
|
|
|
(customize-mark-as-set 'default-input-method)))))))
|
1997-06-18 12:55:13 +00:00
|
|
|
|
|
2008-06-07 02:38:32 +00:00
|
|
|
|
(autoload 'help-buffer "help-mode")
|
2002-05-26 22:43:14 +00:00
|
|
|
|
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(defun describe-input-method (input-method)
|
1998-05-20 00:46:03 +00:00
|
|
|
|
"Describe input method INPUT-METHOD."
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(list (read-input-method-name
|
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
* woman.el (woman-file-name):
* wid-edit.el (widget-file-prompt-value)
(widget-coding-system-prompt-value):
* w32-fns.el (set-w32-system-coding-system):
* vc.el (vc-version-diff, vc-annotate):
* textmodes/reftex-auc.el (reftex-arg-cite)
(reftex-arg-index-tag):
* textmodes/refer.el (refer-get-bib-files):
* textmodes/artist.el (artist-figlet-choose-font):
* terminal.el (terminal-emulator):
* replace.el (occur-read-primary-args):
* rect.el (string-rectangle, string-insert-rectangle):
* ps-print.el (ps-print-preprint):
* progmodes/pascal.el (pascal-goto-defun):
* progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
* progmodes/compile.el (compilation-find-file):
* printing.el (pr-interactive-n-up):
* play/animate.el (animate-birthday-present):
* net/rcompile.el (remote-compile):
* man.el (man, Man-goto-section, Man-follow-manual-reference):
* mail/rmailsum.el (rmail-summary-search-backward)
(rmail-summary-search):
* mail/rmailout.el (rmail-output-read-rmail-file-name)
(rmail-output-read-file-name):
* mail/rmail.el (rmail-search, rmail-search-backwards):
* mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
* locate.el (locate):
* international/quail.el (quail-show-keyboard-layout):
* international/mule.el (set-buffer-file-coding-system)
(revert-buffer-with-coding-system, set-file-name-coding-system)
(set-terminal-coding-system, set-keyboard-coding-system)
(set-next-selection-coding-system):
* international/mule-diag.el (describe-coding-system)
(describe-font, describe-fontset):
* international/mule-cmds.el (universal-coding-system-argument)
(search-unencodable-char, describe-input-method)
(set-language-environment, describe-language-environment):
* international/codepage.el (codepage-setup):
* international/code-pages.el (codepage-setup):
* info.el (Info-search, Info-follow-reference)
(Info-search-backward):
* emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-clear-cache, ad-activate)
(ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
(ad-enable-advice, ad-disable-advice, ad-remove-advice)
(ad-read-regexp):
* ediff-util.el (ediff-toggle-regexp-match):
* ediff-ptch.el (ediff-prompt-for-patch-file):
* dired-aux.el (dired-diff):
* diff.el (diff):
* cus-edit.el (custom-variable-prompt):
* calendar/timeclock.el (timeclock-ask-for-project):
* calc/calcalg3.el (calc-get-fit-variables):
* calc/calc-store.el (calc-edit-variable)
(calc-permanent-variable):
* vc-mcvs.el (vc-mcvs-register):
* shadowfile.el (shadow-define-literal-group):
* woman.el (woman-file-name):
* vc.el (vc-version-diff, vc-merge):
* textmodes/reftex-index.el (reftex-index-complete-tag):
* format.el (format-decode-buffer, format-decode-region):
* emulation/viper-cmd.el (viper-read-string-with-history):
* emacs-lisp/debug.el (cancel-debug-on-entry):
* emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
* ediff.el (ediff-merge-revisions)
(ediff-merge-revisions-with-ancestor, ediff-revision):
* completion.el (interactive-completion-string-reader):
* calc/calc-prog.el (calc-user-define-formula):
Follow convention for reading with the minibuffer.
2005-09-24 13:44:02 +00:00
|
|
|
|
"Describe input method (default current choice): ")))
|
1997-09-01 10:44:31 +00:00
|
|
|
|
(if (and input-method (symbolp input-method))
|
1997-09-01 07:19:38 +00:00
|
|
|
|
(setq input-method (symbol-name input-method)))
|
2002-02-15 20:00:18 +00:00
|
|
|
|
(help-setup-xref (list #'describe-input-method
|
|
|
|
|
(or input-method current-input-method))
|
2009-10-02 03:48:36 +00:00
|
|
|
|
(called-interactively-p 'interactive))
|
2002-02-03 10:32:13 +00:00
|
|
|
|
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(if (null input-method)
|
|
|
|
|
(describe-current-input-method)
|
2000-08-29 05:37:48 +00:00
|
|
|
|
(let ((current current-input-method))
|
|
|
|
|
(condition-case nil
|
|
|
|
|
(progn
|
|
|
|
|
(save-excursion
|
|
|
|
|
(activate-input-method input-method)
|
|
|
|
|
(describe-current-input-method))
|
|
|
|
|
(activate-input-method current))
|
2002-07-24 22:20:49 +00:00
|
|
|
|
(error
|
2000-08-29 05:37:48 +00:00
|
|
|
|
(activate-input-method current)
|
2001-11-16 13:06:51 +00:00
|
|
|
|
(help-setup-xref (list #'describe-input-method input-method)
|
2009-10-02 03:48:36 +00:00
|
|
|
|
(called-interactively-p 'interactive))
|
2001-11-16 13:06:51 +00:00
|
|
|
|
(with-output-to-temp-buffer (help-buffer)
|
2000-08-29 05:37:48 +00:00
|
|
|
|
(let ((elt (assoc input-method input-method-alist)))
|
|
|
|
|
(princ (format
|
|
|
|
|
"Input method: %s (`%s' in mode line) for %s\n %s\n"
|
|
|
|
|
input-method (nth 3 elt) (nth 1 elt) (nth 4 elt))))))))))
|
1997-06-18 12:55:13 +00:00
|
|
|
|
|
|
|
|
|
(defun describe-current-input-method ()
|
2002-02-03 10:32:13 +00:00
|
|
|
|
"Describe the input method currently in use.
|
|
|
|
|
This is a subroutine for `describe-input-method'."
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(if current-input-method
|
|
|
|
|
(if (and (symbolp describe-current-input-method-function)
|
|
|
|
|
(fboundp describe-current-input-method-function))
|
|
|
|
|
(funcall describe-current-input-method-function)
|
|
|
|
|
(message "No way to describe the current input method `%s'"
|
1999-06-17 12:11:46 +00:00
|
|
|
|
current-input-method)
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(ding))
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(error "No input method is activated now")))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
1997-10-21 10:47:35 +00:00
|
|
|
|
(defun read-multilingual-string (prompt &optional initial-input input-method)
|
1997-02-20 07:02:49 +00:00
|
|
|
|
"Read a multilingual string from minibuffer, prompting with string PROMPT.
|
|
|
|
|
The input method selected last time is activated in minibuffer.
|
2008-11-18 01:35:25 +00:00
|
|
|
|
If optional second argument INITIAL-INPUT is non-nil, insert it in the
|
|
|
|
|
minibuffer initially.
|
|
|
|
|
Optional 3rd argument INPUT-METHOD specifies the input method to be activated
|
|
|
|
|
instead of the one selected last time. It is a symbol or a string."
|
1997-07-10 06:46:42 +00:00
|
|
|
|
(setq input-method
|
|
|
|
|
(or input-method
|
1997-10-21 10:47:35 +00:00
|
|
|
|
current-input-method
|
1997-07-10 06:46:42 +00:00
|
|
|
|
default-input-method
|
|
|
|
|
(read-input-method-name "Input method: " nil t)))
|
1997-09-01 10:46:54 +00:00
|
|
|
|
(if (and input-method (symbolp input-method))
|
1997-09-01 07:19:38 +00:00
|
|
|
|
(setq input-method (symbol-name input-method)))
|
1998-08-18 00:44:20 +00:00
|
|
|
|
(let ((prev-input-method current-input-method))
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn
|
|
|
|
|
(activate-input-method input-method)
|
|
|
|
|
(read-string prompt initial-input nil nil t))
|
|
|
|
|
(activate-input-method prev-input-method))))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
;; Variables to control behavior of input methods. All input methods
|
|
|
|
|
;; should react to these variables.
|
|
|
|
|
|
1997-10-23 12:05:45 +00:00
|
|
|
|
(defcustom input-method-verbose-flag 'default
|
(toggle-enable-multibyte-characters, sort-coding-systems,
search-unencodable-char): Doc fixes.
(default-input-method, input-method-verbose-flag, input-method-highlight-flag):
Remove * in defcustom's docstrings.
(exit-language-environment-hook, set-default-coding-systems,
coding-system-change-eol-conversion, prefer-coding-system,
find-multibyte-characters, leim-list-entry-regexp, set-input-method,
input-method-exit-on-first-char, princ-list, locale-language-names,
locale-charset-language-names, define-char-code-property):
Fix typos in docstrings.
2007-05-29 00:14:53 +00:00
|
|
|
|
"A flag to control extra guidance given by input methods.
|
1997-10-23 12:05:45 +00:00
|
|
|
|
The value should be nil, t, `complex-only', or `default'.
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
1997-09-13 09:38:27 +00:00
|
|
|
|
The extra guidance is done by showing list of available keys in echo
|
1997-10-23 12:05:45 +00:00
|
|
|
|
area. When you use the input method in the minibuffer, the guidance
|
|
|
|
|
is shown at the bottom short window (split from the existing window).
|
1997-09-09 14:55:29 +00:00
|
|
|
|
|
1997-10-23 12:05:45 +00:00
|
|
|
|
If the value is t, extra guidance is always given, if the value is
|
|
|
|
|
nil, extra guidance is always suppressed.
|
|
|
|
|
|
|
|
|
|
If the value is `complex-only', only complex input methods such as
|
|
|
|
|
`chinese-py' and `japanese' give extra guidance.
|
|
|
|
|
|
|
|
|
|
If the value is `default', complex input methods always give extra
|
|
|
|
|
guidance, but simple input methods give it only when you are not in
|
|
|
|
|
the minibuffer.
|
|
|
|
|
|
|
|
|
|
See also the variable `input-method-highlight-flag'."
|
2002-07-24 22:20:49 +00:00
|
|
|
|
:type '(choice (const :tag "Always" t) (const :tag "Never" nil)
|
|
|
|
|
(const complex-only) (const default))
|
1997-08-18 02:28:28 +00:00
|
|
|
|
:group 'mule)
|
|
|
|
|
|
|
|
|
|
(defcustom input-method-highlight-flag t
|
(toggle-enable-multibyte-characters, sort-coding-systems,
search-unencodable-char): Doc fixes.
(default-input-method, input-method-verbose-flag, input-method-highlight-flag):
Remove * in defcustom's docstrings.
(exit-language-environment-hook, set-default-coding-systems,
coding-system-change-eol-conversion, prefer-coding-system,
find-multibyte-characters, leim-list-entry-regexp, set-input-method,
input-method-exit-on-first-char, princ-list, locale-language-names,
locale-charset-language-names, define-char-code-property):
Fix typos in docstrings.
2007-05-29 00:14:53 +00:00
|
|
|
|
"If this flag is non-nil, input methods highlight partially-entered text.
|
1997-08-18 02:28:28 +00:00
|
|
|
|
For instance, while you are in the middle of a Quail input method sequence,
|
|
|
|
|
the text inserted so far is temporarily underlined.
|
1997-10-23 12:05:45 +00:00
|
|
|
|
The underlining goes away when you finish or abort the input method sequence.
|
|
|
|
|
See also the variable `input-method-verbose-flag'."
|
1997-08-18 02:28:28 +00:00
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'mule)
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
2002-09-08 19:49:54 +00:00
|
|
|
|
(defcustom input-method-activate-hook nil
|
1997-08-26 12:03:42 +00:00
|
|
|
|
"Normal hook run just after an input method is activated.
|
|
|
|
|
|
|
|
|
|
The variable `current-input-method' keeps the input method name
|
2002-09-08 19:49:54 +00:00
|
|
|
|
just activated."
|
|
|
|
|
:type 'hook
|
|
|
|
|
:group 'mule)
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
2002-09-08 19:49:54 +00:00
|
|
|
|
(defcustom input-method-inactivate-hook nil
|
1997-08-26 12:03:42 +00:00
|
|
|
|
"Normal hook run just after an input method is inactivated.
|
|
|
|
|
|
|
|
|
|
The variable `current-input-method' still keeps the input method name
|
2002-09-08 19:49:54 +00:00
|
|
|
|
just inactivated."
|
|
|
|
|
:type 'hook
|
|
|
|
|
:group 'mule)
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
2002-09-08 19:49:54 +00:00
|
|
|
|
(defcustom input-method-after-insert-chunk-hook nil
|
2003-09-08 12:53:41 +00:00
|
|
|
|
"Normal hook run just after an input method insert some chunk of text."
|
2002-09-08 19:49:54 +00:00
|
|
|
|
:type 'hook
|
|
|
|
|
:group 'mule)
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
1998-08-06 05:38:11 +00:00
|
|
|
|
(defvar input-method-exit-on-first-char nil
|
2001-02-21 14:52:40 +00:00
|
|
|
|
"This flag controls when an input method returns.
|
1998-08-06 05:38:11 +00:00
|
|
|
|
Usually, the input method does not return while there's a possibility
|
|
|
|
|
that it may find a different translation if a user types another key.
|
2008-11-18 01:35:25 +00:00
|
|
|
|
But, if this flag is non-nil, the input method returns as soon as the
|
|
|
|
|
current key sequence gets long enough to have some valid translation.")
|
1998-08-06 05:38:11 +00:00
|
|
|
|
|
2002-09-08 19:49:54 +00:00
|
|
|
|
(defcustom input-method-use-echo-area nil
|
1998-08-06 05:38:11 +00:00
|
|
|
|
"This flag controls how an input method shows an intermediate key sequence.
|
1998-08-08 07:20:44 +00:00
|
|
|
|
Usually, the input method inserts the intermediate key sequence,
|
|
|
|
|
or candidate translations corresponding to the sequence,
|
|
|
|
|
at point in the current buffer.
|
2002-09-08 19:49:54 +00:00
|
|
|
|
But, if this flag is non-nil, it displays them in echo area instead."
|
|
|
|
|
:type 'hook
|
|
|
|
|
:group 'mule)
|
1998-08-06 05:38:11 +00:00
|
|
|
|
|
1997-08-18 10:51:45 +00:00
|
|
|
|
(defvar input-method-exit-on-invalid-key nil
|
2005-06-10 14:12:17 +00:00
|
|
|
|
"This flag controls the behavior of an input method on invalid key input.
|
1997-08-18 10:51:45 +00:00
|
|
|
|
Usually, when a user types a key which doesn't start any character
|
|
|
|
|
handled by the input method, the key is handled by turning off the
|
1998-09-06 14:31:49 +00:00
|
|
|
|
input method temporarily. After that key, the input method is re-enabled.
|
1997-08-18 10:51:45 +00:00
|
|
|
|
But, if this flag is non-nil, the input method is never back on.")
|
|
|
|
|
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
2002-09-08 19:49:54 +00:00
|
|
|
|
(defcustom set-language-environment-hook nil
|
1997-10-23 12:05:45 +00:00
|
|
|
|
"Normal hook run after some language environment is set.
|
|
|
|
|
|
|
|
|
|
When you set some hook function here, that effect usually should not
|
|
|
|
|
be inherited to another language environment. So, you had better set
|
|
|
|
|
another function in `exit-language-environment-hook' (which see) to
|
2002-09-08 19:49:54 +00:00
|
|
|
|
cancel the effect."
|
|
|
|
|
:type 'hook
|
|
|
|
|
:group 'mule)
|
1997-10-23 12:05:45 +00:00
|
|
|
|
|
2002-09-08 19:49:54 +00:00
|
|
|
|
(defcustom exit-language-environment-hook nil
|
1997-10-23 12:05:45 +00:00
|
|
|
|
"Normal hook run after exiting from some language environment.
|
|
|
|
|
When this hook is run, the variable `current-language-environment'
|
|
|
|
|
is still bound to the language environment being exited.
|
|
|
|
|
|
1998-09-06 14:31:49 +00:00
|
|
|
|
This hook is mainly used for canceling the effect of
|
(toggle-enable-multibyte-characters, sort-coding-systems,
search-unencodable-char): Doc fixes.
(default-input-method, input-method-verbose-flag, input-method-highlight-flag):
Remove * in defcustom's docstrings.
(exit-language-environment-hook, set-default-coding-systems,
coding-system-change-eol-conversion, prefer-coding-system,
find-multibyte-characters, leim-list-entry-regexp, set-input-method,
input-method-exit-on-first-char, princ-list, locale-language-names,
locale-charset-language-names, define-char-code-property):
Fix typos in docstrings.
2007-05-29 00:14:53 +00:00
|
|
|
|
`set-language-environment-hook' (which see)."
|
2002-09-08 19:49:54 +00:00
|
|
|
|
:type 'hook
|
|
|
|
|
:group 'mule)
|
1997-10-23 12:05:45 +00:00
|
|
|
|
|
1998-10-12 06:13:42 +00:00
|
|
|
|
(put 'setup-specified-language-environment 'apropos-inhibit t)
|
|
|
|
|
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(defun setup-specified-language-environment ()
|
1998-05-23 20:05:36 +00:00
|
|
|
|
"Switch to a specified language environment."
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(interactive)
|
1997-07-05 19:26:53 +00:00
|
|
|
|
(let (language-name)
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(if (and (symbolp last-command-event)
|
|
|
|
|
(or (not (eq last-command-event 'Default))
|
|
|
|
|
(setq last-command-event 'English))
|
1997-07-05 19:26:53 +00:00
|
|
|
|
(setq language-name (symbol-name last-command-event)))
|
2002-02-12 09:49:46 +00:00
|
|
|
|
(prog1
|
|
|
|
|
(set-language-environment language-name)
|
|
|
|
|
(customize-mark-as-set 'current-language-environment))
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(error "Bogus calling sequence"))))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
1998-03-20 06:29:54 +00:00
|
|
|
|
(defcustom current-language-environment "English"
|
1999-01-27 20:22:42 +00:00
|
|
|
|
"The last language environment specified with `set-language-environment'.
|
1999-03-30 21:38:20 +00:00
|
|
|
|
This variable should be set only with \\[customize], which is equivalent
|
|
|
|
|
to using the function `set-language-environment'."
|
1999-01-27 20:22:42 +00:00
|
|
|
|
:link '(custom-manual "(emacs)Language Environments")
|
1998-09-01 17:42:01 +00:00
|
|
|
|
:set (lambda (symbol value) (set-language-environment value))
|
1999-01-27 20:22:42 +00:00
|
|
|
|
:get (lambda (x)
|
2004-04-21 19:16:15 +00:00
|
|
|
|
(or (car-safe (assoc-string
|
1999-01-27 20:22:42 +00:00
|
|
|
|
(if (symbolp current-language-environment)
|
|
|
|
|
(symbol-name current-language-environment)
|
|
|
|
|
current-language-environment)
|
2004-04-21 19:16:15 +00:00
|
|
|
|
language-info-alist t))
|
1999-01-27 20:22:42 +00:00
|
|
|
|
"English"))
|
2002-12-13 22:42:21 +00:00
|
|
|
|
;; custom type will be updated with `set-language-info'.
|
|
|
|
|
:type (if language-info-alist
|
|
|
|
|
(cons 'choice (mapcar
|
|
|
|
|
(lambda (lang)
|
2003-01-25 18:20:30 +00:00
|
|
|
|
(list 'const lang))
|
|
|
|
|
(sort (mapcar 'car language-info-alist) 'string<)))
|
2002-12-13 22:42:21 +00:00
|
|
|
|
'string)
|
1998-03-20 06:29:54 +00:00
|
|
|
|
:initialize 'custom-initialize-default
|
2002-11-09 12:53:16 +00:00
|
|
|
|
:group 'mule)
|
1997-07-05 19:26:53 +00:00
|
|
|
|
|
1998-08-10 06:29:02 +00:00
|
|
|
|
(defun reset-language-environment ()
|
|
|
|
|
"Reset multilingual environment of Emacs to the default status.
|
|
|
|
|
|
|
|
|
|
The default status is as follows:
|
|
|
|
|
|
2002-07-24 22:20:49 +00:00
|
|
|
|
The default value of `buffer-file-coding-system' is nil.
|
1998-08-10 06:29:02 +00:00
|
|
|
|
The default coding system for process I/O is nil.
|
|
|
|
|
The default value for the command `set-terminal-coding-system' is nil.
|
|
|
|
|
The default value for the command `set-keyboard-coding-system' is nil.
|
|
|
|
|
|
2002-03-01 02:12:40 +00:00
|
|
|
|
The order of priorities of coding systems are as follows:
|
|
|
|
|
utf-8
|
|
|
|
|
iso-2022-7bit
|
|
|
|
|
iso-latin-1
|
|
|
|
|
iso-2022-7bit-lock
|
|
|
|
|
iso-2022-8bit-ss2
|
|
|
|
|
emacs-mule
|
|
|
|
|
raw-text"
|
1998-08-10 06:29:02 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
;; This function formerly set default-enable-multibyte-characters to t,
|
|
|
|
|
;; but that is incorrect. It should not alter the unibyte/multibyte choice.
|
|
|
|
|
|
2002-03-01 02:12:40 +00:00
|
|
|
|
(set-coding-system-priority
|
|
|
|
|
'utf-8
|
|
|
|
|
'iso-2022-7bit
|
|
|
|
|
'iso-latin-1
|
|
|
|
|
'iso-2022-7bit-lock
|
|
|
|
|
'iso-2022-8bit-ss2
|
|
|
|
|
'emacs-mule
|
|
|
|
|
'raw-text)
|
1998-09-16 07:21:31 +00:00
|
|
|
|
|
1998-08-10 06:29:02 +00:00
|
|
|
|
(set-default-coding-systems nil)
|
2000-07-27 06:09:25 +00:00
|
|
|
|
(setq default-sendmail-coding-system 'iso-latin-1)
|
2005-02-03 16:06:34 +00:00
|
|
|
|
;; On Darwin systems, this should be utf-8, but when this file is loaded
|
|
|
|
|
;; utf-8 is not yet defined, so we set it in set-locale-environment instead.
|
2003-03-13 08:32:17 +00:00
|
|
|
|
(setq default-file-name-coding-system 'iso-latin-1)
|
2002-04-07 18:51:29 +00:00
|
|
|
|
;; Preserve eol-type from existing default-process-coding-systems.
|
|
|
|
|
;; On non-unix-like systems in particular, these may have been set
|
|
|
|
|
;; carefully by the user, or by the startup code, to deal with the
|
|
|
|
|
;; users shell appropriately, so should not be altered by changing
|
|
|
|
|
;; language environment.
|
|
|
|
|
(let ((output-coding
|
2002-04-08 19:23:38 +00:00
|
|
|
|
;; When bootstrapping, coding-systems are not defined yet, so
|
|
|
|
|
;; we need to catch the error from check-coding-system.
|
2002-07-24 22:20:49 +00:00
|
|
|
|
(condition-case nil
|
2002-04-08 19:23:38 +00:00
|
|
|
|
(coding-system-change-text-conversion
|
|
|
|
|
(car default-process-coding-system) 'undecided)
|
|
|
|
|
(coding-system-error 'undecided)))
|
2002-04-07 18:51:29 +00:00
|
|
|
|
(input-coding
|
2002-04-08 19:23:38 +00:00
|
|
|
|
(condition-case nil
|
|
|
|
|
(coding-system-change-text-conversion
|
|
|
|
|
(cdr default-process-coding-system) 'iso-latin-1)
|
|
|
|
|
(coding-system-error 'iso-latin-1))))
|
2002-04-07 18:51:29 +00:00
|
|
|
|
(setq default-process-coding-system
|
|
|
|
|
(cons output-coding input-coding)))
|
2000-07-27 06:09:25 +00:00
|
|
|
|
|
2009-07-07 06:28:54 +00:00
|
|
|
|
;; Put the highest priority to the charset iso-8859-1 to prefer the
|
|
|
|
|
;; registry iso8859-1 over iso8859-2 in font selection. It also
|
|
|
|
|
;; makes unibyte-display-via-language-environment to use iso-8859-1
|
|
|
|
|
;; as the unibyte charset.
|
|
|
|
|
(set-charset-priority 'iso-8859-1)
|
|
|
|
|
|
1998-08-10 06:29:02 +00:00
|
|
|
|
;; Don't alter the terminal and keyboard coding systems here.
|
|
|
|
|
;; The terminal still supports the same coding system
|
|
|
|
|
;; that it supported a minute ago.
|
2002-04-01 21:13:52 +00:00
|
|
|
|
;; (set-terminal-coding-system-internal nil)
|
|
|
|
|
;; (set-keyboard-coding-system-internal nil)
|
1998-08-10 06:29:02 +00:00
|
|
|
|
|
2008-03-12 17:48:00 +00:00
|
|
|
|
;; Back in Emacs-20, it was necessary to provide some fallback implicit
|
|
|
|
|
;; conversion, because almost no packages handled coding-system issues.
|
|
|
|
|
;; Nowadays it'd just paper over bugs.
|
|
|
|
|
;; (set-unibyte-charset 'iso-8859-1)
|
|
|
|
|
)
|
1998-08-10 06:29:02 +00:00
|
|
|
|
|
2000-08-24 02:10:05 +00:00
|
|
|
|
(reset-language-environment)
|
|
|
|
|
|
2005-05-03 03:01:09 +00:00
|
|
|
|
(defun set-display-table-and-terminal-coding-system (language-name &optional coding-system display)
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
"Set up the display table and terminal coding system for LANGUAGE-NAME."
|
|
|
|
|
(let ((coding (get-language-info language-name 'unibyte-display)))
|
2005-12-07 07:28:37 +00:00
|
|
|
|
(if (and coding
|
|
|
|
|
(or (not coding-system)
|
|
|
|
|
(coding-system-equal coding coding-system)))
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
(standard-display-european-internal)
|
2003-06-19 16:12:21 +00:00
|
|
|
|
;; The following 2 lines undo the 8-bit display that we set up
|
|
|
|
|
;; in standard-display-european-internal, which see. This is in
|
|
|
|
|
;; case the user has used standard-display-european earlier in
|
2008-10-01 16:18:59 +00:00
|
|
|
|
;; this session.
|
2003-07-08 09:24:46 +00:00
|
|
|
|
(when standard-display-table
|
|
|
|
|
(dotimes (i 128)
|
2003-07-09 16:18:21 +00:00
|
|
|
|
(aset standard-display-table (+ i 128) nil))))
|
2008-10-01 16:18:59 +00:00
|
|
|
|
(set-terminal-coding-system (or coding-system coding) display)))
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
|
1997-05-31 06:31:43 +00:00
|
|
|
|
(defun set-language-environment (language-name)
|
1997-05-31 06:41:24 +00:00
|
|
|
|
"Set up multi-lingual environment for using LANGUAGE-NAME.
|
|
|
|
|
This sets the coding system priority and the default input method
|
1998-03-20 06:29:54 +00:00
|
|
|
|
and sometimes other things. LANGUAGE-NAME should be a string
|
|
|
|
|
which is the name of a language environment. For example, \"Latin-1\"
|
|
|
|
|
specifies the character set for the major languages of Western Europe."
|
1997-10-23 12:05:45 +00:00
|
|
|
|
(interactive (list (read-language-name
|
1998-08-10 06:29:02 +00:00
|
|
|
|
nil
|
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
* woman.el (woman-file-name):
* wid-edit.el (widget-file-prompt-value)
(widget-coding-system-prompt-value):
* w32-fns.el (set-w32-system-coding-system):
* vc.el (vc-version-diff, vc-annotate):
* textmodes/reftex-auc.el (reftex-arg-cite)
(reftex-arg-index-tag):
* textmodes/refer.el (refer-get-bib-files):
* textmodes/artist.el (artist-figlet-choose-font):
* terminal.el (terminal-emulator):
* replace.el (occur-read-primary-args):
* rect.el (string-rectangle, string-insert-rectangle):
* ps-print.el (ps-print-preprint):
* progmodes/pascal.el (pascal-goto-defun):
* progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
* progmodes/compile.el (compilation-find-file):
* printing.el (pr-interactive-n-up):
* play/animate.el (animate-birthday-present):
* net/rcompile.el (remote-compile):
* man.el (man, Man-goto-section, Man-follow-manual-reference):
* mail/rmailsum.el (rmail-summary-search-backward)
(rmail-summary-search):
* mail/rmailout.el (rmail-output-read-rmail-file-name)
(rmail-output-read-file-name):
* mail/rmail.el (rmail-search, rmail-search-backwards):
* mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
* locate.el (locate):
* international/quail.el (quail-show-keyboard-layout):
* international/mule.el (set-buffer-file-coding-system)
(revert-buffer-with-coding-system, set-file-name-coding-system)
(set-terminal-coding-system, set-keyboard-coding-system)
(set-next-selection-coding-system):
* international/mule-diag.el (describe-coding-system)
(describe-font, describe-fontset):
* international/mule-cmds.el (universal-coding-system-argument)
(search-unencodable-char, describe-input-method)
(set-language-environment, describe-language-environment):
* international/codepage.el (codepage-setup):
* international/code-pages.el (codepage-setup):
* info.el (Info-search, Info-follow-reference)
(Info-search-backward):
* emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-clear-cache, ad-activate)
(ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
(ad-enable-advice, ad-disable-advice, ad-remove-advice)
(ad-read-regexp):
* ediff-util.el (ediff-toggle-regexp-match):
* ediff-ptch.el (ediff-prompt-for-patch-file):
* dired-aux.el (dired-diff):
* diff.el (diff):
* cus-edit.el (custom-variable-prompt):
* calendar/timeclock.el (timeclock-ask-for-project):
* calc/calcalg3.el (calc-get-fit-variables):
* calc/calc-store.el (calc-edit-variable)
(calc-permanent-variable):
* vc-mcvs.el (vc-mcvs-register):
* shadowfile.el (shadow-define-literal-group):
* woman.el (woman-file-name):
* vc.el (vc-version-diff, vc-merge):
* textmodes/reftex-index.el (reftex-index-complete-tag):
* format.el (format-decode-buffer, format-decode-region):
* emulation/viper-cmd.el (viper-read-string-with-history):
* emacs-lisp/debug.el (cancel-debug-on-entry):
* emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
* ediff.el (ediff-merge-revisions)
(ediff-merge-revisions-with-ancestor, ediff-revision):
* completion.el (interactive-completion-string-reader):
* calc/calc-prog.el (calc-user-define-formula):
Follow convention for reading with the minibuffer.
2005-09-24 13:44:02 +00:00
|
|
|
|
"Set language environment (default English): ")))
|
1997-09-01 07:19:38 +00:00
|
|
|
|
(if language-name
|
|
|
|
|
(if (symbolp language-name)
|
|
|
|
|
(setq language-name (symbol-name language-name)))
|
|
|
|
|
(setq language-name "English"))
|
2004-04-21 19:16:15 +00:00
|
|
|
|
(let ((slot (assoc-string language-name language-info-alist t)))
|
2003-07-11 02:42:54 +00:00
|
|
|
|
(unless slot
|
1997-07-05 19:26:53 +00:00
|
|
|
|
(error "Language environment not defined: %S" language-name))
|
2003-07-11 02:42:54 +00:00
|
|
|
|
(setq language-name (car slot)))
|
1997-10-23 12:05:45 +00:00
|
|
|
|
(if current-language-environment
|
|
|
|
|
(let ((func (get-language-info current-language-environment
|
|
|
|
|
'exit-function)))
|
1997-11-08 03:07:37 +00:00
|
|
|
|
(run-hooks 'exit-language-environment-hook)
|
2001-11-16 13:06:51 +00:00
|
|
|
|
(if (functionp func) (funcall func))))
|
1998-08-10 06:29:02 +00:00
|
|
|
|
|
2006-07-07 01:06:18 +00:00
|
|
|
|
(reset-language-environment)
|
|
|
|
|
;; The features might set up coding systems.
|
1998-08-10 06:29:02 +00:00
|
|
|
|
(let ((required-features (get-language-info language-name 'features)))
|
|
|
|
|
(while required-features
|
|
|
|
|
(require (car required-features))
|
|
|
|
|
(setq required-features (cdr required-features))))
|
2004-04-16 12:51:06 +00:00
|
|
|
|
|
2006-07-07 01:06:18 +00:00
|
|
|
|
(setq current-language-environment language-name)
|
|
|
|
|
|
|
|
|
|
(set-language-environment-coding-systems language-name)
|
|
|
|
|
(set-language-environment-input-method language-name)
|
|
|
|
|
(set-language-environment-nonascii-translation language-name)
|
|
|
|
|
(set-language-environment-charset language-name)
|
|
|
|
|
;; Unibyte setups if necessary.
|
2009-09-03 06:54:57 +00:00
|
|
|
|
(unless (default-value 'enable-multibyte-characters)
|
2006-07-07 01:06:18 +00:00
|
|
|
|
(set-language-environment-unibyte language-name))
|
|
|
|
|
|
1998-08-10 06:29:02 +00:00
|
|
|
|
(let ((func (get-language-info language-name 'setup-function)))
|
2001-11-16 13:06:51 +00:00
|
|
|
|
(if (functionp func)
|
1998-08-10 06:29:02 +00:00
|
|
|
|
(funcall func)))
|
2006-07-07 01:06:18 +00:00
|
|
|
|
|
2008-05-14 01:55:06 +00:00
|
|
|
|
(setq current-iso639-language
|
2008-09-01 07:15:03 +00:00
|
|
|
|
(or (get-language-info language-name 'iso639-language)
|
|
|
|
|
current-iso639-language))
|
2008-05-14 01:55:06 +00:00
|
|
|
|
|
1997-10-23 12:05:45 +00:00
|
|
|
|
(run-hooks 'set-language-environment-hook)
|
1997-07-05 19:26:53 +00:00
|
|
|
|
(force-mode-line-update t))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
2002-09-13 23:25:28 +00:00
|
|
|
|
(define-widget 'charset 'symbol
|
2009-11-11 19:24:20 +00:00
|
|
|
|
"An Emacs charset."
|
2002-10-16 22:54:04 +00:00
|
|
|
|
:tag "Charset"
|
2002-09-13 23:25:28 +00:00
|
|
|
|
:complete-function (lambda ()
|
|
|
|
|
(interactive)
|
|
|
|
|
(lisp-complete-symbol 'charsetp))
|
|
|
|
|
:completion-ignore-case t
|
|
|
|
|
:value 'ascii
|
|
|
|
|
:validate (lambda (widget)
|
|
|
|
|
(unless (charsetp (widget-value widget))
|
|
|
|
|
(widget-put widget :error (format "Invalid charset: %S"
|
|
|
|
|
(widget-value widget)))
|
|
|
|
|
widget))
|
|
|
|
|
:prompt-history 'charset-history)
|
|
|
|
|
|
|
|
|
|
(defcustom language-info-custom-alist nil
|
|
|
|
|
"Customizations of language environment parameters.
|
|
|
|
|
Value is an alist with elements like those of `language-info-alist'.
|
|
|
|
|
These are used to set values in `language-info-alist' which replace
|
|
|
|
|
the defaults. A typical use is replacing the default input method for
|
|
|
|
|
the environment. Use \\[describe-language-environment] to find the environment's settings.
|
|
|
|
|
|
|
|
|
|
This option is intended for use at startup. Removing items doesn't
|
|
|
|
|
remove them from the language info until you next restart Emacs.
|
|
|
|
|
|
2008-11-18 01:35:25 +00:00
|
|
|
|
Setting this variable directly does not take effect.
|
|
|
|
|
See `set-language-info-alist' for use in programs."
|
2002-09-13 23:25:28 +00:00
|
|
|
|
:group 'mule
|
2005-02-14 03:40:07 +00:00
|
|
|
|
:version "23.1"
|
2002-09-13 23:25:28 +00:00
|
|
|
|
:set (lambda (s v)
|
|
|
|
|
(custom-set-default s v)
|
|
|
|
|
;; Can't do this before language environments are set up.
|
|
|
|
|
(when v
|
|
|
|
|
;; modify language-info-alist
|
|
|
|
|
(dolist (elt v)
|
|
|
|
|
(set-language-info-alist (car elt) (cdr elt)))
|
|
|
|
|
;; re-set the environment in case its parameters changed
|
|
|
|
|
(set-language-environment current-language-environment)))
|
|
|
|
|
:type `(alist
|
|
|
|
|
:key-type (string :tag "Language environment"
|
|
|
|
|
:completion-ignore-case t
|
|
|
|
|
:complete-function widget-string-complete
|
|
|
|
|
:completion-alist language-info-alist)
|
|
|
|
|
:value-type
|
|
|
|
|
(alist :key-type symbol
|
|
|
|
|
:options ((documentation string)
|
|
|
|
|
(charset (repeat charset))
|
|
|
|
|
(sample-text string)
|
|
|
|
|
(setup-function function)
|
|
|
|
|
(exit-function function)
|
|
|
|
|
(coding-system (repeat coding-system))
|
|
|
|
|
(coding-priority (repeat coding-system))
|
|
|
|
|
(nonascii-translation charset)
|
|
|
|
|
(input-method
|
|
|
|
|
(string
|
|
|
|
|
:completion-ignore-case t
|
|
|
|
|
:complete-function widget-string-complete
|
|
|
|
|
:completion-alist input-method-alist
|
|
|
|
|
:prompt-history input-method-history))
|
|
|
|
|
(features (repeat symbol))
|
|
|
|
|
(unibyte-display coding-system)))))
|
|
|
|
|
|
2008-06-12 03:56:20 +00:00
|
|
|
|
(declare-function x-server-vendor "xfns.c" (&optional terminal))
|
|
|
|
|
(declare-function x-server-version "xfns.c" (&optional terminal))
|
|
|
|
|
|
1998-04-30 03:20:24 +00:00
|
|
|
|
(defun standard-display-european-internal ()
|
|
|
|
|
;; Actually set up direct output of non-ASCII characters.
|
1998-12-17 17:12:56 +00:00
|
|
|
|
(standard-display-8bit (if (eq window-system 'pc) 128 160) 255)
|
|
|
|
|
;; Unibyte Emacs on MS-DOS wants to display all 8-bit characters with
|
|
|
|
|
;; the native font, and codes 160 and 146 stand for something very
|
|
|
|
|
;; different there.
|
2009-09-03 06:54:57 +00:00
|
|
|
|
(or (and (eq window-system 'pc) (not (default-value
|
|
|
|
|
'enable-multibyte-characters)))
|
1998-12-17 17:12:56 +00:00
|
|
|
|
(progn
|
2005-01-27 14:47:33 +00:00
|
|
|
|
;; Most X fonts used to do the wrong thing for latin-1 code 160.
|
|
|
|
|
(unless (and (eq window-system 'x)
|
|
|
|
|
;; XFree86 4 has fixed the fonts.
|
|
|
|
|
(string= "The XFree86 Project, Inc" (x-server-vendor))
|
|
|
|
|
(> (aref (number-to-string (nth 2 (x-server-version))) 0)
|
|
|
|
|
?3))
|
|
|
|
|
;; Make non-line-break space display as a plain space.
|
|
|
|
|
(aset standard-display-table 160 [32]))
|
2001-01-11 23:01:41 +00:00
|
|
|
|
;; Most Windows programs send out apostrophes as \222. Most X fonts
|
1998-12-17 17:12:56 +00:00
|
|
|
|
;; don't contain a character at that position. Map it to the ASCII
|
2001-11-16 13:06:51 +00:00
|
|
|
|
;; apostrophe. [This is actually RIGHT SINGLE QUOTATION MARK,
|
|
|
|
|
;; U+2019, normally from the windows-1252 character set. XFree 4
|
|
|
|
|
;; fonts probably have the appropriate glyph at this position,
|
|
|
|
|
;; so they could use standard-display-8bit. It's better to use a
|
|
|
|
|
;; proper windows-1252 coding system. --fx]
|
2005-01-27 14:47:33 +00:00
|
|
|
|
(aset standard-display-table 146 [39]))))
|
1998-12-17 17:12:56 +00:00
|
|
|
|
|
2006-07-07 01:06:18 +00:00
|
|
|
|
(defun set-language-environment-coding-systems (language-name)
|
|
|
|
|
"Do various coding system setups for language environment LANGUAGE-NAME."
|
1998-01-22 01:42:20 +00:00
|
|
|
|
(let* ((priority (get-language-info language-name 'coding-priority))
|
2006-07-07 01:06:18 +00:00
|
|
|
|
(default-coding (car priority))
|
2009-08-28 04:21:14 +00:00
|
|
|
|
;; If the default buffer-file-coding-system is nil, don't use
|
2009-01-24 15:32:15 +00:00
|
|
|
|
;; coding-system-eol-type, because it treats nil as
|
2009-08-28 04:21:14 +00:00
|
|
|
|
;; `no-conversion'. The default buffer-file-coding-system is set
|
2009-01-24 15:32:15 +00:00
|
|
|
|
;; to nil by reset-language-environment, and in that case we
|
|
|
|
|
;; want to have here the native EOL type for each platform.
|
|
|
|
|
;; FIXME: there should be a common code that runs both on
|
|
|
|
|
;; startup and here to set the default EOL type correctly.
|
|
|
|
|
;; Right now, DOS/Windows platforms set this on dos-w32.el,
|
|
|
|
|
;; which works only as long as the order of loading files at
|
|
|
|
|
;; dump time and calling functions at startup is not modified
|
|
|
|
|
;; significantly, i.e. as long as this function is called
|
2009-08-28 04:21:14 +00:00
|
|
|
|
;; _after_ the default buffer-file-coding-system was set by
|
2009-01-24 15:32:15 +00:00
|
|
|
|
;; dos-w32.el.
|
|
|
|
|
(eol-type
|
2009-08-28 04:21:14 +00:00
|
|
|
|
(coding-system-eol-type
|
|
|
|
|
(or (default-value 'buffer-file-coding-system)
|
|
|
|
|
(if (memq system-type '(windows-nt ms-dos)) 'dos 'unix)))))
|
2002-03-01 02:12:40 +00:00
|
|
|
|
(when priority
|
|
|
|
|
(set-default-coding-systems
|
|
|
|
|
(if (memq eol-type '(0 1 2 unix dos mac))
|
|
|
|
|
(coding-system-change-eol-conversion default-coding eol-type)
|
|
|
|
|
default-coding))
|
|
|
|
|
(setq default-sendmail-coding-system default-coding)
|
|
|
|
|
(apply 'set-coding-system-priority priority))))
|
1998-01-22 01:42:20 +00:00
|
|
|
|
|
2006-07-04 03:36:57 +00:00
|
|
|
|
(defun set-language-environment-input-method (language-name)
|
|
|
|
|
"Do various input method setups for language environment LANGUAGE-NAME."
|
|
|
|
|
(let ((input-method (get-language-info language-name 'input-method)))
|
|
|
|
|
(when input-method
|
|
|
|
|
(setq default-input-method input-method)
|
|
|
|
|
(if input-method-history
|
|
|
|
|
(setq input-method-history
|
|
|
|
|
(cons input-method
|
|
|
|
|
(delete input-method input-method-history)))))))
|
|
|
|
|
|
|
|
|
|
(defun set-language-environment-nonascii-translation (language-name)
|
|
|
|
|
"Do unibyte/multibyte translation setup for language environment LANGUAGE-NAME."
|
2006-07-07 01:06:18 +00:00
|
|
|
|
;; Note: For DOS, we assumed that the charset cpXXX is already
|
|
|
|
|
;; defined.
|
|
|
|
|
(let ((nonascii (get-language-info language-name 'nonascii-translation)))
|
|
|
|
|
(if (eq window-system 'pc)
|
2008-10-01 16:18:59 +00:00
|
|
|
|
(setq nonascii (intern (format "cp%d" dos-codepage))))
|
2006-07-07 01:06:18 +00:00
|
|
|
|
(or (and (charsetp nonascii)
|
|
|
|
|
(get-charset-property nonascii :ascii-compatible-p))
|
|
|
|
|
(setq nonascii 'iso-8859-1))
|
2008-03-12 17:48:00 +00:00
|
|
|
|
;; Back in Emacs-20, it was necessary to provide some fallback implicit
|
|
|
|
|
;; conversion, because almost no packages handled coding-system issues.
|
|
|
|
|
;; Nowadays it'd just paper over bugs.
|
|
|
|
|
;; (set-unibyte-charset nonascii)
|
|
|
|
|
))
|
2006-07-04 03:36:57 +00:00
|
|
|
|
|
|
|
|
|
(defun set-language-environment-charset (language-name)
|
|
|
|
|
"Do various charset setups for language environment LANGUAGE-NAME."
|
2006-07-07 01:06:18 +00:00
|
|
|
|
;; Put higher priorities to such charsets that are supported by the
|
|
|
|
|
;; coding systems of higher priorities in this environment.
|
|
|
|
|
(let ((charsets (get-language-info language-name 'charset)))
|
|
|
|
|
(dolist (coding (get-language-info language-name 'coding-priority))
|
2009-07-15 12:29:48 +00:00
|
|
|
|
(let ((list (coding-system-charset-list coding)))
|
|
|
|
|
(if (consp list)
|
|
|
|
|
(setq charsets (append charsets list)))))
|
2006-07-07 01:06:18 +00:00
|
|
|
|
(if charsets
|
|
|
|
|
(apply 'set-charset-priority charsets))))
|
2006-07-04 03:36:57 +00:00
|
|
|
|
|
|
|
|
|
(defun set-language-environment-unibyte (language-name)
|
|
|
|
|
"Do various unibyte-mode setups for language environment LANGUAGE-NAME."
|
|
|
|
|
(set-display-table-and-terminal-coding-system language-name))
|
|
|
|
|
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(defsubst princ-list (&rest args)
|
(toggle-enable-multibyte-characters, sort-coding-systems,
search-unencodable-char): Doc fixes.
(default-input-method, input-method-verbose-flag, input-method-highlight-flag):
Remove * in defcustom's docstrings.
(exit-language-environment-hook, set-default-coding-systems,
coding-system-change-eol-conversion, prefer-coding-system,
find-multibyte-characters, leim-list-entry-regexp, set-input-method,
input-method-exit-on-first-char, princ-list, locale-language-names,
locale-charset-language-names, define-char-code-property):
Fix typos in docstrings.
2007-05-29 00:14:53 +00:00
|
|
|
|
"Print all arguments with `princ', then print \"\\n\"."
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(while args (princ (car args)) (setq args (cdr args)))
|
|
|
|
|
(princ "\n"))
|
|
|
|
|
|
1998-10-12 06:13:42 +00:00
|
|
|
|
(put 'describe-specified-language-support 'apropos-inhibit t)
|
|
|
|
|
|
2004-04-16 12:51:06 +00:00
|
|
|
|
;; Print language-specific information such as input methods,
|
1997-05-12 06:56:23 +00:00
|
|
|
|
;; charsets, and coding systems. This function is intended to be
|
1997-05-16 00:59:07 +00:00
|
|
|
|
;; called from the menu:
|
1997-06-07 05:36:13 +00:00
|
|
|
|
;; [menu-bar mule describe-language-environment LANGUAGE]
|
1997-05-16 00:59:07 +00:00
|
|
|
|
;; and should not run it by `M-x describe-current-input-method-function'.
|
|
|
|
|
(defun describe-specified-language-support ()
|
1997-08-02 21:59:55 +00:00
|
|
|
|
"Describe how Emacs supports the specified language environment."
|
1997-05-16 00:59:07 +00:00
|
|
|
|
(interactive)
|
1997-06-07 05:36:13 +00:00
|
|
|
|
(let (language-name)
|
1997-05-16 00:59:07 +00:00
|
|
|
|
(if (not (and (symbolp last-command-event)
|
2000-04-01 11:54:49 +00:00
|
|
|
|
(or (not (eq last-command-event 'Default))
|
|
|
|
|
(setq last-command-event 'English))
|
1997-06-07 05:36:13 +00:00
|
|
|
|
(setq language-name (symbol-name last-command-event))))
|
1997-05-16 00:59:07 +00:00
|
|
|
|
(error "Bogus calling sequence"))
|
1997-06-07 05:36:13 +00:00
|
|
|
|
(describe-language-environment language-name)))
|
|
|
|
|
|
|
|
|
|
(defun describe-language-environment (language-name)
|
|
|
|
|
"Describe how Emacs supports language environment LANGUAGE-NAME."
|
1997-09-01 10:44:31 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(list (read-language-name
|
|
|
|
|
'documentation
|
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
* woman.el (woman-file-name):
* wid-edit.el (widget-file-prompt-value)
(widget-coding-system-prompt-value):
* w32-fns.el (set-w32-system-coding-system):
* vc.el (vc-version-diff, vc-annotate):
* textmodes/reftex-auc.el (reftex-arg-cite)
(reftex-arg-index-tag):
* textmodes/refer.el (refer-get-bib-files):
* textmodes/artist.el (artist-figlet-choose-font):
* terminal.el (terminal-emulator):
* replace.el (occur-read-primary-args):
* rect.el (string-rectangle, string-insert-rectangle):
* ps-print.el (ps-print-preprint):
* progmodes/pascal.el (pascal-goto-defun):
* progmodes/etags.el (visit-tags-table, visit-tags-table-buffer):
* progmodes/compile.el (compilation-find-file):
* printing.el (pr-interactive-n-up):
* play/animate.el (animate-birthday-present):
* net/rcompile.el (remote-compile):
* man.el (man, Man-goto-section, Man-follow-manual-reference):
* mail/rmailsum.el (rmail-summary-search-backward)
(rmail-summary-search):
* mail/rmailout.el (rmail-output-read-rmail-file-name)
(rmail-output-read-file-name):
* mail/rmail.el (rmail-search, rmail-search-backwards):
* mail/mailabbrev.el (merge-mail-abbrevs, rebuild-mail-abbrevs):
* locate.el (locate):
* international/quail.el (quail-show-keyboard-layout):
* international/mule.el (set-buffer-file-coding-system)
(revert-buffer-with-coding-system, set-file-name-coding-system)
(set-terminal-coding-system, set-keyboard-coding-system)
(set-next-selection-coding-system):
* international/mule-diag.el (describe-coding-system)
(describe-font, describe-fontset):
* international/mule-cmds.el (universal-coding-system-argument)
(search-unencodable-char, describe-input-method)
(set-language-environment, describe-language-environment):
* international/codepage.el (codepage-setup):
* international/code-pages.el (codepage-setup):
* info.el (Info-search, Info-follow-reference)
(Info-search-backward):
* emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-clear-cache, ad-activate)
(ad-deactivate, ad-update, ad-unadvise, ad-read-advice-name)
(ad-enable-advice, ad-disable-advice, ad-remove-advice)
(ad-read-regexp):
* ediff-util.el (ediff-toggle-regexp-match):
* ediff-ptch.el (ediff-prompt-for-patch-file):
* dired-aux.el (dired-diff):
* diff.el (diff):
* cus-edit.el (custom-variable-prompt):
* calendar/timeclock.el (timeclock-ask-for-project):
* calc/calcalg3.el (calc-get-fit-variables):
* calc/calc-store.el (calc-edit-variable)
(calc-permanent-variable):
* vc-mcvs.el (vc-mcvs-register):
* shadowfile.el (shadow-define-literal-group):
* woman.el (woman-file-name):
* vc.el (vc-version-diff, vc-merge):
* textmodes/reftex-index.el (reftex-index-complete-tag):
* format.el (format-decode-buffer, format-decode-region):
* emulation/viper-cmd.el (viper-read-string-with-history):
* emacs-lisp/debug.el (cancel-debug-on-entry):
* emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
* ediff.el (ediff-merge-revisions)
(ediff-merge-revisions-with-ancestor, ediff-revision):
* completion.el (interactive-completion-string-reader):
* calc/calc-prog.el (calc-user-define-formula):
Follow convention for reading with the minibuffer.
2005-09-24 13:44:02 +00:00
|
|
|
|
"Describe language environment (default current choice): ")))
|
1997-07-05 19:26:53 +00:00
|
|
|
|
(if (null language-name)
|
|
|
|
|
(setq language-name current-language-environment))
|
1997-06-07 05:36:13 +00:00
|
|
|
|
(if (or (null language-name)
|
|
|
|
|
(null (get-language-info language-name 'documentation)))
|
|
|
|
|
(error "No documentation for the specified language"))
|
1997-09-01 07:19:38 +00:00
|
|
|
|
(if (symbolp language-name)
|
|
|
|
|
(setq language-name (symbol-name language-name)))
|
2003-04-16 12:27:05 +00:00
|
|
|
|
(dolist (feature (get-language-info language-name 'features))
|
|
|
|
|
(require feature))
|
2005-01-27 14:47:33 +00:00
|
|
|
|
(let ((doc (get-language-info language-name 'documentation)))
|
2001-11-03 00:28:22 +00:00
|
|
|
|
(help-setup-xref (list #'describe-language-environment language-name)
|
2009-10-02 03:48:36 +00:00
|
|
|
|
(called-interactively-p 'interactive))
|
2001-11-03 00:28:22 +00:00
|
|
|
|
(with-output-to-temp-buffer (help-buffer)
|
* textmodes/two-column.el (2C-split):
* textmodes/texnfo-upd.el (texinfo-multi-file-included-list):
* textmodes/tex-mode.el (tex-set-buffer-directory):
* textmodes/spell.el (spell-region, spell-string):
* textmodes/reftex.el (reftex-erase-buffer):
(reftex-get-file-buffer-force, reftex-kill-temporary-buffers):
* textmodes/reftex-toc.el (reftex-toc-promote-action):
* textmodes/reftex-sel.el (reftex-get-offset, reftex-insert-docstruct)
(reftex-select-item):
* textmodes/reftex-ref.el (reftex-label-info-update)
(reftex-offer-label-menu):
* textmodes/reftex-index.el (reftex-index-change-entry)
(reftex-index-phrases-info):
* textmodes/reftex-global.el (reftex-create-tags-file)
(reftex-save-all-document-buffers, reftex-ensure-write-access):
* textmodes/reftex-dcr.el (reftex-echo-ref, reftex-echo-cite)
(reftex-view-crossref-from-bibtex):
* textmodes/reftex-cite.el (reftex-bibtex-selection-callback)
(reftex-extract-bib-entries-from-thebibliography)
(reftex-all-used-citation-keys, reftex-create-bibtex-file):
* textmodes/refbib.el (r2b-capitalize-title):
(r2b-convert-buffer, r2b-help):
* textmodes/page-ext.el (pages-directory)
(pages-directory-goto-with-mouse):
* textmodes/bibtex.el (bibtex-validate-globally):
* textmodes/bib-mode.el (bib-capitalize-title):
* textmodes/artist.el (artist-clear-buffer, artist-system):
* progmodes/xscheme.el (global-set-scheme-interaction-buffer):
(local-set-scheme-interaction-buffer, xscheme-process-filter)
(verify-xscheme-buffer, xscheme-enter-interaction-mode)
(xscheme-enter-debugger-mode, xscheme-debugger-mode-p)
(xscheme-send-control-g-interrupt, xscheme-start-process)
(xscheme-process-sentinel, xscheme-cd):
* progmodes/verilog-mode.el (verilog-read-always-signals)
(verilog-set-define, verilog-getopt-file)
(verilog-module-inside-filename-p):
* progmodes/sh-script.el:
* progmodes/python.el (python-pdbtrack-get-source-buffer)
(python-pdbtrack-grub-for-buffer, python-execute-file):
* progmodes/octave-inf.el (inferior-octave):
* progmodes/idlwave.el (idlwave-scan-user-lib-files)
(idlwave-shell-compile-helper-routines, idlwave-set-local)
(idlwave-display-completion-list-xemacs, idlwave-list-abbrevs)
(idlwave-display-completion-list-emacs, idlwave-list-load-path-shadows)
(idlwave-completion-fontify-classes, idlwave-display-calling-sequence):
* progmodes/idlw-shell.el (idlwave-shell-examine-display-clear)
(idlwave-shell-filter, idlwave-shell-examine-highlight)
(idlwave-shell-sentinel, idlwave-shell-filter-directory)
(idlwave-shell-display-line, idlwave-shell-set-bp-in-module)
(idlwave-shell-examine-display, idlwave-shell-run-region)
(idlwave-shell-filter-bp, idlwave-shell-save-and-action)
(idlwave-shell-sources-filter, idlwave-shell-goto-next-error):
* progmodes/idlw-help.el (idlwave-help-get-special-help)
(idlwave-help-get-help-buffer):
* progmodes/gud.el (gud-basic-call, gud-find-class)
(gud-tooltip-activate-mouse-motions-if-enabled):
* progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
* progmodes/ebrowse.el (ebrowse-member-table, ebrowse-save-tree-as)
(ebrowse-view-exit-fn, ebrowse-tags-list-members-in-file)
(ebrowse-tags-next-file):
* progmodes/ebnf2ps.el (ebnf-generate-eps, ebnf-generate-eps)
(ebnf-eps-production-list, ebnf-begin-file, ebnf-log)
(ebnf-eps-finish-and-write):
* progmodes/cpp.el (cpp-edit-save):
* progmodes/cperl-mode.el (cperl-pod-to-manpage):
* progmodes/cc-defs.el (c-emacs-features):
* progmodes/antlr-mode.el (antlr-invalidate-context-cache)
(antlr-directory-dependencies):
* progmodes/ada-xref.el (ada-gnat-parse-gpr, ada-get-ali-file-name)
(ada-run-application, ada-find-in-src-path, ada-goto-parent)
(ada-find-any-references, ada-make-filename-from-adaname)
(ada-make-body-gnatstub):
* obsolete/rnews.el (news-list-news-groups):
* obsolete/resume.el (resume-suspend-hook,resume-write-buffer-to-file):
* obsolete/iso-acc.el (iso-acc-minibuf-setup):
* net/rcirc.el (rcirc-debug):
* net/newst-treeview.el (newsticker--treeview-list-add-item)
(newsticker--treeview-list-clear, newsticker-treeview-browse-url)
(newsticker--treeview-list-update-faces, newsticker-treeview-save)
(newsticker--treeview-item-show-text, newsticker--treeview-item-show)
(newsticker--treeview-tree-update-tag,newsticker--treeview-buffer-init)
(newsticker-treeview-show-item, newsticker--treeview-unfold-node)
(newsticker--treeview-list-clear-highlight)
(newsticker--treeview-list-update-highlight)
(newsticker--treeview-list-highlight-start)
(newsticker--treeview-tree-update-highlight)
(newsticker--treeview-get-selected-item)
(newsticker-treeview-mark-list-items-old)
(newsticker--treeview-set-current-node):
* net/newst-plainview.el (newsticker--buffer-set-uptodate):
* net/newst-backend.el (newsticker--get-news-by-funcall)
(newsticker--get-news-by-wget, newsticker--image-get)
(newsticker--image-sentinel):
* net/mairix.el (mairix-rmail-fetch-field, mairix-gnus-fetch-field):
* net/eudcb-ph.el (eudc-ph-do-request, eudc-ph-open-session):
(eudc-ph-close-session):
* net/eudc.el (eudc-save-options):
* language/thai-word.el (thai-update-word-table):
* language/japan-util.el (japanese-string-conversion):
* international/titdic-cnv.el (tsang-quick-converter)
(ziranma-converter, ctlau-converter):
* international/mule-cmds.el (describe-language-environment):
* international/ja-dic-cnv.el (skkdic-convert-okuri-ari)
(skkdic-convert-postfix, skkdic-convert-prefix):
(skkdic-convert-okuri-nasi, skkdic-convert):
* emacs-lisp/re-builder.el (reb-update-overlays):
* emacs-lisp/pp.el (pp-to-string, pp-display-expression):
* emacs-lisp/gulp.el (gulp-send-requests):
* emacs-lisp/find-gc.el (trace-call-tree):
* emacs-lisp/eieio-opt.el (eieio-browse, eieio-describe-class)
(eieio-describe-generic):
* emacs-lisp/eieio-base.el (eieio-persistent-read):
* emacs-lisp/edebug.el (edebug-outside-excursion):
* emacs-lisp/debug.el (debugger-make-xrefs):
* emacs-lisp/cust-print.el (custom-prin1-to-string):
* emacs-lisp/chart.el (chart-new-buffer):
* emacs-lisp/authors.el (authors-scan-el, authors-scan-change-log):
Use with-current-buffer.
* textmodes/artist.el (artist-system): Don't call
copy-sequence on a fresh string.
* progmodes/idlw-shell.el (easymenu setup): Use dolist.
2009-10-31 02:38:34 +00:00
|
|
|
|
(with-current-buffer standard-output
|
2000-08-29 05:37:48 +00:00
|
|
|
|
(insert language-name " language environment\n\n")
|
|
|
|
|
(if (stringp doc)
|
|
|
|
|
(insert doc "\n\n"))
|
2000-11-06 00:11:18 +00:00
|
|
|
|
(condition-case nil
|
|
|
|
|
(let ((str (eval (get-language-info language-name 'sample-text))))
|
|
|
|
|
(if (stringp str)
|
2008-10-23 08:05:36 +00:00
|
|
|
|
(insert "Sample text:\n "
|
|
|
|
|
(replace-regexp-in-string "\n" "\n " str)
|
|
|
|
|
"\n\n")))
|
2000-11-06 00:11:18 +00:00
|
|
|
|
(error nil))
|
2000-08-29 05:37:48 +00:00
|
|
|
|
(let ((input-method (get-language-info language-name 'input-method))
|
2007-06-18 15:17:46 +00:00
|
|
|
|
(l (copy-sequence input-method-alist))
|
|
|
|
|
(first t))
|
|
|
|
|
(when (and input-method
|
|
|
|
|
(setq input-method (assoc input-method l)))
|
|
|
|
|
(insert "Input methods (default " (car input-method) ")\n")
|
|
|
|
|
(setq l (cons input-method (delete input-method l))
|
|
|
|
|
first nil))
|
|
|
|
|
(dolist (elt l)
|
|
|
|
|
(when (or (eq input-method elt)
|
|
|
|
|
(eq t (compare-strings language-name nil nil
|
|
|
|
|
(nth 1 elt) nil nil t)))
|
|
|
|
|
(when first
|
|
|
|
|
(insert "Input methods:\n")
|
|
|
|
|
(setq first nil))
|
|
|
|
|
(insert " " (car elt))
|
|
|
|
|
(search-backward (car elt))
|
|
|
|
|
(help-xref-button 0 'help-input-method (car elt))
|
2000-08-29 05:37:48 +00:00
|
|
|
|
(goto-char (point-max))
|
2000-12-07 10:55:39 +00:00
|
|
|
|
(insert " (\""
|
2007-06-18 15:17:46 +00:00
|
|
|
|
(if (stringp (nth 3 elt)) (nth 3 elt) (car (nth 3 elt)))
|
|
|
|
|
"\" in mode line)\n")))
|
|
|
|
|
(or first
|
|
|
|
|
(insert "\n")))
|
2000-08-29 05:37:48 +00:00
|
|
|
|
(insert "Character sets:\n")
|
|
|
|
|
(let ((l (get-language-info language-name 'charset)))
|
|
|
|
|
(if (null l)
|
|
|
|
|
(insert " nothing specific to " language-name "\n")
|
|
|
|
|
(while l
|
|
|
|
|
(insert " " (symbol-name (car l)))
|
|
|
|
|
(search-backward (symbol-name (car l)))
|
2001-12-19 16:33:16 +00:00
|
|
|
|
(help-xref-button 0 'help-character-set (car l))
|
2000-08-29 05:37:48 +00:00
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(insert ": " (charset-description (car l)) "\n")
|
|
|
|
|
(setq l (cdr l)))))
|
|
|
|
|
(insert "\n")
|
|
|
|
|
(insert "Coding systems:\n")
|
|
|
|
|
(let ((l (get-language-info language-name 'coding-system)))
|
|
|
|
|
(if (null l)
|
|
|
|
|
(insert " nothing specific to " language-name "\n")
|
|
|
|
|
(while l
|
|
|
|
|
(insert " " (symbol-name (car l)))
|
|
|
|
|
(search-backward (symbol-name (car l)))
|
2001-12-19 16:33:16 +00:00
|
|
|
|
(help-xref-button 0 'help-coding-system (car l))
|
2000-08-29 05:37:48 +00:00
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(insert " (`"
|
|
|
|
|
(coding-system-mnemonic (car l))
|
|
|
|
|
"' in mode line):\n\t"
|
|
|
|
|
(coding-system-doc-string (car l))
|
|
|
|
|
"\n")
|
2002-05-26 22:43:14 +00:00
|
|
|
|
(let ((aliases (coding-system-aliases (car l))))
|
2000-08-29 05:37:48 +00:00
|
|
|
|
(when aliases
|
|
|
|
|
(insert "\t(alias:")
|
|
|
|
|
(while aliases
|
|
|
|
|
(insert " " (symbol-name (car aliases)))
|
|
|
|
|
(setq aliases (cdr aliases)))
|
|
|
|
|
(insert ")\n")))
|
2001-11-03 00:28:22 +00:00
|
|
|
|
(setq l (cdr l)))))))))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
;;; Locales.
|
|
|
|
|
|
2000-04-25 23:16:28 +00:00
|
|
|
|
(defvar locale-translation-file-name nil
|
|
|
|
|
"File name for the system's file of locale-name aliases, or nil if none.")
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
|
2001-11-16 13:06:51 +00:00
|
|
|
|
;; The following definitions might as well be marked as constants and
|
|
|
|
|
;; purecopied, since they're normally used on startup, and probably
|
|
|
|
|
;; should reflect the facilities of the base Emacs.
|
|
|
|
|
(defconst locale-language-names
|
|
|
|
|
(purecopy
|
|
|
|
|
'(
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
;; Locale names of the form LANGUAGE[_TERRITORY][.CODESET][@MODIFIER]
|
|
|
|
|
;; as specified in the Single Unix Spec, Version 2.
|
|
|
|
|
;; LANGUAGE is a language code taken from ISO 639:1988 (E/F)
|
|
|
|
|
;; with additions from ISO 639/RA Newsletter No.1/1989;
|
2001-11-16 13:06:51 +00:00
|
|
|
|
;; see Internet RFC 2165 (1997-06) and
|
|
|
|
|
;; http://www.evertype.com/standards/iso639/iso639-en.html
|
|
|
|
|
;; TERRITORY is a country code taken from ISO 3166
|
|
|
|
|
;; http://www.din.de/gremien/nas/nabd/iso3166ma/codlstp1/en_listp1.html.
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
;; CODESET and MODIFIER are implementation-dependent.
|
2001-11-16 13:06:51 +00:00
|
|
|
|
|
2004-04-16 12:51:06 +00:00
|
|
|
|
;; jasonr comments: MS Windows uses three letter codes for
|
|
|
|
|
;; languages instead of the two letter ISO codes that POSIX
|
|
|
|
|
;; uses. In most cases the first two letters are the same, so
|
|
|
|
|
;; most of the regexps in locale-language-names work. Japanese
|
|
|
|
|
;; and Chinese are exceptions, which are listed in the
|
|
|
|
|
;; non-standard section at the bottom of locale-language-names.
|
|
|
|
|
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("aa_DJ" . "Latin-1") ; Afar
|
|
|
|
|
("aa" . "UTF-8")
|
|
|
|
|
;; ab Abkhazian
|
1999-10-22 22:51:33 +00:00
|
|
|
|
("af" . "Latin-1") ; Afrikaans
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("am" "Ethiopic" utf-8) ; Amharic
|
|
|
|
|
("an" . "Latin-9") ; Aragonese
|
2001-11-16 13:06:51 +00:00
|
|
|
|
; ar Arabic glibc uses 8859-6
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; as Assamese
|
|
|
|
|
; ay Aymara
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("az" . "UTF-8") ; Azerbaijani
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; ba Bashkir
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("be" "Belarusian" cp1251) ; Belarusian [Byelorussian until early 1990s]
|
|
|
|
|
("bg" "Bulgarian" cp1251) ; Bulgarian
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; bh Bihari
|
|
|
|
|
; bi Bislama
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("bn" . "UTF-8") ; Bengali, Bangla
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
("bo" . "Tibetan")
|
|
|
|
|
("br" . "Latin-1") ; Breton
|
2002-07-24 22:20:49 +00:00
|
|
|
|
("bs" . "Latin-2") ; Bosnian
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("byn" . "UTF-8") ; Bilin; Blin
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
("ca" . "Latin-1") ; Catalan
|
|
|
|
|
; co Corsican
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("cs" "Czech" iso-8859-2)
|
|
|
|
|
("cy" "Welsh" iso-8859-14)
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
("da" . "Latin-1") ; Danish
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("de" "German" iso-8859-1)
|
2006-04-08 09:53:18 +00:00
|
|
|
|
; dv Divehi
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; dz Bhutani
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("el" "Greek" iso-8859-7)
|
1999-10-22 22:51:33 +00:00
|
|
|
|
;; Users who specify "en" explicitly typically want Latin-1, not ASCII.
|
2002-10-29 18:37:26 +00:00
|
|
|
|
;; That's actually what the GNU locales define, modulo things like
|
|
|
|
|
;; en_IN -- fx.
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("en_IN" "English" utf-8) ; glibc uses utf-8 for English in India
|
2005-12-05 07:39:01 +00:00
|
|
|
|
("en" "English" iso-8859-1) ; English
|
2007-02-19 01:59:20 +00:00
|
|
|
|
("eo" . "Esperanto") ; Esperanto
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("es" "Spanish" iso-8859-1)
|
|
|
|
|
("et" . "Latin-1") ; Estonian
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
("eu" . "Latin-1") ; Basque
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("fa" . "UTF-8") ; Persian
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
("fi" . "Latin-1") ; Finnish
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("fj" . "Latin-1") ; Fiji
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
("fo" . "Latin-1") ; Faroese
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("fr" "French" iso-8859-1) ; French
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
("fy" . "Latin-1") ; Frisian
|
1999-10-22 22:51:33 +00:00
|
|
|
|
("ga" . "Latin-1") ; Irish Gaelic (new orthography)
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("gd" . "Latin-9") ; Scots Gaelic
|
|
|
|
|
("gez" "Ethiopic" utf-8) ; Geez
|
|
|
|
|
("gl" . "Latin-1") ; Gallegan; Galician
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; gn Guarani
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("gu" . "UTF-8") ; Gujarati
|
|
|
|
|
("gv" . "Latin-1") ; Manx Gaelic
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; ha Hausa
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("he" "Hebrew" iso-8859-8)
|
|
|
|
|
("hi" "Devanagari" utf-8) ; Hindi
|
|
|
|
|
("hr" "Croatian" iso-8859-2) ; Croatian
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
("hu" . "Latin-2") ; Hungarian
|
|
|
|
|
; hy Armenian
|
|
|
|
|
; ia Interlingua
|
|
|
|
|
("id" . "Latin-1") ; Indonesian
|
|
|
|
|
; ie Interlingue
|
|
|
|
|
; ik Inupiak
|
|
|
|
|
("is" . "Latin-1") ; Icelandic
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("it" "Italian" iso-8859-1) ; Italian
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; iu Inuktitut
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("iw" "Hebrew" iso-8859-8)
|
|
|
|
|
("ja" "Japanese" euc-jp)
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; jw Javanese
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("ka" "Georgian" georgian-ps) ; Georgian
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; kk Kazakh
|
1999-10-22 22:51:33 +00:00
|
|
|
|
("kl" . "Latin-1") ; Greenlandic
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; km Cambodian
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("kn" "Kannada" utf-8)
|
|
|
|
|
("ko" "Korean" euc-kr)
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; ks Kashmiri
|
|
|
|
|
; ku Kurdish
|
2001-11-16 13:06:51 +00:00
|
|
|
|
("kw" . "Latin-1") ; Cornish
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; ky Kirghiz
|
|
|
|
|
("la" . "Latin-1") ; Latin
|
2001-11-16 13:06:51 +00:00
|
|
|
|
("lb" . "Latin-1") ; Luxemburgish
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("lg" . "Laint-6") ; Ganda
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; ln Lingala
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("lo" "Lao" utf-8) ; Laothian
|
|
|
|
|
("lt" "Lithuanian" iso-8859-13)
|
2001-12-15 17:42:33 +00:00
|
|
|
|
("lv" . "Latvian") ; Latvian, Lettish
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; mg Malagasy
|
2001-11-16 13:06:51 +00:00
|
|
|
|
("mi" . "Latin-7") ; Maori
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("mk" "Cyrillic-ISO" iso-8859-5) ; Macedonian
|
|
|
|
|
("ml" "Malayalam" utf-8)
|
|
|
|
|
("mn" . "UTF-8") ; Mongolian
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; mo Moldavian
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("mr" "Devanagari" utf-8) ; Marathi
|
2001-11-16 13:06:51 +00:00
|
|
|
|
("ms" . "Latin-1") ; Malay
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
("mt" . "Latin-3") ; Maltese
|
|
|
|
|
; my Burmese
|
|
|
|
|
; na Nauru
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("nb" . "Latin-1") ; Norwegian
|
|
|
|
|
("ne" "Devanagari" utf-8) ; Nepali
|
|
|
|
|
("nl" "Dutch" iso-8859-1)
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
("no" . "Latin-1") ; Norwegian
|
2001-11-16 13:06:51 +00:00
|
|
|
|
("oc" . "Latin-1") ; Occitan
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("om_ET" . "UTF-8") ; (Afan) Oromo
|
|
|
|
|
("om" . "Latin-1") ; (Afan) Oromo
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; or Oriya
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("pa" . "UTF-8") ; Punjabi
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
("pl" . "Latin-2") ; Polish
|
|
|
|
|
; ps Pashto, Pushto
|
|
|
|
|
("pt" . "Latin-1") ; Portuguese
|
|
|
|
|
; qu Quechua
|
1999-10-22 22:51:33 +00:00
|
|
|
|
("rm" . "Latin-1") ; Rhaeto-Romanic
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; rn Kirundi
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("ro" "Romanian" iso-8859-2)
|
|
|
|
|
("ru_RU" "Russian" iso-8859-5)
|
|
|
|
|
("ru_UA" "Russian" koi8-u)
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; rw Kinyarwanda
|
|
|
|
|
("sa" . "Devanagari") ; Sanskrit
|
|
|
|
|
; sd Sindhi
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("se" . "UTF-8") ; Northern Sami
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; sg Sangho
|
|
|
|
|
("sh" . "Latin-2") ; Serbo-Croatian
|
|
|
|
|
; si Sinhalese
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("sid" . "UTF-8") ; Sidamo
|
|
|
|
|
("sk" "Slovak" iso-8859-2)
|
|
|
|
|
("sl" "Slovenian" iso-8859-2)
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; sm Samoan
|
|
|
|
|
; sn Shona
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("so_ET" "UTF-8") ; Somali
|
|
|
|
|
("so" "Latin-1") ; Somali
|
1999-10-22 22:51:33 +00:00
|
|
|
|
("sq" . "Latin-1") ; Albanian
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
("sr" . "Latin-2") ; Serbian (Latin alphabet)
|
|
|
|
|
; ss Siswati
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("st" . "Latin-1") ; Sesotho
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; su Sundanese
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("sv" "Swedish" iso-8859-1) ; Swedish
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
("sw" . "Latin-1") ; Swahili
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("ta" "Tamil" utf-8)
|
|
|
|
|
("te" . "UTF-8") ; Telugu
|
|
|
|
|
("tg" "Tajik" koi8-t)
|
|
|
|
|
("th" "Thai" tis-620)
|
|
|
|
|
("ti" "Ethiopic" utf-8) ; Tigrinya
|
|
|
|
|
("tig_ER" . "UTF-8") ; Tigre
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; tk Turkmen
|
1999-10-22 22:51:33 +00:00
|
|
|
|
("tl" . "Latin-1") ; Tagalog
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; tn Setswana
|
|
|
|
|
; to Tonga
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("tr" "Turkish" iso-8859-9)
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; ts Tsonga
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("tt" . "UTF-8") ; Tatar
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; tw Twi
|
|
|
|
|
; ug Uighur
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("uk" "Ukrainian" koi8-u)
|
|
|
|
|
("ur" . "UTF-8") ; Urdu
|
|
|
|
|
("uz_UZ@cyrillic" . "UTF-8"); Uzbek
|
2001-11-16 13:06:51 +00:00
|
|
|
|
("uz" . "Latin-1") ; Uzbek
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("vi" "Vietnamese" utf-8)
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; vo Volapuk
|
2002-07-24 22:20:49 +00:00
|
|
|
|
("wa" . "Latin-1") ; Walloon
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; wo Wolof
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("xh" . "Latin-1") ; Xhosa
|
2001-12-15 17:42:33 +00:00
|
|
|
|
("yi" . "Windows-1255") ; Yiddish
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
; yo Yoruba
|
|
|
|
|
; za Zhuang
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("zh_HK" . "Chinese-Big5")
|
2005-10-27 06:31:03 +00:00
|
|
|
|
; zh_HK/BIG5-HKSCS \
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("zh_TW" . "Chinese-Big5")
|
2005-10-27 06:31:03 +00:00
|
|
|
|
("zh_CN.GB2312" "Chinese-GB")
|
|
|
|
|
("zh_CN.GBK" "Chinese-GBK")
|
|
|
|
|
("zh_CN.GB18030" "Chinese-GB18030")
|
2006-11-27 07:39:29 +00:00
|
|
|
|
("zh_CN.UTF-8" . "Chinese-GBK")
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("zh_CN" . "Chinese-GB")
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
("zh" . "Chinese-GB")
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("zu" . "Latin-1") ; Zulu
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
|
|
|
|
|
;; ISO standard locales
|
|
|
|
|
("c$" . "ASCII")
|
|
|
|
|
("posix$" . "ASCII")
|
|
|
|
|
|
|
|
|
|
;; The "IPA" Emacs language environment does not correspond
|
|
|
|
|
;; to any ISO 639 code, so let it stand for itself.
|
|
|
|
|
("ipa$" . "IPA")
|
|
|
|
|
|
|
|
|
|
;; Nonstandard or obsolete language codes
|
|
|
|
|
("cz" . "Czech") ; e.g. Solaris 2.6
|
|
|
|
|
("ee" . "Latin-4") ; Estonian, e.g. X11R6.4
|
|
|
|
|
("iw" . "Hebrew") ; e.g. X11R6.4
|
2002-07-11 23:52:16 +00:00
|
|
|
|
("sp" . "Cyrillic-ISO") ; Serbian (Cyrillic alphabet), e.g. X11R6.4
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
("su" . "Latin-1") ; Finnish, e.g. Solaris 2.6
|
2000-11-24 20:46:48 +00:00
|
|
|
|
("jp" . "Japanese") ; e.g. MS Windows
|
2006-11-27 07:39:29 +00:00
|
|
|
|
("chs" . "Chinese-GBK") ; MS Windows Chinese Simplified
|
2001-10-31 23:23:33 +00:00
|
|
|
|
("cht" . "Chinese-BIG5") ; MS Windows Chinese Traditional
|
2006-04-08 09:53:18 +00:00
|
|
|
|
("gbz" . "UTF-8") ; MS Windows Dari Persian
|
|
|
|
|
("div" . "UTF-8") ; MS Windows Divehi (Maldives)
|
|
|
|
|
("wee" . "Latin-2") ; MS Windows Lower Sorbian
|
|
|
|
|
("wen" . "Latin-2") ; MS Windows Upper Sorbian
|
2001-11-16 13:33:12 +00:00
|
|
|
|
))
|
2005-03-15 02:32:39 +00:00
|
|
|
|
"Alist of locale regexps vs the corresponding languages and coding systems.
|
(toggle-enable-multibyte-characters, sort-coding-systems,
search-unencodable-char): Doc fixes.
(default-input-method, input-method-verbose-flag, input-method-highlight-flag):
Remove * in defcustom's docstrings.
(exit-language-environment-hook, set-default-coding-systems,
coding-system-change-eol-conversion, prefer-coding-system,
find-multibyte-characters, leim-list-entry-regexp, set-input-method,
input-method-exit-on-first-char, princ-list, locale-language-names,
locale-charset-language-names, define-char-code-property):
Fix typos in docstrings.
2007-05-29 00:14:53 +00:00
|
|
|
|
Each element has this form:
|
2005-03-15 02:32:39 +00:00
|
|
|
|
\(LOCALE-REGEXP LANG-ENV CODING-SYSTEM)
|
|
|
|
|
The first element whose LOCALE-REGEXP matches the start of a
|
(toggle-enable-multibyte-characters, sort-coding-systems,
search-unencodable-char): Doc fixes.
(default-input-method, input-method-verbose-flag, input-method-highlight-flag):
Remove * in defcustom's docstrings.
(exit-language-environment-hook, set-default-coding-systems,
coding-system-change-eol-conversion, prefer-coding-system,
find-multibyte-characters, leim-list-entry-regexp, set-input-method,
input-method-exit-on-first-char, princ-list, locale-language-names,
locale-charset-language-names, define-char-code-property):
Fix typos in docstrings.
2007-05-29 00:14:53 +00:00
|
|
|
|
downcased locale specifies the LANG-ENV \(language environment)
|
2005-03-15 02:32:39 +00:00
|
|
|
|
and CODING-SYSTEM corresponding to that locale. If there is no
|
|
|
|
|
appropriate language environment, the element may have this form:
|
|
|
|
|
\(LOCALE-REGEXP . LANG-ENV)
|
|
|
|
|
In this case, LANG-ENV is one of generic language environments for an
|
|
|
|
|
specific encoding such as \"Latin-1\" and \"UTF-8\".")
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
|
2001-11-16 13:06:51 +00:00
|
|
|
|
(defconst locale-charset-language-names
|
|
|
|
|
(purecopy
|
|
|
|
|
'((".*8859[-_]?1\\>" . "Latin-1")
|
|
|
|
|
(".*8859[-_]?2\\>" . "Latin-2")
|
|
|
|
|
(".*8859[-_]?3\\>" . "Latin-3")
|
|
|
|
|
(".*8859[-_]?4\\>" . "Latin-4")
|
|
|
|
|
(".*8859[-_]?9\\>" . "Latin-5")
|
|
|
|
|
(".*8859[-_]?14\\>" . "Latin-8")
|
|
|
|
|
(".*8859[-_]?15\\>" . "Latin-9")
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(".*utf\\(?:-?8\\)?\\>" . "UTF-8")
|
|
|
|
|
;; utf-8@euro exists, so put this last. (@euro really specifies
|
|
|
|
|
;; the currency, rather than the charset.)
|
2002-07-17 18:42:03 +00:00
|
|
|
|
(".*@euro\\>" . "Latin-9")))
|
1999-10-22 22:51:33 +00:00
|
|
|
|
"List of pairs of locale regexps and charset language names.
|
|
|
|
|
The first element whose locale regexp matches the start of a downcased locale
|
2004-04-16 12:51:06 +00:00
|
|
|
|
specifies the language name whose charset corresponds to that locale.
|
2005-03-15 02:32:39 +00:00
|
|
|
|
This language name is used if the locale is not listed in
|
(toggle-enable-multibyte-characters, sort-coding-systems,
search-unencodable-char): Doc fixes.
(default-input-method, input-method-verbose-flag, input-method-highlight-flag):
Remove * in defcustom's docstrings.
(exit-language-environment-hook, set-default-coding-systems,
coding-system-change-eol-conversion, prefer-coding-system,
find-multibyte-characters, leim-list-entry-regexp, set-input-method,
input-method-exit-on-first-char, princ-list, locale-language-names,
locale-charset-language-names, define-char-code-property):
Fix typos in docstrings.
2007-05-29 00:14:53 +00:00
|
|
|
|
`locale-language-names'.")
|
1999-10-22 22:51:33 +00:00
|
|
|
|
|
2001-11-16 13:06:51 +00:00
|
|
|
|
(defconst locale-preferred-coding-systems
|
|
|
|
|
(purecopy
|
2005-03-15 02:32:39 +00:00
|
|
|
|
'((".*8859[-_]?1\\>" . iso-8859-1)
|
|
|
|
|
(".*8859[-_]?2\\>" . iso-8859-2)
|
|
|
|
|
(".*8859[-_]?3\\>" . iso-8859-3)
|
|
|
|
|
(".*8859[-_]?4\\>" . iso-8859-4)
|
|
|
|
|
(".*8859[-_]?9\\>" . iso-8859-9)
|
|
|
|
|
(".*8859[-_]?14\\>" . iso-8859-14)
|
|
|
|
|
(".*8859[-_]?15\\>" . iso-8859-15)
|
|
|
|
|
(".*utf\\(?:-?8\\)?" . utf-8)
|
|
|
|
|
;; utf-8@euro exists, so put this after utf-8. (@euro really
|
|
|
|
|
;; specifies the currency, rather than the charset.)
|
|
|
|
|
(".*@euro" . iso-8859-15)
|
|
|
|
|
("koi8-?r" . koi8-r)
|
|
|
|
|
("koi8-?u" . koi8-u)
|
|
|
|
|
("tcvn" . tcvn)
|
2005-10-27 06:34:56 +00:00
|
|
|
|
("big5[-_]?hkscs" . big5-hkscs)
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("big5" . big5)
|
|
|
|
|
("euc-?tw" . euc-tw)
|
2008-12-01 11:07:41 +00:00
|
|
|
|
("euc-?cn" . euc-cn)
|
2005-10-27 06:34:56 +00:00
|
|
|
|
("gb2312" . gb2312)
|
|
|
|
|
("gbk" . gbk)
|
|
|
|
|
("gb18030" . gb18030)
|
2005-03-15 02:32:39 +00:00
|
|
|
|
("ja.*[._]euc" . japanese-iso-8bit)
|
2001-11-16 13:06:51 +00:00
|
|
|
|
("ja.*[._]jis7" . iso-2022-jp)
|
|
|
|
|
("ja.*[._]pck" . japanese-shift-jis)
|
|
|
|
|
("ja.*[._]sjis" . japanese-shift-jis)
|
2002-04-16 22:59:20 +00:00
|
|
|
|
("jpn" . japanese-shift-jis) ; MS-Windows uses this.
|
2005-03-15 02:32:39 +00:00
|
|
|
|
))
|
1999-10-22 22:51:33 +00:00
|
|
|
|
"List of pairs of locale regexps and preferred coding systems.
|
|
|
|
|
The first element whose locale regexp matches the start of a downcased locale
|
2005-03-15 02:32:39 +00:00
|
|
|
|
specifies the coding system to prefer when using that locale.
|
|
|
|
|
This coding system is used if the locale specifies a specific charset.")
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
|
|
|
|
|
(defun locale-name-match (key alist)
|
|
|
|
|
"Search for KEY in ALIST, which should be a list of regexp-value pairs.
|
|
|
|
|
Return the value corresponding to the first regexp that matches the
|
|
|
|
|
start of KEY, or nil if there is no match."
|
|
|
|
|
(let (element)
|
|
|
|
|
(while (and alist (not element))
|
2008-11-18 01:35:25 +00:00
|
|
|
|
(if (string-match-p (concat "\\`\\(?:" (car (car alist)) "\\)") key)
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
(setq element (car alist)))
|
|
|
|
|
(setq alist (cdr alist)))
|
|
|
|
|
(cdr element)))
|
|
|
|
|
|
2002-10-09 22:19:25 +00:00
|
|
|
|
(defun locale-charset-match-p (charset1 charset2)
|
2002-10-27 21:10:54 +00:00
|
|
|
|
"Whether charset names (strings) CHARSET1 and CHARSET2 are equivalent.
|
2002-10-09 22:19:25 +00:00
|
|
|
|
Matching is done ignoring case and any hyphens and underscores in the
|
|
|
|
|
names. E.g. `ISO_8859-1' and `iso88591' both match `iso-8859-1'."
|
|
|
|
|
(setq charset1 (replace-regexp-in-string "[-_]" "" charset1))
|
|
|
|
|
(setq charset2 (replace-regexp-in-string "[-_]" "" charset2))
|
|
|
|
|
(eq t (compare-strings charset1 nil nil charset2 nil nil t)))
|
|
|
|
|
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(defvar locale-charset-alist nil
|
|
|
|
|
"Coding system alist keyed on locale-style charset name.
|
|
|
|
|
Used by `locale-charset-to-coding-system'.")
|
|
|
|
|
|
|
|
|
|
(defun locale-charset-to-coding-system (charset)
|
|
|
|
|
"Find coding system corresponding to CHARSET.
|
|
|
|
|
CHARSET is any sort of non-Emacs charset name, such as might be used
|
|
|
|
|
in a locale codeset, or elsewhere. It is matched to a coding system
|
|
|
|
|
first by case-insensitive lookup in `locale-charset-alist'. Then
|
|
|
|
|
matches are looked for in the coding system list, treating case and
|
|
|
|
|
the characters `-' and `_' as insignificant. The coding system base
|
|
|
|
|
is returned. Thus, for instance, if charset \"ISO8859-2\",
|
|
|
|
|
`iso-latin-2' is returned."
|
2004-04-21 19:16:15 +00:00
|
|
|
|
(or (car (assoc-string charset locale-charset-alist t))
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(let ((cs coding-system-alist)
|
|
|
|
|
c)
|
|
|
|
|
(while (and (not c) cs)
|
|
|
|
|
(if (locale-charset-match-p charset (caar cs))
|
|
|
|
|
(setq c (intern (caar cs)))
|
|
|
|
|
(pop cs)))
|
|
|
|
|
(if c (coding-system-base c)))))
|
|
|
|
|
|
|
|
|
|
;; Fixme: This ought to deal with the territory part of the locale
|
|
|
|
|
;; too, for setting things such as calendar holidays, ps-print paper
|
|
|
|
|
;; size, spelling dictionary.
|
|
|
|
|
|
2008-02-08 20:43:16 +00:00
|
|
|
|
(defun locale-translate (locale)
|
|
|
|
|
"Expand LOCALE according to `locale-translation-file-name', if possible.
|
|
|
|
|
For example, translate \"swedish\" into \"sv_SE.ISO8859-1\"."
|
|
|
|
|
(if locale-translation-file-name
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(set-buffer-multibyte nil)
|
|
|
|
|
(insert-file-contents locale-translation-file-name)
|
|
|
|
|
(if (re-search-forward
|
|
|
|
|
(concat "^" (regexp-quote locale) ":?[ \t]+") nil t)
|
|
|
|
|
(buffer-substring (point) (line-end-position))
|
|
|
|
|
locale))
|
|
|
|
|
locale))
|
|
|
|
|
|
2007-05-16 07:12:33 +00:00
|
|
|
|
(defun set-locale-environment (&optional locale-name frame)
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
"Set up multi-lingual environment for using LOCALE-NAME.
|
2001-11-04 23:56:21 +00:00
|
|
|
|
This sets the language environment, the coding system priority,
|
|
|
|
|
the default input method and sometimes other things.
|
|
|
|
|
|
2002-10-09 22:19:25 +00:00
|
|
|
|
LOCALE-NAME should be a string which is the name of a locale supported
|
2004-04-16 12:51:06 +00:00
|
|
|
|
by the system. Often it is of the form xx_XX.CODE, where xx is a
|
2002-10-09 22:19:25 +00:00
|
|
|
|
language, XX is a country, and CODE specifies a character set and
|
|
|
|
|
coding system. For example, the locale name \"ja_JP.EUC\" might name
|
|
|
|
|
a locale for Japanese in Japan using the `japanese-iso-8bit'
|
|
|
|
|
coding-system. The name may also have a modifier suffix, e.g. `@euro'
|
|
|
|
|
or `@cyrillic'.
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
|
2001-11-04 23:56:21 +00:00
|
|
|
|
If LOCALE-NAME is nil, its value is taken from the environment
|
2002-07-24 22:20:49 +00:00
|
|
|
|
variables LC_ALL, LC_CTYPE and LANG (the first one that is set).
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
|
|
|
|
|
The locale names supported by your system can typically be found in a
|
2000-09-12 13:32:06 +00:00
|
|
|
|
directory named `/usr/share/locale' or `/usr/lib/locale'. LOCALE-NAME
|
2001-11-04 23:56:21 +00:00
|
|
|
|
will be translated according to the table specified by
|
2000-09-12 13:32:06 +00:00
|
|
|
|
`locale-translation-file-name'.
|
|
|
|
|
|
2007-05-16 07:12:33 +00:00
|
|
|
|
If FRAME is non-nil, only set the keyboard coding system and the
|
|
|
|
|
terminal coding system for the terminal of that frame, and don't
|
|
|
|
|
touch session-global parameters like the language environment.
|
2005-05-03 03:01:09 +00:00
|
|
|
|
|
2000-09-12 13:32:06 +00:00
|
|
|
|
See also `locale-charset-language-names', `locale-language-names',
|
|
|
|
|
`locale-preferred-coding-systems' and `locale-coding-system'."
|
2001-11-04 23:56:21 +00:00
|
|
|
|
(interactive "sSet environment for locale: ")
|
2003-02-04 13:24:35 +00:00
|
|
|
|
|
2000-04-25 23:16:28 +00:00
|
|
|
|
;; Do this at runtime for the sake of binaries possibly transported
|
|
|
|
|
;; to a system without X.
|
|
|
|
|
(setq locale-translation-file-name
|
|
|
|
|
(let ((files
|
2006-02-03 11:34:53 +00:00
|
|
|
|
'("/usr/share/X11/locale/locale.alias" ; e.g. X11R7
|
|
|
|
|
"/usr/lib/X11/locale/locale.alias" ; e.g. X11R6.4
|
2004-04-16 12:51:06 +00:00
|
|
|
|
"/usr/X11R6/lib/X11/locale/locale.alias" ; XFree86, e.g. RedHat 4.2
|
2000-04-25 23:16:28 +00:00
|
|
|
|
"/usr/openwin/lib/locale/locale.alias" ; e.g. Solaris 2.6
|
|
|
|
|
;;
|
|
|
|
|
;; The following name appears after the X-related names above,
|
|
|
|
|
;; since the X-related names are what X actually uses.
|
|
|
|
|
"/usr/share/locale/locale.alias" ; GNU/Linux sans X
|
|
|
|
|
)))
|
|
|
|
|
(while (and files (not (file-exists-p (car files))))
|
|
|
|
|
(setq files (cdr files)))
|
|
|
|
|
(car files)))
|
|
|
|
|
|
2001-03-21 10:19:37 +00:00
|
|
|
|
(let ((locale locale-name))
|
|
|
|
|
|
|
|
|
|
(unless locale
|
|
|
|
|
;; Use the first of these three environment variables
|
|
|
|
|
;; that has a nonempty value.
|
|
|
|
|
(let ((vars '("LC_ALL" "LC_CTYPE" "LANG")))
|
2003-01-05 00:38:05 +00:00
|
|
|
|
(while (and vars
|
|
|
|
|
(= 0 (length locale))) ; nil or empty string
|
2007-05-16 07:12:33 +00:00
|
|
|
|
(setq locale (getenv (pop vars) frame)))))
|
2001-03-21 10:19:37 +00:00
|
|
|
|
|
|
|
|
|
(when locale
|
2008-02-08 20:43:16 +00:00
|
|
|
|
(setq locale (locale-translate locale))
|
2001-03-21 10:19:37 +00:00
|
|
|
|
|
|
|
|
|
;; Leave the system locales alone if the caller did not specify
|
|
|
|
|
;; an explicit locale name, as their defaults are set from
|
|
|
|
|
;; LC_MESSAGES and LC_TIME, not LC_CTYPE, and the user might not
|
|
|
|
|
;; want to set them to the same value as LC_CTYPE.
|
|
|
|
|
(when locale-name
|
|
|
|
|
(setq system-messages-locale locale)
|
2008-09-01 07:15:03 +00:00
|
|
|
|
(setq system-time-locale locale))
|
|
|
|
|
|
|
|
|
|
(if (string-match "^[a-z][a-z]" locale)
|
|
|
|
|
(setq current-iso639-language (intern (match-string 0 locale)))))
|
2001-03-21 10:19:37 +00:00
|
|
|
|
|
2008-02-08 20:43:16 +00:00
|
|
|
|
(setq woman-locale
|
|
|
|
|
(or system-messages-locale
|
2008-02-17 23:13:59 +00:00
|
|
|
|
(let ((msglocale (getenv "LC_MESSAGES" frame)))
|
2008-02-08 20:43:16 +00:00
|
|
|
|
(if (zerop (length msglocale))
|
|
|
|
|
locale
|
|
|
|
|
(locale-translate msglocale)))))
|
|
|
|
|
|
|
|
|
|
(when locale
|
2001-03-21 10:19:37 +00:00
|
|
|
|
(setq locale (downcase locale))
|
|
|
|
|
|
|
|
|
|
(let ((language-name
|
|
|
|
|
(locale-name-match locale locale-language-names))
|
|
|
|
|
(charset-language-name
|
|
|
|
|
(locale-name-match locale locale-charset-language-names))
|
2006-04-08 08:15:34 +00:00
|
|
|
|
(default-eol-type (coding-system-eol-type
|
2009-08-28 04:21:14 +00:00
|
|
|
|
(default-value 'buffer-file-coding-system)))
|
2001-03-21 10:19:37 +00:00
|
|
|
|
(coding-system
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(or (locale-name-match locale locale-preferred-coding-systems)
|
|
|
|
|
(when locale
|
|
|
|
|
(if (string-match "\\.\\([^@]+\\)" locale)
|
|
|
|
|
(locale-charset-to-coding-system
|
2008-07-27 18:24:48 +00:00
|
|
|
|
(match-string 1 locale)))))))
|
2001-03-21 10:19:37 +00:00
|
|
|
|
|
2005-03-15 02:32:39 +00:00
|
|
|
|
(if (consp language-name)
|
|
|
|
|
;; locale-language-names specify both lang-env and coding.
|
|
|
|
|
;; But, what specified in locale-preferred-coding-systems
|
|
|
|
|
;; has higher priority.
|
|
|
|
|
(setq coding-system (or coding-system
|
|
|
|
|
(nth 1 language-name))
|
|
|
|
|
language-name (car language-name))
|
|
|
|
|
;; Otherwise, if locale is not listed in locale-language-names,
|
|
|
|
|
;; use what listed in locale-charset-language-names.
|
|
|
|
|
(if (not language-name)
|
|
|
|
|
(setq language-name charset-language-name)))
|
2001-03-21 10:19:37 +00:00
|
|
|
|
|
2006-04-08 08:15:34 +00:00
|
|
|
|
;; If a specific EOL conversion was specified in the default
|
|
|
|
|
;; buffer-file-coding-system, preserve it in the coding system
|
|
|
|
|
;; we will be using from now on.
|
2006-04-10 19:34:25 +00:00
|
|
|
|
(if (and (memq default-eol-type '(0 1 2 unix dos mac))
|
|
|
|
|
coding-system
|
|
|
|
|
(coding-system-p coding-system))
|
2006-04-08 08:15:34 +00:00
|
|
|
|
(setq coding-system (coding-system-change-eol-conversion
|
|
|
|
|
coding-system default-eol-type)))
|
|
|
|
|
|
2001-03-21 10:19:37 +00:00
|
|
|
|
(when language-name
|
|
|
|
|
|
|
|
|
|
;; Set up for this character set. This is now the right way
|
|
|
|
|
;; to do it for both unibyte and multibyte modes.
|
2007-05-16 07:12:33 +00:00
|
|
|
|
(unless frame
|
2005-05-03 03:01:09 +00:00
|
|
|
|
(set-language-environment language-name))
|
2001-03-21 10:19:37 +00:00
|
|
|
|
|
2009-09-03 06:54:57 +00:00
|
|
|
|
;; If the default enable-multibyte-characters is nil,
|
2001-03-21 10:19:37 +00:00
|
|
|
|
;; we are using single-byte characters,
|
|
|
|
|
;; so the display table and terminal coding system are irrelevant.
|
2009-09-03 06:54:57 +00:00
|
|
|
|
(when (default-value 'enable-multibyte-characters)
|
2005-03-25 15:41:42 +00:00
|
|
|
|
(set-display-table-and-terminal-coding-system
|
2007-05-16 07:12:33 +00:00
|
|
|
|
language-name coding-system frame))
|
2001-03-21 10:19:37 +00:00
|
|
|
|
|
2002-12-19 12:52:51 +00:00
|
|
|
|
;; Set the `keyboard-coding-system' if appropriate (tty
|
|
|
|
|
;; only). At least X and MS Windows can generate
|
|
|
|
|
;; multilingual input.
|
2005-05-03 01:49:33 +00:00
|
|
|
|
;; XXX This was disabled unless `window-system', but that
|
2008-06-27 07:34:53 +00:00
|
|
|
|
;; leads to buggy behavior when a tty frame is opened
|
2005-05-03 01:49:33 +00:00
|
|
|
|
;; later. Setting the keyboard coding system has no adverse
|
|
|
|
|
;; effect on X, so let's do it anyway. -- Lorentey
|
|
|
|
|
(let ((kcs (or coding-system
|
|
|
|
|
(car (get-language-info language-name
|
|
|
|
|
'coding-system)))))
|
2007-05-16 07:12:33 +00:00
|
|
|
|
(if kcs (set-keyboard-coding-system kcs frame)))
|
2005-03-23 12:53:42 +00:00
|
|
|
|
|
2007-05-16 07:12:33 +00:00
|
|
|
|
(unless frame
|
2005-05-03 03:01:09 +00:00
|
|
|
|
(setq locale-coding-system
|
|
|
|
|
(car (get-language-info language-name 'coding-priority)))))
|
2001-03-21 10:19:37 +00:00
|
|
|
|
|
2007-05-16 07:12:33 +00:00
|
|
|
|
(when (and (not frame)
|
2005-05-03 03:01:09 +00:00
|
|
|
|
coding-system
|
2005-03-15 02:32:39 +00:00
|
|
|
|
(not (coding-system-equal coding-system
|
|
|
|
|
locale-coding-system)))
|
2001-03-21 10:19:37 +00:00
|
|
|
|
(prefer-coding-system coding-system)
|
2006-12-13 07:04:32 +00:00
|
|
|
|
;; Fixme: perhaps prefer-coding-system should set this too.
|
|
|
|
|
;; But it's not the time to do such a fundamental change.
|
|
|
|
|
(setq default-sendmail-coding-system coding-system)
|
2008-04-08 14:57:02 +00:00
|
|
|
|
(setq locale-coding-system coding-system))))
|
2003-02-14 18:42:31 +00:00
|
|
|
|
|
2004-11-08 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
* w32select.c: Summary: Thorough rework to implement Unicode
clipboard operations and delayed rendering.
Drop last_clipboard_text and related code, keep track of
ownership via clipboard_owner instead. Drop old #if0
sections.
(DEFAULT_LCID, ANSICP, OEMCP, QUNICODE, QANSICP, QOEMCP)
(clipboard_owner, modifying_clipboard, cfg_coding_system)
(cfg_codepage, cfg_lcid, cfg_clipboard_type, current_text)
(current_coding_system, current_requires_encoding)
(current_num_nls, current_clipboard_type, current_lcid): New
static variables.
(convert_to_handle_as_ascii, convert_to_handle_as_coded)
(render, render_all, run_protected, lisp_error_handler)
(owner_callback, create_owner, setup_config)
(enum_locale_callback, cp_from_locale, coding_from_cp): New
local functions.
(term_w32select, globals_of_w32select): New global functions.
(Fw32_set_clipboard_data): Ignore parameter FRAME, use
clipboard_owner instead. Use delayed rendering and provide
all text formats. Provide CF_LOCALE if necessary.
(Fw32_get_clipboard_data): Handle CF_UNICODETEXT and
CF_LOCALE. Fall back to CF_TEXT, if CF_UNICODETEXT is not
available. Force DOS line-ends for decoding.
(Fx_selection_exists_p): Handle CF_UNICODETEXT.
(syms_of_w32select): Init and register new variables.
* w32.h: Add prototypes for globals_of_w32select and
term_w32select. Make the neighboring K&R declarations into
prototypes, too.
* emacs.c: Include w32.h to get function prototypes.
(main): Call globals_of_w32select.
* w32.c (term_ntproc): Call term_w32select.
* mule-cmds.el (set-locale-environment): Remove call to
set-selection-coding-system on Windows.
* s/ms-w32.h: Guard MSC-specific #pragmas with an #ifdef.
2005-02-15 23:19:26 +00:00
|
|
|
|
;; On Windows, override locale-coding-system,
|
2007-11-14 10:26:09 +00:00
|
|
|
|
;; default-file-name-coding-system, keyboard-coding-system,
|
|
|
|
|
;; terminal-coding-system with system codepage.
|
2004-05-09 15:39:00 +00:00
|
|
|
|
(when (boundp 'w32-ansi-code-page)
|
2004-05-09 14:57:44 +00:00
|
|
|
|
(let ((code-page-coding (intern (format "cp%d" w32-ansi-code-page))))
|
|
|
|
|
(when (coding-system-p code-page-coding)
|
2007-05-16 07:12:33 +00:00
|
|
|
|
(unless frame (setq locale-coding-system code-page-coding))
|
|
|
|
|
(set-keyboard-coding-system code-page-coding frame)
|
2007-11-21 04:55:58 +00:00
|
|
|
|
(set-terminal-coding-system code-page-coding frame)
|
2007-11-16 18:23:20 +00:00
|
|
|
|
;; Set default-file-name-coding-system last, so that Emacs
|
|
|
|
|
;; doesn't try to use cpNNNN when it defines keyboard and
|
|
|
|
|
;; terminal encoding. That's because the above two lines
|
|
|
|
|
;; will want to load code-pages.el, where cpNNNN are
|
|
|
|
|
;; defined; if default-file-name-coding-system were set to
|
|
|
|
|
;; cpNNNN while these two lines run, Emacs will want to use
|
|
|
|
|
;; it for encoding the file name it wants to load. And that
|
|
|
|
|
;; will fail, since cpNNNN is not yet usable until
|
|
|
|
|
;; code-pages.el finishes loading.
|
|
|
|
|
(setq default-file-name-coding-system code-page-coding))))
|
2004-05-09 14:57:44 +00:00
|
|
|
|
|
2005-02-03 16:06:34 +00:00
|
|
|
|
(when (eq system-type 'darwin)
|
2005-03-25 15:41:42 +00:00
|
|
|
|
;; On Darwin, file names are always encoded in utf-8, no matter
|
|
|
|
|
;; the locale.
|
|
|
|
|
(setq default-file-name-coding-system 'utf-8)
|
|
|
|
|
;; Mac OS X's Terminal.app by default uses utf-8 regardless of
|
|
|
|
|
;; the locale.
|
|
|
|
|
(when (and (null window-system)
|
2007-05-16 07:12:33 +00:00
|
|
|
|
(equal (getenv "TERM_PROGRAM" frame) "Apple_Terminal"))
|
2005-03-25 15:41:42 +00:00
|
|
|
|
(set-terminal-coding-system 'utf-8)
|
|
|
|
|
(set-keyboard-coding-system 'utf-8)))
|
2005-02-03 16:06:34 +00:00
|
|
|
|
|
2003-02-14 18:42:31 +00:00
|
|
|
|
;; Default to A4 paper if we're not in a C, POSIX or US locale.
|
2003-07-21 09:54:34 +00:00
|
|
|
|
;; (See comments in Flocale_info.)
|
2007-05-16 07:12:33 +00:00
|
|
|
|
(unless frame
|
2005-05-03 03:01:09 +00:00
|
|
|
|
(let ((locale locale)
|
|
|
|
|
(paper (locale-info 'paper)))
|
|
|
|
|
(if paper
|
|
|
|
|
;; This will always be null at the time of writing.
|
|
|
|
|
(cond
|
|
|
|
|
((equal paper '(216 279))
|
|
|
|
|
(setq ps-paper-type 'letter))
|
|
|
|
|
((equal paper '(210 297))
|
|
|
|
|
(setq ps-paper-type 'a4)))
|
|
|
|
|
(let ((vars '("LC_ALL" "LC_PAPER" "LANG")))
|
|
|
|
|
(while (and vars (= 0 (length locale)))
|
2007-05-16 07:12:33 +00:00
|
|
|
|
(setq locale (getenv (pop vars) frame))))
|
2005-05-03 03:01:09 +00:00
|
|
|
|
(when locale
|
|
|
|
|
;; As of glibc 2.2.5, these are the only US Letter locales,
|
|
|
|
|
;; and the rest are A4.
|
|
|
|
|
(setq ps-paper-type
|
|
|
|
|
(or (locale-name-match locale '(("c$" . letter)
|
|
|
|
|
("posix$" . letter)
|
|
|
|
|
(".._us" . letter)
|
|
|
|
|
(".._pr" . letter)
|
|
|
|
|
(".._ca" . letter)
|
|
|
|
|
("enu$" . letter) ; Windows
|
|
|
|
|
("esu$" . letter)
|
|
|
|
|
("enc$" . letter)
|
|
|
|
|
("frc$" . letter)))
|
|
|
|
|
'a4)))))))
|
2003-02-14 18:42:31 +00:00
|
|
|
|
nil)
|
* international/mule-cmds.el (global-map):
Do not use backquote, because that makes a bootstrapping
problem if you need to recompile all Lisp files using interpreted code.
* international/mule.el (charset-id, charset-bytes,
charset-dimension, charset-chars, charset-width,
charset-direction, charset-iso-final-char,
charset-iso-graphic-plane, charset-reverse-charset,
charset-short-name, charset-long-name, charset-description,
charset-plist): Likewise.
* international/mule-cmds.el
(set-display-table-and-terminal-coding-system): New function,
containing code migrated out of set-language-environment.
(set-language-environment, set-locale-environment): Use it.
(locale-translation-file-name): Moved here from startup.el.
(locale-language-names, locale-preferred-coding-systems):
New vars.
(locale-name-match, set-locale-environment): New functions.
1999-10-19 07:20:09 +00:00
|
|
|
|
|
2005-01-30 11:29:37 +00:00
|
|
|
|
;;; Character property
|
|
|
|
|
|
|
|
|
|
;; Each element has the form (PROP . TABLE).
|
|
|
|
|
;; PROP is a symbol representing a character property.
|
|
|
|
|
;; TABLE is a char-table containing the property value for each character.
|
|
|
|
|
;; TABLE may be a name of file to load to build a char-table.
|
|
|
|
|
;; Don't modify this variable directly but use `define-char-code-property'.
|
|
|
|
|
|
|
|
|
|
(defvar char-code-property-alist nil
|
|
|
|
|
"Alist of character property name vs char-table containing property values.
|
|
|
|
|
Internal use only.")
|
|
|
|
|
|
|
|
|
|
(put 'char-code-property-table 'char-table-extra-slots 5)
|
|
|
|
|
|
|
|
|
|
(defun define-char-code-property (name table &optional docstring)
|
|
|
|
|
"Define NAME as a character code property given by TABLE.
|
|
|
|
|
TABLE is a char-table of purpose `char-code-property-table' with
|
|
|
|
|
these extra slots:
|
|
|
|
|
1st: NAME.
|
|
|
|
|
2nd: Function to call to get a property value of a character.
|
(toggle-enable-multibyte-characters, sort-coding-systems,
search-unencodable-char): Doc fixes.
(default-input-method, input-method-verbose-flag, input-method-highlight-flag):
Remove * in defcustom's docstrings.
(exit-language-environment-hook, set-default-coding-systems,
coding-system-change-eol-conversion, prefer-coding-system,
find-multibyte-characters, leim-list-entry-regexp, set-input-method,
input-method-exit-on-first-char, princ-list, locale-language-names,
locale-charset-language-names, define-char-code-property):
Fix typos in docstrings.
2007-05-29 00:14:53 +00:00
|
|
|
|
It is called with three arguments CHAR, VAL, and TABLE, where
|
2005-01-30 11:29:37 +00:00
|
|
|
|
CHAR is a character, VAL is the value of (aref TABLE CHAR).
|
|
|
|
|
3rd: Function to call to put a property value of a character.
|
|
|
|
|
It is called with the same arguments as above.
|
|
|
|
|
4th: Function to call to get a description string of a property value.
|
|
|
|
|
It is called with one argument VALUE, a property value.
|
|
|
|
|
5th: Data used by the above functions.
|
|
|
|
|
|
|
|
|
|
TABLE may be a name of file to load to build a char-table. The
|
|
|
|
|
file should contain a call of `define-char-code-property' with a
|
|
|
|
|
char-table of the above format as the argument TABLE.
|
|
|
|
|
|
|
|
|
|
TABLE may also be nil, in which case no property value is pre-assigned.
|
|
|
|
|
|
2008-11-04 17:11:06 +00:00
|
|
|
|
Optional 3rd argument DOCSTRING is a documentation string of the property.
|
2005-01-30 11:29:37 +00:00
|
|
|
|
|
|
|
|
|
See also the documentation of `get-char-code-property' and
|
|
|
|
|
`put-char-code-property'."
|
|
|
|
|
(or (symbolp name)
|
|
|
|
|
(error "Not a symbol: %s" name))
|
|
|
|
|
(if (char-table-p table)
|
|
|
|
|
(or (and (eq (char-table-subtype table) 'char-code-property-table)
|
|
|
|
|
(eq (char-table-extra-slot table 0) name))
|
|
|
|
|
(error "Invalid char-table: %s" table))
|
|
|
|
|
(or (stringp table)
|
|
|
|
|
(error "Not a char-table nor a file name: %s" table)))
|
2009-11-11 06:22:30 +00:00
|
|
|
|
(if (stringp table) (setq table (purecopy table)))
|
2005-01-30 11:29:37 +00:00
|
|
|
|
(let ((slot (assq name char-code-property-alist)))
|
|
|
|
|
(if slot
|
|
|
|
|
(setcdr slot table)
|
|
|
|
|
(setq char-code-property-alist
|
|
|
|
|
(cons (cons name table) char-code-property-alist))))
|
2009-10-24 06:32:03 +00:00
|
|
|
|
(put name 'char-code-property-documentation (purecopy docstring)))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
(defvar char-code-property-table
|
|
|
|
|
(make-char-table 'char-code-property-table)
|
|
|
|
|
"Char-table containing a property list of each character code.
|
2005-01-30 11:29:37 +00:00
|
|
|
|
This table is used for properties not listed in `char-code-property-alist'.
|
1997-02-20 07:02:49 +00:00
|
|
|
|
See also the documentation of `get-char-code-property' and
|
1997-08-02 21:59:55 +00:00
|
|
|
|
`put-char-code-property'.")
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
(defun get-char-code-property (char propname)
|
2005-01-30 11:29:37 +00:00
|
|
|
|
"Return the value of CHAR's PROPNAME property."
|
|
|
|
|
(let ((slot (assq propname char-code-property-alist)))
|
|
|
|
|
(if slot
|
|
|
|
|
(let (table value func)
|
|
|
|
|
(if (stringp (cdr slot))
|
2008-11-18 01:35:25 +00:00
|
|
|
|
(load (cdr slot) nil t))
|
2005-01-30 11:29:37 +00:00
|
|
|
|
(setq table (cdr slot)
|
|
|
|
|
value (aref table char)
|
|
|
|
|
func (char-table-extra-slot table 1))
|
|
|
|
|
(if (functionp func)
|
|
|
|
|
(setq value (funcall func char value table)))
|
|
|
|
|
value)
|
|
|
|
|
(plist-get (aref char-code-property-table char) propname))))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
(defun put-char-code-property (char propname value)
|
2005-01-30 11:29:37 +00:00
|
|
|
|
"Store CHAR's PROPNAME property with VALUE.
|
1997-02-20 07:02:49 +00:00
|
|
|
|
It can be retrieved with `(get-char-code-property CHAR PROPNAME)'."
|
2005-01-30 11:29:37 +00:00
|
|
|
|
(let ((slot (assq propname char-code-property-alist)))
|
|
|
|
|
(if slot
|
|
|
|
|
(let (table func)
|
|
|
|
|
(if (stringp (cdr slot))
|
2008-11-18 01:35:25 +00:00
|
|
|
|
(load (cdr slot) nil t))
|
2005-01-30 11:29:37 +00:00
|
|
|
|
(setq table (cdr slot)
|
|
|
|
|
func (char-table-extra-slot table 2))
|
|
|
|
|
(if (functionp func)
|
|
|
|
|
(funcall func char value table)
|
|
|
|
|
(aset table char value)))
|
|
|
|
|
(let* ((plist (aref char-code-property-table char))
|
|
|
|
|
(x (plist-put plist propname value)))
|
|
|
|
|
(or (eq x plist)
|
|
|
|
|
(aset char-code-property-table char x))))
|
|
|
|
|
value))
|
|
|
|
|
|
|
|
|
|
(defun char-code-property-description (prop value)
|
|
|
|
|
"Return a description string of character property PROP's value VALUE.
|
|
|
|
|
If there's no description string for VALUE, return nil."
|
|
|
|
|
(let ((slot (assq prop char-code-property-alist)))
|
|
|
|
|
(if slot
|
|
|
|
|
(let (table func)
|
|
|
|
|
(if (stringp (cdr slot))
|
2008-11-18 01:35:25 +00:00
|
|
|
|
(load (cdr slot) nil t))
|
2005-01-30 11:29:37 +00:00
|
|
|
|
(setq table (cdr slot)
|
|
|
|
|
func (char-table-extra-slot table 3))
|
|
|
|
|
(if (functionp func)
|
|
|
|
|
(funcall func value))))))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
1999-02-25 13:26:55 +00:00
|
|
|
|
|
|
|
|
|
;; Pretty description of encoded string
|
|
|
|
|
|
|
|
|
|
;; Alist of ISO 2022 control code vs the corresponding mnemonic string.
|
2009-11-11 06:36:41 +00:00
|
|
|
|
(defconst iso-2022-control-alist
|
1999-02-25 13:26:55 +00:00
|
|
|
|
'((?\x1b . "ESC")
|
|
|
|
|
(?\x0e . "SO")
|
|
|
|
|
(?\x0f . "SI")
|
|
|
|
|
(?\x8e . "SS2")
|
|
|
|
|
(?\x8f . "SS3")
|
|
|
|
|
(?\x9b . "CSI")))
|
|
|
|
|
|
|
|
|
|
(defun encoded-string-description (str coding-system)
|
|
|
|
|
"Return a pretty description of STR that is encoded by CODING-SYSTEM."
|
|
|
|
|
(setq str (string-as-unibyte str))
|
2000-04-03 04:05:41 +00:00
|
|
|
|
(mapconcat
|
2002-06-27 18:40:25 +00:00
|
|
|
|
(if (and coding-system (eq (coding-system-type coding-system) 'iso-2022))
|
2000-04-03 04:05:41 +00:00
|
|
|
|
;; Try to get a pretty description for ISO 2022 escape sequences.
|
|
|
|
|
(function (lambda (x) (or (cdr (assq x iso-2022-control-alist))
|
2005-11-20 07:48:44 +00:00
|
|
|
|
(format "#x%02X" x))))
|
|
|
|
|
(function (lambda (x) (format "#x%02X" x))))
|
2000-04-03 04:05:41 +00:00
|
|
|
|
str " "))
|
1999-02-25 13:26:55 +00:00
|
|
|
|
|
2008-08-01 12:46:30 +00:00
|
|
|
|
(defun encode-coding-char (char coding-system &optional charset)
|
1999-02-25 13:26:55 +00:00
|
|
|
|
"Encode CHAR by CODING-SYSTEM and return the resulting string.
|
2008-08-01 12:46:30 +00:00
|
|
|
|
If CODING-SYSTEM can't safely encode CHAR, return nil.
|
|
|
|
|
The 3rd optional argument CHARSET, if non-nil, is a charset preferred
|
|
|
|
|
on encoding."
|
2008-06-26 07:37:15 +00:00
|
|
|
|
(let* ((str1 (string-as-multibyte (string char)))
|
|
|
|
|
(str2 (string-as-multibyte (string char char)))
|
|
|
|
|
(found (find-coding-systems-string str1))
|
1999-02-25 13:26:55 +00:00
|
|
|
|
enc1 enc2 i1 i2)
|
2008-06-26 07:37:15 +00:00
|
|
|
|
(if (and (consp found)
|
|
|
|
|
(eq (car found) 'undecided))
|
|
|
|
|
str1
|
|
|
|
|
(when (memq (coding-system-base coding-system) found)
|
|
|
|
|
;; We must find the encoded string of CHAR. But, just encoding
|
|
|
|
|
;; CHAR will put extra control sequences (usually to designate
|
|
|
|
|
;; ASCII charset) at the tail if type of CODING is ISO 2022.
|
|
|
|
|
;; To exclude such tailing bytes, we at first encode one-char
|
|
|
|
|
;; string and two-char string, then check how many bytes at the
|
|
|
|
|
;; tail of both encoded strings are the same.
|
|
|
|
|
|
2008-08-01 12:46:30 +00:00
|
|
|
|
(when charset
|
|
|
|
|
(put-text-property 0 1 'charset charset str1)
|
|
|
|
|
(put-text-property 0 2 'charset charset str2))
|
2008-06-26 07:37:15 +00:00
|
|
|
|
(setq enc1 (encode-coding-string str1 coding-system)
|
|
|
|
|
i1 (length enc1)
|
|
|
|
|
enc2 (encode-coding-string str2 coding-system)
|
|
|
|
|
i2 (length enc2))
|
|
|
|
|
(while (and (> i1 0) (= (aref enc1 (1- i1)) (aref enc2 (1- i2))))
|
|
|
|
|
(setq i1 (1- i1) i2 (1- i2)))
|
|
|
|
|
|
|
|
|
|
;; Now (substring enc1 i1) and (substring enc2 i2) are the same,
|
|
|
|
|
;; and they are the extra control sequences at the tail to
|
|
|
|
|
;; exclude.
|
|
|
|
|
(substring enc2 0 i2)))))
|
1999-02-25 13:26:55 +00:00
|
|
|
|
|
2002-05-31 21:55:24 +00:00
|
|
|
|
;; Backwards compatibility. These might be better with :init-value t,
|
|
|
|
|
;; but that breaks loadup.
|
|
|
|
|
(define-minor-mode unify-8859-on-encoding-mode
|
|
|
|
|
"Obsolete."
|
|
|
|
|
:group 'mule
|
|
|
|
|
:global t)
|
|
|
|
|
(define-minor-mode unify-8859-on-decoding-mode
|
|
|
|
|
"Obsolete."
|
|
|
|
|
:group 'mule
|
|
|
|
|
:global t)
|
1999-02-25 13:26:55 +00:00
|
|
|
|
|
2010-06-04 01:38:12 +00:00
|
|
|
|
(defvar nonascii-insert-offset 0)
|
|
|
|
|
(make-obsolete-variable 'nonascii-insert-offset "do not use it." "23.1")
|
|
|
|
|
(defvar nonascii-translation-table nil)
|
|
|
|
|
(make-obsolete-variable 'nonascii-translation-table "do not use it." "23.1")
|
2002-08-15 02:27:11 +00:00
|
|
|
|
|
2008-07-29 14:46:18 +00:00
|
|
|
|
(defvar ucs-names nil
|
|
|
|
|
"Alist of cached (CHAR-NAME . CHAR-CODE) pairs.")
|
|
|
|
|
|
|
|
|
|
(defun ucs-names ()
|
|
|
|
|
"Return alist of (CHAR-NAME . CHAR-CODE) pairs cached in `ucs-names'."
|
|
|
|
|
(or ucs-names
|
2009-12-09 00:57:02 +00:00
|
|
|
|
(let ((bmp-ranges
|
|
|
|
|
'((#x0000 . #x33FF)
|
2010-06-09 15:46:41 +00:00
|
|
|
|
;; (#x3400 . #x4DBF) CJK Ideographs Extension A
|
2009-12-09 00:57:02 +00:00
|
|
|
|
(#x4DC0 . #x4DFF)
|
2010-06-09 15:46:41 +00:00
|
|
|
|
;; (#x4E00 . #x9FFF) CJK Unified Ideographs
|
|
|
|
|
(#xA000 . #xD7FF)
|
2009-12-09 00:57:02 +00:00
|
|
|
|
;; (#xD800 . #xFAFF) Surrogate/Private
|
|
|
|
|
(#xFB00 . #xFFFD)))
|
|
|
|
|
(upper-ranges
|
|
|
|
|
'((#x10000 . #x134FF)
|
2010-06-09 15:46:41 +00:00
|
|
|
|
;; (#x13500 . #x167FF) unused
|
|
|
|
|
(#x16800 . #x16A3F)
|
|
|
|
|
;; (#x16A40 . #x1AFFF) unused
|
|
|
|
|
(#x1B000 . #x1B0FF)
|
|
|
|
|
;; (#x1B100 . #x1CFFF) unused
|
2009-12-09 00:57:02 +00:00
|
|
|
|
(#x1D000 . #x1FFFF)
|
2010-06-09 15:46:41 +00:00
|
|
|
|
;; (#x20000 . #xDFFFF) CJK Ideograph Extension A, B, etc, unused
|
2009-12-09 00:57:02 +00:00
|
|
|
|
(#xE0000 . #xE01FF)))
|
|
|
|
|
(gc-cons-threshold 10000000)
|
|
|
|
|
c end name names)
|
|
|
|
|
(dolist (range bmp-ranges)
|
|
|
|
|
(setq c (car range)
|
|
|
|
|
end (cdr range))
|
|
|
|
|
(while (<= c end)
|
|
|
|
|
(if (setq name (get-char-code-property c 'name))
|
|
|
|
|
(push (cons name c) names))
|
|
|
|
|
(if (setq name (get-char-code-property c 'old-name))
|
|
|
|
|
(push (cons name c) names))
|
|
|
|
|
(setq c (1+ c))))
|
|
|
|
|
(dolist (range upper-ranges)
|
|
|
|
|
(setq c (car range)
|
|
|
|
|
end (cdr range))
|
|
|
|
|
(while (<= c end)
|
|
|
|
|
(if (setq name (get-char-code-property c 'name))
|
|
|
|
|
(push (cons name c) names))
|
|
|
|
|
(setq c (1+ c))))
|
2009-12-07 16:53:48 +00:00
|
|
|
|
(setq ucs-names names))))
|
2008-07-29 14:46:18 +00:00
|
|
|
|
|
|
|
|
|
(defvar ucs-completions (lazy-completion-table ucs-completions ucs-names)
|
|
|
|
|
"Lazy completion table for completing on Unicode character names.")
|
2008-11-17 17:46:22 +00:00
|
|
|
|
(put 'ucs-completions 'risky-local-variable t)
|
2008-07-29 14:46:18 +00:00
|
|
|
|
|
|
|
|
|
(defun read-char-by-name (prompt)
|
|
|
|
|
"Read a character by its Unicode name or hex number string.
|
2008-07-31 16:52:11 +00:00
|
|
|
|
Display PROMPT and read a string that represents a character by its
|
|
|
|
|
Unicode property `name' or `old-name'. You can type a few of first
|
|
|
|
|
letters of the Unicode name and use completion. This function also
|
|
|
|
|
accepts a hexadecimal number of Unicode code point or a number in
|
|
|
|
|
hash notation, e.g. #o21430 for octal, #x2318 for hex, or #10r8984
|
|
|
|
|
for decimal. Returns a character as a number."
|
2008-07-29 14:46:18 +00:00
|
|
|
|
(let* ((completion-ignore-case t)
|
|
|
|
|
(input (completing-read prompt ucs-completions)))
|
2008-07-31 16:52:11 +00:00
|
|
|
|
(cond
|
2008-11-18 01:35:25 +00:00
|
|
|
|
((string-match-p "^[0-9a-fA-F]+$" input)
|
2008-07-31 16:52:11 +00:00
|
|
|
|
(string-to-number input 16))
|
2008-11-18 01:35:25 +00:00
|
|
|
|
((string-match-p "^#" input)
|
2008-07-31 16:52:11 +00:00
|
|
|
|
(read input))
|
|
|
|
|
(t
|
2008-08-04 13:35:02 +00:00
|
|
|
|
(cdr (assoc-string input (ucs-names) t))))))
|
2008-07-29 14:46:18 +00:00
|
|
|
|
|
2009-08-12 20:43:08 +00:00
|
|
|
|
(defun ucs-insert (character &optional count inherit)
|
|
|
|
|
"Insert COUNT copies of CHARACTER of the given Unicode code point.
|
2008-07-31 16:52:11 +00:00
|
|
|
|
Interactively, prompts for a Unicode character name or a hex number
|
2009-08-12 20:43:08 +00:00
|
|
|
|
using `read-char-by-name'.
|
|
|
|
|
The optional third arg INHERIT (non-nil when called interactively),
|
|
|
|
|
says to inherit text properties from adjoining text, if those
|
|
|
|
|
properties are sticky."
|
|
|
|
|
(interactive
|
|
|
|
|
(list (read-char-by-name "Unicode (name or hex): ")
|
|
|
|
|
(prefix-numeric-value current-prefix-arg)
|
|
|
|
|
t))
|
|
|
|
|
(unless count (setq count 1))
|
|
|
|
|
(if (stringp character)
|
|
|
|
|
(setq character (string-to-number character 16)))
|
2008-07-31 16:52:11 +00:00
|
|
|
|
(cond
|
2009-08-12 20:43:08 +00:00
|
|
|
|
((not (integerp character))
|
|
|
|
|
(error "Not a Unicode character code: %S" character))
|
|
|
|
|
((or (< character 0) (> character #x10FFFF))
|
|
|
|
|
(error "Not a Unicode character code: 0x%X" character)))
|
|
|
|
|
(if inherit
|
|
|
|
|
(dotimes (i count) (insert-and-inherit character))
|
|
|
|
|
(dotimes (i count) (insert character))))
|
2006-11-13 01:16:03 +00:00
|
|
|
|
|
2008-07-31 16:52:11 +00:00
|
|
|
|
(define-key ctl-x-map "8\r" 'ucs-insert)
|
1999-02-25 13:26:55 +00:00
|
|
|
|
|
2004-11-08 23:03:30 +00:00
|
|
|
|
;; arch-tag: b382c432-4b36-460e-bf4c-05efd0bb18dc
|
1997-02-20 07:02:49 +00:00
|
|
|
|
;;; mule-cmds.el ends here
|