diff options
author | Kenichi Handa <handa@m17n.org> | 1998-08-10 06:29:02 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1998-08-10 06:29:02 +0000 |
commit | 8f76845d7eef977f60ef1e95d9bdeccb8249638c (patch) | |
tree | 88abe084fe78e1989fcd91fdd40930506e87b51f /lisp/language/misc-lang.el | |
parent | 6e49aeecbf0de2eca73dbbd3c1fbfc424bccaa71 (diff) | |
download | emacs-8f76845d7eef977f60ef1e95d9bdeccb8249638c.tar.gz |
(setup-XXX-environment): Just call set-language-environment. If
they used to do some other jobs than what done by
set-language-environment, those jobs are done in
setup-XXX-environment-internal now.
("LANUGAGE-ENVIRONMENT"): Delete property setup-function or change
the value to setup-XXX-environment-internal. Add properties
nonascii-translation, input-method, features, unibyte-syntax, and
unibyte-display.
Diffstat (limited to 'lisp/language/misc-lang.el')
-rw-r--r-- | lisp/language/misc-lang.el | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/language/misc-lang.el b/lisp/language/misc-lang.el index 53b1399bbab..9fe1580a4a8 100644 --- a/lisp/language/misc-lang.el +++ b/lisp/language/misc-lang.el @@ -29,13 +29,15 @@ (defun setup-ipa-environment () "Setup multilingual environment (MULE) for IPA." (interactive) - (setup-english-environment)) + (set-language-environment "IPA")) (set-language-info-alist - "IPA" '((setup-function . setup-ipa-environment) - (charset . (ipa)) + "IPA" '((charset . (ipa)) (coding-priority iso-2022-7bit) (coding-system iso-2022-7bit) + (input-method . "ipa") + (nonascii-translation . ipa) + (unibyte-display . iso-2022-7bit) (documentation . "\ IPA is International Phonetic Alphabet for English, French, German and Italian."))) |