1997-02-20 07:02:49 +00:00
|
|
|
|
;;; mule-cmds.el --- Commands for mulitilingual environment
|
|
|
|
|
|
|
|
|
|
;; Copyright (C) 1995 Electrotechnical Laboratory, JAPAN.
|
1997-06-22 08:57:18 +00:00
|
|
|
|
;; Licensed to the Free Software Foundation.
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
;; 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-09-03 07:27:58 +00:00
|
|
|
|
(defvar mule-keymap (make-sparse-keymap)
|
1997-02-20 07:02:49 +00:00
|
|
|
|
"Keymap for MULE (Multilingual environment) specific commands.")
|
|
|
|
|
|
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
|
|
|
|
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(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-11-20 22:14:40 +00:00
|
|
|
|
(define-key mule-keymap "\C-\\" 'set-input-method)
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(define-key mule-keymap "c" 'universal-coding-system-argument)
|
1997-07-15 08:24:47 +00:00
|
|
|
|
(define-key mule-keymap "l" 'set-language-environment)
|
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-07-05 18:08:50 +00:00
|
|
|
|
(define-key help-map "L" 'describe-language-environment)
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(define-key help-map "\C-\\" 'describe-input-method)
|
1997-07-05 18:08:50 +00:00
|
|
|
|
(define-key help-map "I" '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-09-03 07:27:58 +00:00
|
|
|
|
(defvar mule-menu-keymap (make-sparse-keymap "Mule")
|
1997-05-28 03:37:32 +00:00
|
|
|
|
"Keymap for MULE (Multilingual environment) menu specific commands.")
|
|
|
|
|
|
|
|
|
|
(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)
|
|
|
|
|
|
1997-06-07 05:36:13 +00:00
|
|
|
|
(define-key-after mule-menu-keymap [describe-language-environment]
|
1997-07-30 04:10:55 +00:00
|
|
|
|
'("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]
|
1997-07-30 04:10:55 +00:00
|
|
|
|
'("Set Language Environment" . setup-language-environment-map)
|
1997-05-28 03:37:32 +00:00
|
|
|
|
t)
|
1997-06-21 01:17:46 +00:00
|
|
|
|
(define-key-after mule-menu-keymap [mouse-set-font]
|
1997-07-30 04:10:55 +00:00
|
|
|
|
'("Set Font/Fontset" . mouse-set-font)
|
1997-06-21 01:17:46 +00:00
|
|
|
|
t)
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(define-key-after mule-menu-keymap [separator-mule]
|
|
|
|
|
'("--")
|
|
|
|
|
t)
|
|
|
|
|
(define-key-after mule-menu-keymap [toggle-input-method]
|
1997-07-30 04:10:55 +00:00
|
|
|
|
'("Toggle Input Method" . toggle-input-method)
|
1997-05-28 03:37:32 +00:00
|
|
|
|
t)
|
1997-11-20 22:14:40 +00:00
|
|
|
|
(define-key-after mule-menu-keymap [set-input-method]
|
|
|
|
|
'("Select Input Method" . set-input-method)
|
1997-05-28 03:37:32 +00:00
|
|
|
|
t)
|
|
|
|
|
(define-key-after mule-menu-keymap [describe-input-method]
|
1997-07-30 04:10:55 +00:00
|
|
|
|
'("Describe Input Method" . describe-input-method)
|
1997-05-28 03:37:32 +00:00
|
|
|
|
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]
|
1997-07-30 04:10:55 +00:00
|
|
|
|
'("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]
|
1997-07-30 04:10:55 +00:00
|
|
|
|
'("Set Coding System" . set-coding-system-map)
|
1997-05-28 03:37:32 +00:00
|
|
|
|
t)
|
|
|
|
|
(define-key-after mule-menu-keymap [separator-coding-system]
|
|
|
|
|
'("--")
|
|
|
|
|
t)
|
|
|
|
|
(define-key-after mule-menu-keymap [mule-diag]
|
1997-07-30 04:10:55 +00:00
|
|
|
|
'("Show All of MULE Status" . mule-diag)
|
1997-05-28 03:37:32 +00:00
|
|
|
|
t)
|
|
|
|
|
(define-key-after mule-menu-keymap [view-hello-file]
|
1997-07-30 04:10:55 +00:00
|
|
|
|
'("Show Script Examples" . view-hello-file)
|
1997-05-28 03:37:32 +00:00
|
|
|
|
t)
|
|
|
|
|
|
|
|
|
|
(define-key-after set-coding-system-map [set-buffer-file-coding-system]
|
1997-07-30 04:10:55 +00:00
|
|
|
|
'("Buffer File" . set-buffer-file-coding-system)
|
1997-05-28 03:37:32 +00:00
|
|
|
|
t)
|
1997-09-02 05:59:52 +00:00
|
|
|
|
(define-key-after set-coding-system-map [universal-coding-system-argument]
|
|
|
|
|
'("Next Command" . universal-coding-system-argument)
|
|
|
|
|
t)
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(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]
|
1997-07-30 04:10:55 +00:00
|
|
|
|
'("Buffer Process" . set-buffer-process-coding-system)
|
1997-05-28 03:37:32 +00:00
|
|
|
|
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
|
1997-08-28 20:08:00 +00:00
|
|
|
|
'(not (eq window-system 'x)))
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(put 'set-keyboard-coding-system 'menu-enable
|
1997-08-28 20:08:00 +00:00
|
|
|
|
'(not (eq window-system 'x)))
|
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)
|
|
|
|
|
|
1997-07-15 18:51:38 +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
|
|
|
|
|
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.
|
|
|
|
|
With arg, use multibyte characters if the arg is positive.
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
|
|
We suggest you avoid using use this command unless you know what you
|
|
|
|
|
are doing. If you use it by mistake, and the buffer is now displayed
|
|
|
|
|
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 ()
|
|
|
|
|
"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)
|
1997-09-07 06:51:34 +00:00
|
|
|
|
(let* ((coding-system (read-coding-system "Coding system for following command: "))
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(keyseq (read-key-sequence
|
1997-09-07 06:51:34 +00:00
|
|
|
|
(format "Command to execute with %s:" coding-system)))
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(cmd (key-binding keyseq)))
|
|
|
|
|
(let ((coding-system-for-read coding-system)
|
|
|
|
|
(coding-system-for-write coding-system))
|
|
|
|
|
(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:
|
1998-03-03 01:36:35 +00:00
|
|
|
|
o default value used as file-name-coding-system for converting file names.
|
1997-10-23 12:05:45 +00:00
|
|
|
|
o default value for the command `set-terminal-coding-system'
|
|
|
|
|
o default value for the command `set-keyboard-coding-system'"
|
1997-08-04 07:03:08 +00:00
|
|
|
|
(check-coding-system coding-system)
|
|
|
|
|
(setq-default buffer-file-coding-system coding-system)
|
1998-03-03 01:36:35 +00:00
|
|
|
|
(setq default-file-name-coding-system coding-system)
|
1997-08-04 07:03:08 +00:00
|
|
|
|
(setq default-terminal-coding-system coding-system)
|
|
|
|
|
(setq default-keyboard-coding-system coding-system)
|
|
|
|
|
(setq default-process-coding-system (cons coding-system coding-system)))
|
|
|
|
|
|
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:
|
1998-03-03 01:36:35 +00:00
|
|
|
|
o default value used as file-name-coding-system for converting file names.
|
1997-10-23 12:05:45 +00:00
|
|
|
|
o default value for the command `set-terminal-coding-system'
|
|
|
|
|
o default value for the command `set-keyboard-coding-system'"
|
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))
|
|
|
|
|
(let ((coding-category (coding-system-category coding-system))
|
1997-10-23 12:05:45 +00:00
|
|
|
|
(base (coding-system-base coding-system)))
|
1997-08-10 04:07:03 +00:00
|
|
|
|
(if (not coding-category)
|
|
|
|
|
;; CODING-SYSTEM is no-conversion or undecided.
|
|
|
|
|
(error "Can't prefer the coding system `%s'" coding-system))
|
1997-10-23 12:05:45 +00:00
|
|
|
|
(set coding-category (or base coding-system))
|
1998-01-22 01:42:20 +00:00
|
|
|
|
(update-iso-coding-systems)
|
1997-08-10 04:07:03 +00:00
|
|
|
|
(if (not (eq coding-category (car coding-category-list)))
|
|
|
|
|
;; We must change the order.
|
|
|
|
|
(setq coding-category-list
|
|
|
|
|
(cons coding-category
|
|
|
|
|
(delq coding-category coding-category-list))))
|
1997-10-23 12:05:45 +00:00
|
|
|
|
(if (and base (interactive-p))
|
|
|
|
|
(message "Highest priority is set to %s (base of %s)"
|
|
|
|
|
base coding-system))
|
|
|
|
|
(set-default-coding-systems (or base coding-system))))
|
1997-08-10 04:07:03 +00:00
|
|
|
|
|
1998-02-03 06:29:24 +00:00
|
|
|
|
(defun find-safe-coding-system-list-subset-p (list1 list2)
|
1998-01-22 01:42:20 +00:00
|
|
|
|
"Return non-nil if all elements in LIST1 are included in LIST2.
|
|
|
|
|
Comparison done with EQ."
|
|
|
|
|
(catch 'tag
|
|
|
|
|
(while list1
|
|
|
|
|
(or (memq (car list1) list2)
|
|
|
|
|
(throw 'tag nil))
|
|
|
|
|
(setq list1 (cdr list1)))
|
|
|
|
|
t))
|
|
|
|
|
|
|
|
|
|
(defun find-safe-coding-system (from to)
|
|
|
|
|
"Return a list of proper coding systems to encode a text between FROM and TO.
|
|
|
|
|
All coding systems in the list can safely encode any multibyte characters
|
|
|
|
|
in the text.
|
|
|
|
|
|
|
|
|
|
If the text contains no multibyte charcters, return a list of a single
|
|
|
|
|
element `undecided'.
|
|
|
|
|
|
|
|
|
|
Kludgy feature: if FROM is a string, the string is the target text,
|
|
|
|
|
and TO is ignored."
|
|
|
|
|
(let ((charset-list (if (stringp from) (find-charset-string from)
|
|
|
|
|
(find-charset-region from to))))
|
1998-02-04 11:25:47 +00:00
|
|
|
|
(if (or (null charset-list)
|
|
|
|
|
(and (= (length charset-list) 1)
|
|
|
|
|
(eq 'ascii (car charset-list))))
|
1998-01-22 01:42:20 +00:00
|
|
|
|
'(undecided)
|
|
|
|
|
(let ((l coding-system-list)
|
|
|
|
|
(prefered-codings
|
|
|
|
|
(mapcar (function
|
|
|
|
|
(lambda (x)
|
|
|
|
|
(get-charset-property x 'prefered-coding-system)))
|
|
|
|
|
charset-list))
|
|
|
|
|
codings coding safe)
|
|
|
|
|
(while l
|
|
|
|
|
(setq coding (car l) l (cdr l))
|
|
|
|
|
(if (and (eq coding (coding-system-base coding))
|
|
|
|
|
(setq safe (coding-system-get coding 'safe-charsets))
|
|
|
|
|
(or (eq safe t)
|
1998-02-03 06:29:24 +00:00
|
|
|
|
(find-safe-coding-system-list-subset-p
|
|
|
|
|
charset-list safe)))
|
1998-01-22 01:42:20 +00:00
|
|
|
|
;; We put the higher priority to coding systems included
|
|
|
|
|
;; in PREFERED-CODINGS, and within them, put the higher
|
|
|
|
|
;; priority to coding systems which support smaller
|
|
|
|
|
;; number of charsets.
|
|
|
|
|
(let ((priority
|
|
|
|
|
(logior (if (coding-system-get coding 'mime-charset)
|
|
|
|
|
256 0)
|
|
|
|
|
(if (memq coding prefered-codings) 128 0)
|
|
|
|
|
(if (> (coding-system-type coding) 0) 64 0)
|
|
|
|
|
(if (consp safe) (- 64 (length safe)) 0))))
|
|
|
|
|
(setq codings (cons (cons priority coding) codings)))))
|
|
|
|
|
(mapcar 'cdr
|
|
|
|
|
(sort codings (function (lambda (x y) (> (car x) (car y))))))
|
|
|
|
|
))))
|
|
|
|
|
|
|
|
|
|
(defun select-safe-coding-system (from to &optional default-coding-system)
|
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
|
|
|
|
|
between FROM and TO are shown in a popup window.
|
1998-01-22 01:42:20 +00:00
|
|
|
|
|
|
|
|
|
Optional arg DEFAULT-CODING-SYSTEM specifies a coding system to be
|
|
|
|
|
checked at first. If omitted, buffer-file-coding-system of the
|
|
|
|
|
current buffer is used.
|
|
|
|
|
|
1998-02-04 11:25:47 +00:00
|
|
|
|
If the text can be encoded safely by DEFAULT-CODING-SYSTEM, it is
|
|
|
|
|
returned without any user interaction.
|
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."
|
|
|
|
|
(or default-coding-system
|
|
|
|
|
(setq default-coding-system buffer-file-coding-system))
|
|
|
|
|
(let ((safe-coding-systems (find-safe-coding-system from to)))
|
|
|
|
|
(if (or (eq (car safe-coding-systems) 'undecided)
|
|
|
|
|
(and default-coding-system
|
|
|
|
|
(memq (coding-system-base default-coding-system)
|
|
|
|
|
safe-coding-systems)))
|
|
|
|
|
default-coding-system
|
|
|
|
|
|
|
|
|
|
;; Ask a user to select a proper coding system.
|
|
|
|
|
(save-window-excursion
|
|
|
|
|
;; At first, show a helpful message.
|
|
|
|
|
(with-output-to-temp-buffer "*Warning*"
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer standard-output)
|
|
|
|
|
(insert (format "\
|
|
|
|
|
The target text contains a multibyte character which can't be
|
|
|
|
|
encoded safely by the coding system %s.
|
|
|
|
|
|
|
|
|
|
Please select one from the following safe coding systems:\n"
|
|
|
|
|
default-coding-system))
|
|
|
|
|
(let ((pos (point))
|
|
|
|
|
(fill-prefix " "))
|
|
|
|
|
(mapcar (function (lambda (x) (princ " ") (princ x)))
|
|
|
|
|
safe-coding-systems)
|
|
|
|
|
(fill-region-as-paragraph pos (point)))))
|
|
|
|
|
|
|
|
|
|
;; Read a coding system.
|
|
|
|
|
(let* ((safe-names (mapcar (lambda (x) (list (symbol-name x)))
|
|
|
|
|
safe-coding-systems))
|
|
|
|
|
(name (completing-read
|
|
|
|
|
(format "Select coding system (default %s): "
|
|
|
|
|
(car safe-coding-systems))
|
|
|
|
|
safe-names nil t nil nil (car (car safe-names)))))
|
1998-02-20 01:44:10 +00:00
|
|
|
|
(kill-buffer "*Warning*")
|
1998-01-22 01:42:20 +00:00
|
|
|
|
(intern name))))))
|
|
|
|
|
|
|
|
|
|
(setq select-safe-coding-system-function 'select-safe-coding-system)
|
|
|
|
|
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
;;; Language support staffs.
|
|
|
|
|
|
|
|
|
|
(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.
|
|
|
|
|
KEY is a symbol denoting the kind of required information."
|
1997-09-01 07:19:38 +00:00
|
|
|
|
(if (symbolp language-name)
|
|
|
|
|
(setq language-name (symbol-name language-name)))
|
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))))))
|
|
|
|
|
|
1998-01-22 01:42:20 +00:00
|
|
|
|
(defun set-language-info (language-name key info
|
|
|
|
|
&optional describe-map setup-map)
|
1997-02-20 07:02:49 +00:00
|
|
|
|
"Set for LANGUAGE-NAME the information INFO under KEY.
|
|
|
|
|
KEY is a symbol denoting the kind of information.
|
1998-01-22 01:42:20 +00:00
|
|
|
|
INFO is any Lisp object which contains the actual information specific
|
|
|
|
|
to LANGUAGE-NAME.
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
Currently, the following KEYs are used by Emacs:
|
1997-06-07 05:36:13 +00:00
|
|
|
|
|
1998-01-22 01:42:20 +00:00
|
|
|
|
charset: list of charsets.
|
|
|
|
|
|
|
|
|
|
coding-system: list of coding systems.
|
1997-06-07 05:36:13 +00:00
|
|
|
|
|
1998-01-22 01:42:20 +00:00
|
|
|
|
coding-priority: list of coding systems ordered by priority.
|
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.
|
1998-01-22 01:42:20 +00:00
|
|
|
|
If a string is specified, it is shown before any other information
|
|
|
|
|
of the language by the command `describe-language-environment'.
|
1997-06-07 05:36:13 +00:00
|
|
|
|
|
1997-05-12 06:56:23 +00:00
|
|
|
|
setup-function: a function to call for setting up environment
|
1998-01-22 01:42:20 +00:00
|
|
|
|
convenient for a user of the language.
|
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,
|
1998-01-22 01:42:20 +00:00
|
|
|
|
if you want to use your own KEY values, make them start with `user-'.
|
|
|
|
|
|
|
|
|
|
Optional 4th and 5th args DESCRIBE-MAP and SETUP-MAP are keymaps to
|
|
|
|
|
register LANGUAGE-NAME in the menu of `Mule'->`Describe Language
|
|
|
|
|
Environment' and `Mule'->`Setup Language Environment' respectively."
|
1997-09-01 07:19:38 +00:00
|
|
|
|
(if (symbolp language-name)
|
|
|
|
|
(setq language-name (symbol-name language-name)))
|
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)
|
1998-01-22 01:42:20 +00:00
|
|
|
|
(define-key-after describe-map (vector (intern language-name))
|
|
|
|
|
(cons language-name 'describe-specified-language-support) t))
|
1997-02-26 12:50:36 +00:00
|
|
|
|
((eq key 'setup-function)
|
1998-01-22 01:42:20 +00:00
|
|
|
|
(define-key-after setup-map (vector (intern language-name))
|
|
|
|
|
(cons language-name 'setup-specified-language-environment) t)))
|
1997-05-28 03:37:32 +00:00
|
|
|
|
|
|
|
|
|
(setcdr key-slot info)
|
1997-02-20 07:02:49 +00:00
|
|
|
|
))
|
|
|
|
|
|
1998-01-22 01:42:20 +00:00
|
|
|
|
(defun set-language-info-alist (language-name alist &optional parents)
|
1997-02-20 07:02:49 +00:00
|
|
|
|
"Set for LANGUAGE-NAME the information in ALIST.
|
|
|
|
|
ALIST is an alist of KEY and INFO. See the documentation of
|
1998-01-22 01:42:20 +00:00
|
|
|
|
`set-langauge-info' for the meanings of KEY and INFO.
|
|
|
|
|
|
|
|
|
|
Optional arg PARENTS is a list of parent language environments ordered
|
|
|
|
|
from the highest to the lower. If it is nil, we make LANGUAGE-NAME
|
|
|
|
|
the top level language environment."
|
1997-09-01 07:19:38 +00:00
|
|
|
|
(if (symbolp language-name)
|
|
|
|
|
(setq language-name (symbol-name language-name)))
|
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)
|
|
|
|
|
map parent-symbol parent)
|
|
|
|
|
(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)))
|
|
|
|
|
(if (not map)
|
|
|
|
|
(progn
|
|
|
|
|
(setq map (intern (format "describe-%s-environment-map"
|
|
|
|
|
(downcase parent))))
|
|
|
|
|
(define-prefix-command map)
|
|
|
|
|
(define-key-after describe-map (vector parent-symbol)
|
|
|
|
|
(cons parent map) t)))
|
|
|
|
|
(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))))
|
|
|
|
|
(define-prefix-command map)
|
|
|
|
|
(define-key-after setup-map (vector parent-symbol)
|
|
|
|
|
(cons parent map) t)))
|
|
|
|
|
(setq setup-map (symbol-value map))
|
|
|
|
|
(setq l (cdr l)))))
|
|
|
|
|
(while alist
|
|
|
|
|
(set-language-info language-name (car (car alist)) (cdr (car alist))
|
|
|
|
|
describe-map setup-map)
|
|
|
|
|
(setq alist (cdr alist)))))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
1997-09-03 22:29:06 +00:00
|
|
|
|
(defun read-language-name (key prompt &optional default)
|
1997-09-01 07:19:38 +00:00
|
|
|
|
"Read language name which has information for KEY, prompting with PROMPT.
|
1997-09-03 22:29:06 +00:00
|
|
|
|
DEFAULT is the default choice of language.
|
1997-09-07 03:39:44 +00:00
|
|
|
|
This returns a language name as a string."
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(let* ((completion-ignore-case t)
|
|
|
|
|
(name (completing-read prompt
|
|
|
|
|
language-info-alist
|
|
|
|
|
(function (lambda (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)
|
|
|
|
|
(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.
|
|
|
|
|
;;
|
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 ...)
|
|
|
|
|
;; 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.")
|
|
|
|
|
|
1997-07-25 13:13:00 +00:00
|
|
|
|
(defvar 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.
|
|
|
|
|
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.")
|
|
|
|
|
|
1997-08-29 02:06:39 +00:00
|
|
|
|
(defun update-leim-list-file (&rest dirs)
|
|
|
|
|
"Update LEIM list file in directories DIRS."
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(let ((functions update-leim-list-functions))
|
|
|
|
|
(while functions
|
1997-08-29 02:06:39 +00:00
|
|
|
|
(apply (car functions) dirs)
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(setq functions (cdr functions)))))
|
|
|
|
|
|
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
|
|
|
|
|
"*Default input method for multilingual text.
|
|
|
|
|
This is the input method activated automatically by the command
|
1997-08-13 00:37:32 +00:00
|
|
|
|
`toggle-input-method' (\\[toggle-input-method])."
|
1997-07-15 08:24:47 +00:00
|
|
|
|
:group 'mule)
|
|
|
|
|
|
1997-08-18 10:51:45 +00:00
|
|
|
|
(defvar input-method-history nil
|
|
|
|
|
"History list for some commands that read input methods.")
|
|
|
|
|
(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
|
|
|
|
|
"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.
|
1997-09-01 07:19:38 +00:00
|
|
|
|
INPUT-METHOD and LANGUAGE-NAME are symbols or strings.
|
1997-06-18 12:55:13 +00:00
|
|
|
|
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."
|
1997-09-01 07:19:38 +00:00
|
|
|
|
(if (symbolp language-name)
|
|
|
|
|
(setq language-name (symbol-name language-name)))
|
|
|
|
|
(if (symbolp input-method)
|
|
|
|
|
(setq input-method (symbol-name input-method)))
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(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)))))
|
|
|
|
|
|
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,
|
|
|
|
|
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)
|
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)))
|
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)
|
1997-08-26 12:03:42 +00:00
|
|
|
|
"Turn INPUT-METHOD on.
|
|
|
|
|
If some input method is already on, turn it off at first."
|
1997-09-01 07:19:38 +00:00
|
|
|
|
(if (symbolp input-method)
|
|
|
|
|
(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)))
|
1997-08-18 02:28:28 +00:00
|
|
|
|
(inactivate-input-method))
|
|
|
|
|
(unless current-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))
|
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)
|
1997-08-18 10:51:45 +00:00
|
|
|
|
(setq current-input-method-title (nth 3 slot))
|
|
|
|
|
(run-hooks 'input-method-activate-hook))))
|
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
|
|
|
|
|
(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)
|
|
|
|
|
(setq current-input-method nil
|
|
|
|
|
current-input-method-title nil)))))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
1997-11-20 22:14:40 +00:00
|
|
|
|
(defun set-input-method (input-method)
|
1997-08-18 10:51:45 +00:00
|
|
|
|
"Select and turn on INPUT-METHOD.
|
|
|
|
|
This sets the default input method to what you specify,
|
|
|
|
|
and turn it on for the current buffer."
|
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: ")
|
1997-08-18 02:28:28 +00:00
|
|
|
|
default t))))
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(activate-input-method input-method)
|
1997-08-18 02:28:28 +00:00
|
|
|
|
(setq default-input-method 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-08-18 10:51:45 +00:00
|
|
|
|
|
1997-06-18 12:55:13 +00:00
|
|
|
|
With arg, read an input method from minibuffer and turn it on.
|
1997-08-18 10:51:45 +00:00
|
|
|
|
|
1997-05-28 03:37:32 +00:00
|
|
|
|
Without arg, if some input method is currently activated, turn it off,
|
1997-08-18 10:51:45 +00:00
|
|
|
|
else turn on an input method selected last time
|
|
|
|
|
or the default input method (see `default-input-method').
|
|
|
|
|
|
|
|
|
|
When there's no input method to turn on, turn on what read from minibuffer."
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(interactive "P")
|
1997-08-18 10:51:45 +00:00
|
|
|
|
(let* ((default (or (car input-method-history) default-input-method)))
|
1997-07-15 08:24:47 +00:00
|
|
|
|
(if (and current-input-method (not arg))
|
|
|
|
|
(inactivate-input-method)
|
1997-08-18 10:51:45 +00:00
|
|
|
|
(activate-input-method
|
|
|
|
|
(if (or arg (not default))
|
|
|
|
|
(read-input-method-name
|
|
|
|
|
(if default "Input method (default %s): " "Input method: " )
|
|
|
|
|
default t)
|
|
|
|
|
default))
|
|
|
|
|
(or default-input-method
|
|
|
|
|
(setq default-input-method current-input-method)))))
|
1997-06-18 12:55:13 +00:00
|
|
|
|
|
|
|
|
|
(defun describe-input-method (input-method)
|
1997-09-01 07:19:38 +00:00
|
|
|
|
"Describe input method INPUT-METHOD."
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(list (read-input-method-name
|
|
|
|
|
"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)))
|
1997-06-18 12:55:13 +00:00
|
|
|
|
(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 ()
|
1997-08-02 21:59:55 +00:00
|
|
|
|
"Describe the input method currently in use."
|
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
|
|
|
|
|
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.
|
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
|
1997-09-01 07:19:38 +00:00
|
|
|
|
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)))
|
1997-10-21 10:47:35 +00:00
|
|
|
|
(let ((previous-input-method current-input-method))
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn
|
|
|
|
|
(activate-input-method input-method)
|
|
|
|
|
(read-string prompt initial-input nil nil t))
|
|
|
|
|
(if previous-input-method
|
|
|
|
|
(activate-input-method previous-input-method)
|
|
|
|
|
(inactivate-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
|
|
|
|
|
"*A flag to control extra guidance given by input methods.
|
|
|
|
|
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'."
|
|
|
|
|
:type '(choice (const t) (const nil) (const complex-only) (const default))
|
1997-08-18 02:28:28 +00:00
|
|
|
|
:group 'mule)
|
|
|
|
|
|
|
|
|
|
(defcustom input-method-highlight-flag t
|
|
|
|
|
"*If this flag is non-nil, input methods highlight partially-entered text.
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
(defvar 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
|
|
|
|
|
just activated.")
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
(defvar 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
|
1997-12-19 14:51:52 +00:00
|
|
|
|
just inactivated.")
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
|
|
|
|
(defvar input-method-after-insert-chunk-hook nil
|
|
|
|
|
"Normal hook run just after an input method insert some chunk of text.")
|
|
|
|
|
|
1997-08-18 10:51:45 +00:00
|
|
|
|
(defvar input-method-exit-on-invalid-key nil
|
|
|
|
|
"This flag controls the behaviour of an input method on invalid key input.
|
|
|
|
|
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
|
|
|
|
|
input method temporalily. After the key is handled, the input method is
|
|
|
|
|
back on.
|
|
|
|
|
But, if this flag is non-nil, the input method is never back on.")
|
|
|
|
|
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
1997-10-23 12:05:45 +00:00
|
|
|
|
(defvar set-language-environment-hook nil
|
|
|
|
|
"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
|
|
|
|
|
cancel the effect.")
|
|
|
|
|
|
|
|
|
|
(defvar exit-language-environment-hook nil
|
|
|
|
|
"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.
|
|
|
|
|
|
|
|
|
|
This hook is mainly used for cancelling the effect of
|
|
|
|
|
`set-language-environment-hook' (which-see).")
|
|
|
|
|
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(defun setup-specified-language-environment ()
|
1997-07-05 19:26:53 +00:00
|
|
|
|
"Set up multi-lingual environment convenient for the specified language."
|
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)))
|
|
|
|
|
(set-language-environment language-name)
|
1997-05-28 03:37:32 +00:00
|
|
|
|
(error "Bogus calling sequence"))))
|
1997-02-20 07:02:49 +00:00
|
|
|
|
|
1997-07-05 19:26:53 +00:00
|
|
|
|
(defvar current-language-environment "English"
|
|
|
|
|
"The last language environment specified with `set-language-environment'.")
|
|
|
|
|
|
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
|
|
|
|
|
and sometimes other things."
|
1997-10-23 12:05:45 +00:00
|
|
|
|
(interactive (list (read-language-name
|
|
|
|
|
'setup-function
|
|
|
|
|
"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"))
|
1997-07-15 08:24:47 +00:00
|
|
|
|
(if (null (get-language-info language-name 'setup-function))
|
1997-07-05 19:26:53 +00:00
|
|
|
|
(error "Language environment not defined: %S" language-name))
|
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)
|
|
|
|
|
(if (fboundp func) (funcall func))))
|
1997-07-05 19:26:53 +00:00
|
|
|
|
(setq current-language-environment language-name)
|
1997-10-23 12:05:45 +00:00
|
|
|
|
(funcall (get-language-info language-name 'setup-function))
|
|
|
|
|
(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
|
|
|
|
|
1998-01-22 01:42:20 +00:00
|
|
|
|
(defun set-language-environment-coding-systems (language-name)
|
|
|
|
|
"Do various coding system setups for language environment LANGUAGE-NAME."
|
|
|
|
|
(let* ((priority (get-language-info language-name 'coding-priority))
|
|
|
|
|
(default-coding (car priority)))
|
|
|
|
|
(if priority
|
|
|
|
|
(let ((categories (mapcar 'coding-system-category priority)))
|
|
|
|
|
(set-default-coding-systems default-coding)
|
|
|
|
|
(set-coding-priority categories)
|
|
|
|
|
(while priority
|
|
|
|
|
(set (car categories) (car priority))
|
|
|
|
|
(setq priority (cdr priority) categories (cdr categories)))
|
|
|
|
|
(update-iso-coding-systems)))))
|
|
|
|
|
|
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 ()
|
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)
|
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
|
1997-10-19 20:11:59 +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)))
|
1997-06-07 05:36:13 +00:00
|
|
|
|
(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-10-23 12:05:45 +00:00
|
|
|
|
(let ((aliases (coding-system-get (car l) 'alias-coding-systems)))
|
|
|
|
|
(when aliases
|
|
|
|
|
(princ "\t")
|
|
|
|
|
(princ (cons 'alias: (cdr aliases)))
|
|
|
|
|
(terpri)))
|
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
|
1997-08-02 21:59:55 +00:00
|
|
|
|
(put-charset-property CHARSET PROPNAME VALUE)."
|
1997-02-20 07:02:49 +00:00
|
|
|
|
(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
|
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)
|
|
|
|
|
"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
|