aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-08-15 19:32:53 +0000
committerRichard M. Stallman1997-08-15 19:32:53 +0000
commitcfc1d0ba95fffceb3d37276d058016233518ffc3 (patch)
tree7ccd0f9a88d90f5527a1e0c6baefee001b9aeadf
parent34fbecde23fc6731b2414ac0fcaf4732dc5fbc72 (diff)
downloademacs-cfc1d0ba95fffceb3d37276d058016233518ffc3.tar.gz
emacs-cfc1d0ba95fffceb3d37276d058016233518ffc3.zip
(setup-8-bit-environment): Use `require' to load the latin-N file.
-rw-r--r--lisp/language/european.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/language/european.el b/lisp/language/european.el
index 5c98c9a2379..f2d5e40e1be 100644
--- a/lisp/language/european.el
+++ b/lisp/language/european.el
@@ -60,7 +60,7 @@
60 ;; If this is a Latin-N character set, set up syntax for it in 60 ;; If this is a Latin-N character set, set up syntax for it in
61 ;; single-byte mode. 61 ;; single-byte mode.
62 (if (string-match "^Latin-\\([1-9]\\)$" language) 62 (if (string-match "^Latin-\\([1-9]\\)$" language)
63 (load (downcase language)))) 63 (require (intern (downcase language)))))
64 64
65;; Latin-1 (ISO-8859-1) 65;; Latin-1 (ISO-8859-1)
66 66