1997-02-20 07:02:49 +00:00
|
|
|
|
;;; mule-cmds.el --- Commands for mulitilingual environment
|
|
|
|
|
|
|
|
|
|
;; Copyright (C) 1995 Free Software Foundation, Inc.
|
|
|
|
|
;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN.
|
|
|
|
|
|
|
|
|
|
;; Keywords: mule, multilingual
|
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
|
;; the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
|
;; any later version.
|
|
|
|
|
|
|
|
|
|
;; 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
|
1997-02-23 09:20:52 +00:00
|
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
|
|
|
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
|
;; Boston, MA 02111-1307, USA.
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
;;; MULE related key bindings and menus.
|
|
|
|
|
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(defvar mule-keymap nil
|
1997-02-20 07:02:49 +00:00
|
|
|
|
"Keymap for MULE (Multilingual environment) specific commands.")
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(define-prefix-command 'mule-keymap)
|
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-05-28 03:37:32 +00:00
|
|
|
|
(define-key ctl-x-map "\C-m" 'mule-keymap)
|
1997-02-26 12:50:36 +00:00
|
|
|
|
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(define-key mule-keymap "m" 'toggle-enable-multibyte-characters)
|
|
|
|
|
(define-key mule-keymap "f" 'set-buffer-file-coding-system)
|
|
|
|
|
(define-key mule-keymap "t" 'set-terminal-coding-system)
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(define-key mule-keymap "k" 'set-keyboard-coding-system)
|
|
|
|
|
(define-key mule-keymap "p" 'set-buffer-process-coding-system)
|
1997-04-21 04:54:43 +00:00
|
|
|
|
(define-key mule-keymap "\C-\\" 'select-input-method)
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(define-key mule-keymap "c" 'universal-coding-system-argument)
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
1997-06-07 05:36:13 +00:00
|
|
|
|
(define-key help-map "\C-L" 'describe-language-environment)
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(define-key help-map "\C-\\" 'describe-input-method)
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(define-key help-map "C" 'describe-coding-system)
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(define-key help-map "h" 'view-hello-file)
|
|
|
|
|
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(defvar mule-menu-keymap nil
|
|
|
|
|
"Keymap for MULE (Multilingual environment) menu specific commands.")
|
|
|
|
|
(define-prefix-command 'mule-menu-keymap)
|
|
|
|
|
|
|
|
|
|
(define-key global-map [menu-bar mule] (cons "Mule" mule-menu-keymap))
|
|
|
|
|
|
|
|
|
|
(setq menu-bar-final-items (cons 'mule menu-bar-final-items))
|
|
|
|
|
|
1997-06-07 05:36:13 +00:00
|
|
|
|
(defvar describe-language-environment-map nil)
|
|
|
|
|
(define-prefix-command 'describe-language-environment-map)
|
1997-05-28 03:37:32 +00:00
|
|
|
|
|
|
|
|
|
(defvar setup-language-environment-map nil)
|
|
|
|
|
(define-prefix-command 'setup-language-environment-map)
|
|
|
|
|
|
|
|
|
|
(defvar set-coding-system-map nil)
|
|
|
|
|
(define-prefix-command 'set-coding-system-map)
|
|
|
|
|
|
|
|
|
|
(define-key-after mule-menu-keymap [toggle-mule]
|
|
|
|
|
'("Toggle MULE facility" . toggle-enable-multibyte-characters)
|
|
|
|
|
t)
|
1997-06-07 05:36:13 +00:00
|
|
|
|
(define-key-after mule-menu-keymap [describe-language-environment]
|
|
|
|
|
'("Describe language environment" . describe-language-environment-map)
|
1997-05-28 03:37:32 +00:00
|
|
|
|
t)
|
|
|
|
|
(define-key-after mule-menu-keymap [set-language-environment]
|
|
|
|
|
'("Set language environment" . setup-language-environment-map)
|
|
|
|
|
t)
|
|
|
|
|
(define-key-after mule-menu-keymap [separator-mule]
|
|
|
|
|
'("--")
|
|
|
|
|
t)
|
|
|
|
|
(define-key-after mule-menu-keymap [toggle-input-method]
|
|
|
|
|
'("Toggle input method" . toggle-input-method)
|
|
|
|
|
t)
|
|
|
|
|
(define-key-after mule-menu-keymap [select-input-method]
|
|
|
|
|
'("Select input method" . select-input-method)
|
|
|
|
|
t)
|
|
|
|
|
(define-key-after mule-menu-keymap [describe-input-method]
|
|
|
|
|
'("Describe input method" . describe-input-method)
|
|
|
|
|
t)
|
|
|
|
|
(define-key-after mule-menu-keymap [separator-input-method]
|
|
|
|
|
'("--")
|
|
|
|
|
t)
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(define-key-after mule-menu-keymap [describe-coding-system]
|
|
|
|
|
'("Describe coding systems" . describe-coding-system)
|
1997-05-28 03:37:32 +00:00
|
|
|
|
t)
|
|
|
|
|
(define-key-after mule-menu-keymap [set-various-coding-system]
|
|
|
|
|
'("Set coding systems" . set-coding-system-map)
|
|
|
|
|
t)
|
|
|
|
|
(define-key-after mule-menu-keymap [separator-coding-system]
|
|
|
|
|
'("--")
|
|
|
|
|
t)
|
|
|
|
|
(define-key-after mule-menu-keymap [mule-diag]
|
|
|
|
|
'("Show diagnosis for MULE" . mule-diag)
|
|
|
|
|
t)
|
|
|
|
|
(define-key-after mule-menu-keymap [view-hello-file]
|
|
|
|
|
'("Show many languages" . view-hello-file)
|
|
|
|
|
t)
|
|
|
|
|
|
|
|
|
|
(define-key-after set-coding-system-map [set-buffer-file-coding-system]
|
|
|
|
|
'("Buffer file" . set-buffer-file-coding-system)
|
|
|
|
|
t)
|
|
|
|
|
(define-key-after set-coding-system-map [set-terminal-coding-system]
|
|
|
|
|
'("Terminal" . set-terminal-coding-system)
|
|
|
|
|
t)
|
|
|
|
|
(define-key-after set-coding-system-map [set-keyboard-coding-system]
|
|
|
|
|
'("Keyboard" . set-keyboard-coding-system)
|
|
|
|
|
t)
|
|
|
|
|
(define-key-after set-coding-system-map [set-buffer-process-coding-system]
|
|
|
|
|
'("Buffer process" . set-buffer-process-coding-system)
|
|
|
|
|
t)
|
|
|
|
|
|
|
|
|
|
(define-key setup-language-environment-map
|
|
|
|
|
[Default] '("Default" . setup-specified-language-environment))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
;; These are meaningless when running under X.
|
|
|
|
|
(put 'set-terminal-coding-system 'menu-enable
|
|
|
|
|
'(null window-system))
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(put 'set-keyboard-coding-system 'menu-enable
|
|
|
|
|
'(null window-system))
|
1997-06-18 12:55:13 +00:00
|
|
|
|
;; This is meaningless when the current buffer has no process.
|
|
|
|
|
(put 'set-buffer-process-coding-system 'menu-enable
|
|
|
|
|
'(get-buffer-process (current-buffer)))
|
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)
|
|
|
|
|
|
|
|
|
|
(defun toggle-enable-multibyte-characters (&optional arg)
|
|
|
|
|
"Change whether this buffer enables multibyte characters.
|
|
|
|
|
With arg, make them enable iff arg is positive."
|
|
|
|
|
(interactive "P")
|
|
|
|
|
(setq enable-multibyte-characters
|
|
|
|
|
(if (null arg) (null enable-multibyte-characters)
|
|
|
|
|
(> (prefix-numeric-value arg) 0)))
|
|
|
|
|
(force-mode-line-update))
|
|
|
|
|
|
|
|
|
|
(defun view-hello-file ()
|
|
|
|
|
"Display the HELLO file which list up many languages and characters."
|
|
|
|
|
(interactive)
|
1997-04-05 02:35:53 +00:00
|
|
|
|
;; We have to decode the file in any environment.
|
|
|
|
|
(let ((default-enable-multibyte-characters t)
|
1997-06-11 00:38:09 +00:00
|
|
|
|
(coding-system-for-read 'iso-2022-7bit))
|
1997-04-05 02:35:53 +00:00
|
|
|
|
(find-file-read-only (expand-file-name "HELLO" data-directory))))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(defun universal-coding-system-argument ()
|
|
|
|
|
"Execute an I/O command using the specified coding system."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let* ((coding-system (read-coding-system "Coding system: "))
|
|
|
|
|
(keyseq (read-key-sequence
|
|
|
|
|
(format "With coding system %s:" coding-system)))
|
|
|
|
|
(cmd (key-binding keyseq)))
|
|
|
|
|
(let ((coding-system-for-read coding-system)
|
|
|
|
|
(coding-system-for-write coding-system))
|
|
|
|
|
(message "")
|
|
|
|
|
(call-interactively cmd))))
|
|
|
|
|
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
;;; Language support staffs.
|
|
|
|
|
|
|
|
|
|
(defvar primary-language "English"
|
|
|
|
|
"Name of a user's primary language.
|
|
|
|
|
Emacs provide various language supports based on this variable.")
|
|
|
|
|
|
|
|
|
|
(defvar language-info-alist nil
|
|
|
|
|
"Alist of language names vs the corresponding information of various kind.
|
|
|
|
|
Each element looks like:
|
|
|
|
|
(LANGUAGE-NAME . ((KEY . INFO) ...))
|
|
|
|
|
where LANGUAGE-NAME is a string,
|
|
|
|
|
KEY is a symbol denoting the kind of information,
|
|
|
|
|
INFO is any Lisp object which contains the actual information related
|
|
|
|
|
to KEY.")
|
|
|
|
|
|
|
|
|
|
(defun get-language-info (language-name key)
|
|
|
|
|
"Return the information for LANGUAGE-NAME of the kind KEY.
|
|
|
|
|
LANGUAGE-NAME is a string.
|
|
|
|
|
KEY is a symbol denoting the kind of required information."
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(let ((lang-slot (assoc-ignore-case language-name language-info-alist)))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(if lang-slot
|
|
|
|
|
(cdr (assq key (cdr lang-slot))))))
|
|
|
|
|
|
|
|
|
|
(defun set-language-info (language-name key info)
|
|
|
|
|
"Set for LANGUAGE-NAME the information INFO under KEY.
|
|
|
|
|
LANGUAGE-NAME is a string
|
|
|
|
|
KEY is a symbol denoting the kind of information.
|
|
|
|
|
INFO is any Lisp object which contains the actual information.
|
|
|
|
|
|
|
|
|
|
Currently, the following KEYs are used by Emacs:
|
1997-06-07 05:36:13 +00:00
|
|
|
|
|
1997-02-20 07:02:49 +00:00
|
|
|
|
charset: list of symbols whose values are charsets specific to the language.
|
1997-06-07 05:36:13 +00:00
|
|
|
|
|
1997-02-20 07:02:49 +00:00
|
|
|
|
coding-system: list of coding systems specific to the langauge.
|
1997-06-07 05:36:13 +00:00
|
|
|
|
|
1997-02-20 07:02:49 +00:00
|
|
|
|
tutorial: a tutorial file name written in the language.
|
1997-06-07 05:36:13 +00:00
|
|
|
|
|
1997-02-20 07:02:49 +00:00
|
|
|
|
sample-text: one line short text containing characters of the language.
|
1997-06-07 05:36:13 +00:00
|
|
|
|
|
1997-05-28 03:37:32 +00:00
|
|
|
|
documentation: t or a string describing how Emacs supports the language.
|
1997-06-07 05:36:13 +00:00
|
|
|
|
If a string is specified, it is shown before any other information
|
|
|
|
|
of the language by the command `describe-language-environment'.
|
|
|
|
|
|
1997-05-12 06:56:23 +00:00
|
|
|
|
setup-function: a function to call for setting up environment
|
1997-06-07 05:36:13 +00:00
|
|
|
|
convenient for a user of the language.
|
1997-05-28 03:37:32 +00:00
|
|
|
|
|
|
|
|
|
If KEY is documentation or setup-function, you can also specify
|
|
|
|
|
a cons cell as INFO, in which case, the car part should be
|
|
|
|
|
a normal value as INFO for KEY (as described above),
|
|
|
|
|
and the cdr part should be a symbol whose value is a menu keymap
|
|
|
|
|
in which an entry for the language is defined. But, only the car part
|
|
|
|
|
is actually set as the information.
|
1997-05-12 06:56:23 +00:00
|
|
|
|
|
1997-06-07 05:36:13 +00:00
|
|
|
|
We will define more KEYs in the future. To avoid conflict,
|
|
|
|
|
if you want to use your own KEY values, make them start with `user-'."
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(let (lang-slot key-slot)
|
|
|
|
|
(setq lang-slot (assoc language-name language-info-alist))
|
|
|
|
|
(if (null lang-slot) ; If no slot for the language, add it.
|
|
|
|
|
(setq lang-slot (list language-name)
|
|
|
|
|
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)))))
|
|
|
|
|
;; Setup menu.
|
1997-05-16 00:59:07 +00:00
|
|
|
|
(cond ((eq key 'documentation)
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(define-key-after
|
|
|
|
|
(if (consp info)
|
|
|
|
|
(prog1 (symbol-value (cdr info))
|
|
|
|
|
(setq info (car info)))
|
1997-06-07 05:36:13 +00:00
|
|
|
|
describe-language-environment-map)
|
1997-02-26 12:50:36 +00:00
|
|
|
|
(vector (intern language-name))
|
1997-05-16 00:59:07 +00:00
|
|
|
|
(cons language-name 'describe-specified-language-support)
|
1997-05-12 06:56:23 +00:00
|
|
|
|
t))
|
1997-02-26 12:50:36 +00:00
|
|
|
|
((eq key 'setup-function)
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(define-key-after
|
|
|
|
|
(if (consp info)
|
|
|
|
|
(prog1 (symbol-value (cdr info))
|
|
|
|
|
(setq info (car info)))
|
|
|
|
|
setup-language-environment-map)
|
1997-02-26 12:50:36 +00:00
|
|
|
|
(vector (intern language-name))
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(cons language-name 'setup-specified-language-environment)
|
1997-05-12 06:56:23 +00:00
|
|
|
|
t)))
|
1997-05-28 03:37:32 +00:00
|
|
|
|
|
|
|
|
|
(setcdr key-slot info)
|
1997-02-20 07:02:49 +00:00
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
(defun set-language-info-alist (language-name alist)
|
|
|
|
|
"Set for LANGUAGE-NAME the information in ALIST.
|
|
|
|
|
ALIST is an alist of KEY and INFO. See the documentation of
|
|
|
|
|
`set-langauge-info' for the meanings of KEY and INFO."
|
|
|
|
|
(while alist
|
|
|
|
|
(set-language-info language-name (car (car alist)) (cdr (car alist)))
|
|
|
|
|
(setq alist (cdr alist))))
|
|
|
|
|
|
|
|
|
|
(defun read-language-name (key prompt &optional initial-input)
|
|
|
|
|
"Read language name which has information for KEY, prompting with PROMPT."
|
|
|
|
|
(let* ((completion-ignore-case t)
|
|
|
|
|
(name (completing-read prompt
|
|
|
|
|
language-info-alist
|
|
|
|
|
(function (lambda (elm) (assq key elm)))
|
|
|
|
|
t
|
|
|
|
|
initial-input)))
|
1997-05-12 06:56:23 +00:00
|
|
|
|
(if (and (> (length name) 0)
|
|
|
|
|
(get-language-info name key))
|
|
|
|
|
name)))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
;;; Multilingual input methods.
|
|
|
|
|
|
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.")
|
|
|
|
|
|
|
|
|
|
(defvar leim-list-header (format "\
|
|
|
|
|
;;; %s -- list of LEIM (Library of Emacs Input Method)
|
|
|
|
|
;;
|
|
|
|
|
;; This file contains a list of LEIM (Library of Emacs Input Method)
|
|
|
|
|
;; in the same directory as this file. Loading this file registeres
|
|
|
|
|
;; the whole input methods in Emacs.
|
|
|
|
|
;;
|
|
|
|
|
;; Each entry is has the form:
|
|
|
|
|
;; (register-input-method
|
|
|
|
|
;; INPUT-METHOD LANGUAGE-NAME ACTIVATE-FUNC
|
|
|
|
|
;; TITLE DESCRIPTION
|
|
|
|
|
;; ARG ...)
|
|
|
|
|
;; See the function `register-input-method' for the meanings of arguments.
|
|
|
|
|
;;
|
|
|
|
|
;; If this directory is included in load-path, Emacs automatically
|
|
|
|
|
;; loads this file at startup time.
|
|
|
|
|
|
|
|
|
|
"
|
|
|
|
|
leim-list-file-name)
|
|
|
|
|
"Header to be inserted in LEIM list file.")
|
|
|
|
|
|
|
|
|
|
(defvar leim-list-entry-regexp "(register-input-method"
|
|
|
|
|
"Regexp matching head of each entry in LEIM list file.
|
|
|
|
|
See also the variable `leim-list-header'")
|
|
|
|
|
|
|
|
|
|
(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.")
|
|
|
|
|
|
|
|
|
|
(defun update-leim-list-file (dir)
|
|
|
|
|
"Update LEIM list file in directory DIR."
|
|
|
|
|
(let ((functions update-leim-list-functions))
|
|
|
|
|
(while functions
|
|
|
|
|
(funcall (car functions) (expand-file-name dir))
|
|
|
|
|
(setq functions (cdr functions)))))
|
|
|
|
|
|
|
|
|
|
(defun update-all-leim-list-files ()
|
|
|
|
|
"Update all the LEIM list files."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((l load-path))
|
|
|
|
|
(while l
|
|
|
|
|
(if (string-match "leim" (car l))
|
|
|
|
|
(update-leim-list-file (car l)))
|
|
|
|
|
(setq l (cdr l)))))
|
|
|
|
|
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(defvar current-input-method nil
|
|
|
|
|
"The current input method for multilingual text.
|
|
|
|
|
If nil, it means no input method is activated now.")
|
|
|
|
|
(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)
|
|
|
|
|
|
|
|
|
|
(defvar default-input-method nil
|
1997-06-18 12:55:13 +00:00
|
|
|
|
"Default input method for multilingual text.
|
1997-02-20 07:02:49 +00:00
|
|
|
|
The default input method is the one activated automatically by the command
|
1997-06-18 12:55:13 +00:00
|
|
|
|
`toggle-input-method' (\\[toggle-input-method]).")
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(make-variable-buffer-local 'default-input-method)
|
|
|
|
|
(put 'default-input-method 'permanent-local t)
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
(defvar previous-input-method nil
|
1997-06-18 12:55:13 +00:00
|
|
|
|
"Input method selected previously in the current buffer.
|
1997-02-20 07:02:49 +00:00
|
|
|
|
This is the one selected before the current input method is selected.
|
|
|
|
|
See also the documentation of `default-input-method'.")
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(make-variable-buffer-local 'previous-input-method)
|
|
|
|
|
(put 'previous-input-method '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.
|
|
|
|
|
This function is called with no argument.")
|
|
|
|
|
(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
|
|
|
|
|
"Alist of input method names vs the corresponding information to use it.
|
|
|
|
|
Each element has the form:
|
|
|
|
|
(INPUT-METHOD LANGUAGE-NAME ACTIVATE-FUNC TITLE DESCRIPTION ...)
|
|
|
|
|
See the function `register-input-method' for the meanings of each elements.")
|
|
|
|
|
|
|
|
|
|
(defun register-input-method (input-method language-name &rest args)
|
|
|
|
|
"Register INPUT-METHOD as an input method for LANGUAGE-NAME.
|
|
|
|
|
INPUT-METHOD and LANGUAGE-NAME are strings.
|
|
|
|
|
The remaining arguments are:
|
|
|
|
|
ACTIVATE-FUNC, TITLE, DESCRIPTION, and ARG ...
|
|
|
|
|
where,
|
|
|
|
|
ACTIVATE-FUNC is a function to call for activating this method.
|
|
|
|
|
TITLE is a string shown in mode-line while this method is active,
|
|
|
|
|
DESCRIPTION is a string describing about this method,
|
|
|
|
|
Arguments to ACTIVATE-FUNC are INPUT-METHOD and ARGs."
|
|
|
|
|
(let ((info (cons language-name args))
|
|
|
|
|
(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)))))
|
|
|
|
|
|
|
|
|
|
(defun read-input-method-name (prompt &optional initial-input inhibit-null)
|
|
|
|
|
"Read a name of input method from a minibuffer prompting with PROMPT.
|
|
|
|
|
If INITIAL-INPUT is non-nil, insert it in the minibuffer initially.
|
|
|
|
|
If it is (STRING . POSITION), the initial input
|
|
|
|
|
is STRING, but point is placed POSITION characters into the string.
|
|
|
|
|
If INHIBIT-NULL is non-nil, null input signals an error."
|
|
|
|
|
(let* ((completion-ignore-case t)
|
|
|
|
|
(input-method (completing-read prompt input-method-alist
|
|
|
|
|
nil t initial-input)))
|
|
|
|
|
(if (> (length input-method) 0)
|
|
|
|
|
input-method
|
|
|
|
|
(if inhibit-null
|
|
|
|
|
(error "The specified input method is not avairable")))))
|
|
|
|
|
|
|
|
|
|
;; Actvate INPUT-METHOD.
|
|
|
|
|
(defun activate-input-method (input-method)
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(if (and current-input-method
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(not (string= current-input-method input-method)))
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(inactivate-input-method))
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(if current-input-method
|
|
|
|
|
nil ; We have nothing to do.
|
|
|
|
|
(let ((slot (assoc input-method input-method-alist)))
|
|
|
|
|
(if (null slot)
|
|
|
|
|
(error "Invalid input method `%s'" input-method))
|
|
|
|
|
(apply (nth 2 slot) input-method (nthcdr 5 slot))
|
|
|
|
|
(setq current-input-method input-method)
|
|
|
|
|
(setq current-input-method-title (nth 3 slot))
|
|
|
|
|
(if (not (string= default-input-method current-input-method))
|
|
|
|
|
(setq previous-input-method default-input-method
|
|
|
|
|
default-input-method current-input-method)))))
|
1997-05-28 03:37:32 +00:00
|
|
|
|
|
|
|
|
|
;; Inactivate the current input method.
|
|
|
|
|
(defun inactivate-input-method ()
|
|
|
|
|
(if current-input-method
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(funcall inactivate-current-input-method-function)
|
|
|
|
|
(setq current-input-method nil))))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(defun select-input-method (input-method)
|
|
|
|
|
"Select and activate INPUT-METHOD.
|
1997-05-28 03:37:32 +00:00
|
|
|
|
Both the default and local values of default-input-method are
|
|
|
|
|
set to the selected input method.
|
1997-06-18 12:55:13 +00:00
|
|
|
|
See also the function `register-input-method'."
|
|
|
|
|
(interactive
|
|
|
|
|
(let* ((default (or previous-input-method default-input-method))
|
|
|
|
|
(initial (if default (cons default 0))))
|
|
|
|
|
(list (read-input-method-name "Input method: " initial t))))
|
|
|
|
|
(activate-input-method input-method)
|
|
|
|
|
(setq-default default-input-method default-input-method))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
(defun toggle-input-method (&optional arg)
|
1997-05-28 03:37:32 +00:00
|
|
|
|
"Turn on or off a multilingual text input method for the current buffer.
|
1997-06-18 12:55:13 +00:00
|
|
|
|
With arg, read an input method from minibuffer and turn it on.
|
1997-05-28 03:37:32 +00:00
|
|
|
|
Without arg, if some input method is currently activated, turn it off,
|
|
|
|
|
else turn on default-input-method (which see).
|
|
|
|
|
In the latter case, if default-input-method is nil, select an input method
|
|
|
|
|
interactively."
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(interactive "P")
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(let* ((default (or previous-input-method default-input-method))
|
|
|
|
|
(initial (if default (cons default 0))))
|
|
|
|
|
(if arg
|
|
|
|
|
(activate-input-method
|
|
|
|
|
(read-input-method-name "Input method: " initial t))
|
|
|
|
|
(if current-input-method
|
|
|
|
|
(inactivate-input-method)
|
|
|
|
|
(if default-input-method
|
|
|
|
|
(activate-input-method default-input-method)
|
|
|
|
|
(activate-input-method
|
|
|
|
|
(read-input-method-name "Input method: " initial t)))))))
|
|
|
|
|
|
|
|
|
|
(defun describe-input-method (input-method)
|
1997-02-20 07:02:49 +00:00
|
|
|
|
"Describe the current input method."
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(list (read-input-method-name
|
|
|
|
|
"Describe input method (default, current choice): ")))
|
|
|
|
|
(if (null input-method)
|
|
|
|
|
(describe-current-input-method)
|
|
|
|
|
(with-output-to-temp-buffer "*Help*"
|
|
|
|
|
(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)))))))
|
|
|
|
|
|
|
|
|
|
(defun describe-current-input-method ()
|
|
|
|
|
"Describe the input method currently turned on."
|
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'"
|
|
|
|
|
(cdr current-input-method))
|
|
|
|
|
(ding))
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(error "No input method is activated now")))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
(defun read-multilingual-string (prompt &optional initial-input
|
1997-06-18 12:55:13 +00:00
|
|
|
|
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.
|
1997-05-28 03:37:32 +00:00
|
|
|
|
If optional second arg INITIAL-INPUT is non-nil, insert it in the minibuffer
|
1997-06-18 12:55:13 +00:00
|
|
|
|
initially.
|
|
|
|
|
Optional 3rd argument INPUT-METHOD specifies the input method
|
|
|
|
|
to be activated instead of the one selected last time."
|
|
|
|
|
(let ((default-input-method
|
|
|
|
|
(or input-method
|
|
|
|
|
default-input-method
|
|
|
|
|
(read-input-method-name "Input method: " nil t))))
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(let ((minibuffer-setup-hook '(toggle-input-method)))
|
|
|
|
|
(read-string prompt initial-input))))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
;; Variables to control behavior of input methods. All input methods
|
|
|
|
|
;; should react to these variables.
|
|
|
|
|
|
|
|
|
|
(defvar input-method-tersely-flag nil
|
|
|
|
|
"*If this flag is non-nil, input method works rather tersely.
|
|
|
|
|
|
|
|
|
|
For instance, Quail input method does not show guidance buffer while
|
|
|
|
|
inputting at minibuffer if this flag is t.")
|
|
|
|
|
|
|
|
|
|
(defvar input-method-activate-hook nil
|
|
|
|
|
"Normal hook run just after an input method is activated.")
|
|
|
|
|
|
|
|
|
|
(defvar input-method-inactivate-hook nil
|
|
|
|
|
"Normal hook run just after an input method is inactivated.")
|
|
|
|
|
|
|
|
|
|
(defvar input-method-after-insert-chunk-hook nil
|
|
|
|
|
"Normal hook run just after an input method insert some chunk of text.")
|
|
|
|
|
|
|
|
|
|
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(defun setup-specified-language-environment ()
|
|
|
|
|
"Setup multi-lingual environment convenient for the specified language."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let (language-name func)
|
|
|
|
|
(if (and (symbolp last-command-event)
|
|
|
|
|
(or (not (eq last-command-event 'Default))
|
|
|
|
|
(setq last-command-event 'English))
|
|
|
|
|
(setq language-name (symbol-name last-command-event))
|
|
|
|
|
(setq func (get-language-info language-name 'setup-function)))
|
|
|
|
|
(progn
|
|
|
|
|
(funcall func)
|
|
|
|
|
(force-mode-line-update t))
|
|
|
|
|
(error "Bogus calling sequence"))))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
1997-05-31 06:31:43 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(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
|
|
|
|
|
and sometimes other things."
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(interactive (list (read-language-name 'setup-function "Language: ")))
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(if (or (null language-name)
|
|
|
|
|
(null (get-language-info language-name 'setup-function)))
|
|
|
|
|
(error "No way to setup environment for the specified language"))
|
|
|
|
|
(let ((last-command-event (intern language-name)))
|
|
|
|
|
(setup-specified-language-environment)))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
;; Print all arguments with `princ', then print "\n".
|
|
|
|
|
(defsubst princ-list (&rest args)
|
|
|
|
|
(while args (princ (car args)) (setq args (cdr args)))
|
|
|
|
|
(princ "\n"))
|
|
|
|
|
|
1997-05-16 00:59:07 +00:00
|
|
|
|
;; Print a 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 ()
|
|
|
|
|
"Describe how Emacs supports the specified langugage."
|
|
|
|
|
(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)
|
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."
|
|
|
|
|
(interactive (list (read-language-name 'documentation "Language: ")))
|
|
|
|
|
(if (or (null language-name)
|
|
|
|
|
(null (get-language-info language-name 'documentation)))
|
|
|
|
|
(error "No documentation for the specified language"))
|
|
|
|
|
(let ((doc (get-language-info language-name 'documentation)))
|
1997-05-16 00:59:07 +00:00
|
|
|
|
(with-output-to-temp-buffer "*Help*"
|
1997-05-12 06:56:23 +00:00
|
|
|
|
(if (stringp doc)
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(progn
|
|
|
|
|
(princ-list doc)
|
|
|
|
|
(terpri)))
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(let ((str (get-language-info language-name 'sample-text)))
|
|
|
|
|
(if (stringp str)
|
|
|
|
|
(progn
|
1997-06-07 05:36:13 +00:00
|
|
|
|
(princ "Sample text:\n")
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(princ-list " " str)
|
|
|
|
|
(terpri))))
|
1997-06-07 05:36:13 +00:00
|
|
|
|
(princ "Input methods:\n")
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(let ((l input-method-alist))
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(while l
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(if (string= language-name (nth 1 (car l)))
|
|
|
|
|
(princ-list " " (car (car l))
|
|
|
|
|
(format " (`%s' in mode line)" (nth 3 (car l)))))
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(setq l (cdr l))))
|
1997-06-07 05:36:13 +00:00
|
|
|
|
(terpri)
|
|
|
|
|
(princ "Character sets:\n")
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(let ((l (get-language-info language-name 'charset)))
|
|
|
|
|
(if (null l)
|
|
|
|
|
(princ-list " nothing specific to " language-name)
|
|
|
|
|
(while l
|
|
|
|
|
(princ-list " " (car l) ": "
|
|
|
|
|
(charset-description (car l)))
|
|
|
|
|
(setq l (cdr l)))))
|
1997-06-07 05:36:13 +00:00
|
|
|
|
(terpri)
|
|
|
|
|
(princ "Coding systems:\n")
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(let ((l (get-language-info language-name 'coding-system)))
|
|
|
|
|
(if (null l)
|
|
|
|
|
(princ-list " nothing specific to " language-name)
|
1997-05-16 00:59:07 +00:00
|
|
|
|
(while l
|
1997-06-07 05:36:13 +00:00
|
|
|
|
(princ (format " %s (`%c' in mode line):\n\t%s\n"
|
|
|
|
|
(car l)
|
|
|
|
|
(coding-system-mnemonic (car l))
|
1997-06-09 12:51:37 +00:00
|
|
|
|
(coding-system-doc-string (car l))))
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(setq l (cdr l))))))))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
;;; Charset property
|
|
|
|
|
|
|
|
|
|
(defsubst get-charset-property (charset propname)
|
|
|
|
|
"Return the value of CHARSET's PROPNAME property.
|
|
|
|
|
This is the last value stored with
|
|
|
|
|
`(put-charset-property CHARSET PROPNAME VALUE)'."
|
|
|
|
|
(plist-get (charset-plist charset) propname))
|
|
|
|
|
|
|
|
|
|
(defsubst put-charset-property (charset propname value)
|
|
|
|
|
"Store CHARSETS's PROPNAME property with value VALUE.
|
|
|
|
|
It can be retrieved with `(get-charset-property CHARSET PROPNAME)'."
|
|
|
|
|
(set-charset-plist charset
|
|
|
|
|
(plist-put (charset-plist charset) propname value)))
|
|
|
|
|
|
|
|
|
|
;;; Character code property
|
|
|
|
|
(put 'char-code-property-table 'char-table-extra-slots 0)
|
|
|
|
|
|
|
|
|
|
(defvar char-code-property-table
|
|
|
|
|
(make-char-table 'char-code-property-table)
|
|
|
|
|
"Char-table containing a property list of each character code.
|
|
|
|
|
|
|
|
|
|
See also the documentation of `get-char-code-property' and
|
|
|
|
|
`put-char-code-property'")
|
|
|
|
|
|
|
|
|
|
(defun get-char-code-property (char propname)
|
|
|
|
|
"Return the value of CHAR's PROPNAME property in `char-code-property-table'."
|
|
|
|
|
(let ((plist (aref char-code-property-table char)))
|
|
|
|
|
(if (listp plist)
|
|
|
|
|
(car (cdr (memq propname plist))))))
|
|
|
|
|
|
|
|
|
|
(defun put-char-code-property (char propname value)
|
|
|
|
|
"Store CHAR's PROPNAME property with VALUE in `char-code-property-table'.
|
|
|
|
|
It can be retrieved with `(get-char-code-property CHAR PROPNAME)'."
|
|
|
|
|
(let ((plist (aref char-code-property-table char)))
|
|
|
|
|
(if plist
|
|
|
|
|
(let ((slot (memq propname plist)))
|
|
|
|
|
(if slot
|
|
|
|
|
(setcar (cdr slot) value)
|
|
|
|
|
(nconc plist (list propname value))))
|
|
|
|
|
(aset char-code-property-table char (list propname value)))))
|
|
|
|
|
|
|
|
|
|
;;; mule-cmds.el ends here
|