aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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.