aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2003-11-24 08:29:16 +0000
committerKenichi Handa2003-11-24 08:29:16 +0000
commit9d0ca2a33f60ef4713339313315d512bdf94568c (patch)
treefb43c8fc0291f38aac2a8666712c25c0d6683c9d
parentc2e3456e63f66b117d4576b0ea4b71109fe56930 (diff)
downloademacs-9d0ca2a33f60ef4713339313315d512bdf94568c.tar.gz
emacs-9d0ca2a33f60ef4713339313315d512bdf94568c.zip
(set-language-environment): Put higher priority to charsets listed in
`charset' property of the language environment.
-rw-r--r--lisp/international/mule-cmds.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el
index c3545347335..82456859ebb 100644
--- a/lisp/international/mule-cmds.el
+++ b/lisp/international/mule-cmds.el
@@ -1700,7 +1700,7 @@ specifies the character set for the major languages of Western Europe."
1700 1700
1701 ;; Put higher priorities to such charsets that are supported by the 1701 ;; Put higher priorities to such charsets that are supported by the
1702 ;; coding systems of higher priorities in this environment. 1702 ;; coding systems of higher priorities in this environment.
1703 (let ((charsets nil)) 1703 (let ((charsets (get-language-info language-name 'charset)))
1704 (dolist (coding (get-language-info language-name 'coding-priority)) 1704 (dolist (coding (get-language-info language-name 'coding-priority))
1705 (setq charsets (append charsets (coding-system-charset-list coding)))) 1705 (setq charsets (append charsets (coding-system-charset-list coding))))
1706 (if charsets 1706 (if charsets