aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2002-10-05 19:04:00 +0000
committerDave Love2002-10-05 19:04:00 +0000
commit5b74b0c7b668ca958263dfe73a2b41e27e4efc0e (patch)
tree5eaf3cc489ded8017be1ca01a41659c91422fbe1
parent2aa97617357d38774186ba99af944568b3d2c17f (diff)
downloademacs-5b74b0c7b668ca958263dfe73a2b41e27e4efc0e.tar.gz
emacs-5b74b0c7b668ca958263dfe73a2b41e27e4efc0e.zip
(set-language-environment): Check
for charset property of environment.
-rw-r--r--lisp/international/mule-cmds.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el
index 7c1b1a13737..6e925d33cf4 100644
--- a/lisp/international/mule-cmds.el
+++ b/lisp/international/mule-cmds.el
@@ -1442,7 +1442,9 @@ specifies the character set for the major languages of Western Europe."
1442 1442
1443 ;; Fixme: default from the environment coding system where that's 1443 ;; Fixme: default from the environment coding system where that's
1444 ;; charset-based. 1444 ;; charset-based.
1445 (apply 'set-charset-priority (get-language-info language-name 'charset)) 1445 (if (get-language-info language-name 'charset)
1446 (apply 'set-charset-priority (get-language-info language-name
1447 'charset)))
1446 1448
1447 ;; Note: For DOS, we assumed that the charset cpXXX is already 1449 ;; Note: For DOS, we assumed that the charset cpXXX is already
1448 ;; defined. 1450 ;; defined.