1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-12 10:44:12 -08:00

(set-language-environment): Don't

concat an integer (dos-codepage), use format instead.
This commit is contained in:
Eli Zaretskii 2000-05-02 11:55:50 +00:00
parent fd72561d60
commit d9c0a50ef0

View file

@ -1284,7 +1284,7 @@ specifies the character set for the major languages of Western Europe."
(dos-table
(if (eq window-system 'pc)
(intern
(concat "cp" dos-codepage "-nonascii-translation-table")))))
(format "cp%d-nonascii-translation-table" dos-codepage)))))
(cond
((char-table-p nonascii)
(setq nonascii-translation-table nonascii))