aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-09-01 19:25:12 +0000
committerRichard M. Stallman1997-09-01 19:25:12 +0000
commitbbe92e5684e69cfa21650c09c75cae3012909ffd (patch)
treed5e274aa28cd2b313a4c07586a094421a5c9388b
parent206c6f82f412760fa3630313c8e0c3126f3cc986 (diff)
downloademacs-bbe92e5684e69cfa21650c09c75cae3012909ffd.tar.gz
emacs-bbe92e5684e69cfa21650c09c75cae3012909ffd.zip
(setup-8-bit-environment): Inhibit message when loading latin-N.el.
-rw-r--r--lisp/language/european.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/language/european.el b/lisp/language/european.el
index 572ed7eb3ca..47289e6c43a 100644
--- a/lisp/language/european.el
+++ b/lisp/language/european.el
@@ -57,9 +57,9 @@
57 57
58 ;; If this is a Latin-N character set, set up syntax for it in 58 ;; If this is a Latin-N character set, set up syntax for it in
59 ;; single-byte mode. We can't use require because the file 59 ;; single-byte mode. We can't use require because the file
60 ;; must be eval'd each time. 60 ;; must be eval'd each time in case we change from one Latin-N to another.
61 (if (string-match "^Latin-\\([1-9]\\)$" language) 61 (if (string-match "^Latin-\\([1-9]\\)$" language)
62 (load (downcase language)))) 62 (load (downcase language) nil t)))
63 63
64;; Latin-1 (ISO-8859-1) 64;; Latin-1 (ISO-8859-1)
65 65