aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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