diff options
author | Kenichi Handa <handa@m17n.org> | 1997-05-12 07:00:16 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1997-05-12 07:00:16 +0000 |
commit | dc09922d1e82dbe164379301e242961748c7e67d (patch) | |
tree | a0e7f24bdd7da511752f92891f9a6716ec77bc5f /lisp/language/ethiopic.el | |
parent | fb8c8b4731971565fe497d6090d9a999b06ea8ef (diff) | |
download | emacs-dc09922d1e82dbe164379301e242961748c7e67d.tar.gz |
Make functions setup-LANGUAGE-environment
interactive and add new functions describe-LANGUAGE-support for
all LANGUAGEs supported. Remove resisterations of input methods
which use the function encoded-kbd-select-terminal.
Diffstat (limited to 'lisp/language/ethiopic.el')
-rw-r--r-- | lisp/language/ethiopic.el | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/lisp/language/ethiopic.el b/lisp/language/ethiopic.el index 7ca8e252fa2..f51d99fdeac 100644 --- a/lisp/language/ethiopic.el +++ b/lisp/language/ethiopic.el @@ -51,7 +51,9 @@ (register-input-method "Ethiopic" '("quail-ethio" quail-use-package "quail/ethiopic")) -(defun setup-ethio-environment () +(defun setup-ethiopic-environment () + "Setup multilingual environment for Ethiopic." + (interactive) (setq primary-language "Ethiopic") (setq default-input-method '("Ethiopic" . "quail-ethio")) @@ -83,10 +85,16 @@ (define-key mail-mode-map [C-f5] 'fidel-to-sera-mail))) ) +(defun describe-ethiopic-support () + "Describe how Emacs supports Ethiopic." + (interactive) + (describe-language-support-internal "Ethiopic")) + (set-language-info-alist - "Ethiopic" '((setup-function . setup-ethio-environment) + "Ethiopic" '((setup-function . setup-ethiopic-environment) + (describe-function . describe-ethiopic-support) (charset . (ethiopic)) - (documentation . t) - (sample-text . "$(3$O#U!.(B"))) + (sample-text . "$(3$O#U!.(B") + (documentation . nil))) ;;; ethiopic.el ends here |