aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-12-08 14:19:00 +0000
committerDave Love2000-12-08 14:19:00 +0000
commit9ab80679a3f02f7ced6fcee9cd9f6562bd74ce2e (patch)
treef62b4b272d0750f9d3083872f638236ecf1e1f36
parent01b9100905f94144afa37f01c1cd639beec26c5b (diff)
downloademacs-9ab80679a3f02f7ced6fcee9cd9f6562bd74ce2e.tar.gz
emacs-9ab80679a3f02f7ced6fcee9cd9f6562bd74ce2e.zip
(load-file): Fix last change.
-rw-r--r--lisp/files.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el
index 22bb8c729a1..57387b1e70e 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -537,7 +537,7 @@ colon-separated list of directories when resolving a relative directory name."
537 "Load the Lisp file named FILE." 537 "Load the Lisp file named FILE."
538 ;; This is a case where .elc makes a lot of sense. 538 ;; This is a case where .elc makes a lot of sense.
539 (interactive (list (let ((completion-ignored-extensions 539 (interactive (list (let ((completion-ignored-extensions
540 (delete ".elc" completion-ignored-extensions))) 540 (remove ".elc" completion-ignored-extensions)))
541 (read-file-name "Load file: ")))) 541 (read-file-name "Load file: "))))
542 (load (expand-file-name file) nil nil t)) 542 (load (expand-file-name file) nil nil t))
543 543