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/romanian.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/romanian.el')
-rw-r--r-- | lisp/language/romanian.el | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/lisp/language/romanian.el b/lisp/language/romanian.el index 595f0cea7e4..939643ae985 100644 --- a/lisp/language/romanian.el +++ b/lisp/language/romanian.el @@ -31,15 +31,17 @@ (defun setup-romanian-environment () "Setup multilingual environment (MULE) for Romanian." (interactive) - (setup-8-bit-environment "Romanian" 'latin-iso8859-2 "latin-2-postfix") - (load "latin-2")) + (set-language-environment "Romanian")) (set-language-info-alist - "Romanian" '((setup-function . setup-romanian-environment) - (charset . (ascii latin-iso8859-2)) + "Romanian" '((charset . (ascii latin-iso8859-2)) (coding-system . (iso-8859-2)) (coding-priority . (iso-8859-2)) - (sample-text . "Bun-Aă-B ziua, bine a-Ați-B venit!") + (nonascii-translation . latin-iso8859-2) + (input-method . "latin-2-postfix") + (unibyte-syntax . "latin-2") + (unibyte-display . iso-8859-2) + (sample-text . "Bună ziua, bine ați venit!") (documentation . t)) '("European")) |