aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-06-07 07:02:02 +0000
committerRichard M. Stallman1997-06-07 07:02:02 +0000
commit15bc5d3b52f3d0a2600eb5650eb521cb65a2f469 (patch)
tree7e2264c06a9ac68b40e60791400afb9bf20a42db
parentaad1beef6657e46da6e3c24b576e61b6c4c8cbc9 (diff)
downloademacs-15bc5d3b52f3d0a2600eb5650eb521cb65a2f469.tar.gz
emacs-15bc5d3b52f3d0a2600eb5650eb521cb65a2f469.zip
(setup-8-bit-environment):
Load the file with load, not require, so that we reload it if nec.
-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 dba8684d2ac..9c1903a5c59 100644
--- a/lisp/language/european.el
+++ b/lisp/language/european.el
@@ -63,7 +63,7 @@
63 ;; in single-byte mode. 63 ;; in single-byte mode.
64 (when (and latin-name 64 (when (and latin-name
65 (string-match "^Latin-\\([1-9]\\)$" latin-name)) 65 (string-match "^Latin-\\([1-9]\\)$" latin-name))
66 (require (intern (downcase latin-name))))))) 66 (load (downcase latin-name))))))
67 67
68;; Latin-1 (ISO-8859-1) 68;; Latin-1 (ISO-8859-1)
69 69