aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/files.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/files.el')
-rw-r--r--lisp/files.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/files.el b/lisp/files.el
index 8e8a178caab..496f9bf8fa4 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -730,7 +730,7 @@ The path separator is colon in GNU and GNU-like systems."
730 ;; This is a case where .elc makes a lot of sense. 730 ;; This is a case where .elc makes a lot of sense.
731 (interactive (list (let ((completion-ignored-extensions 731 (interactive (list (let ((completion-ignored-extensions
732 (remove ".elc" completion-ignored-extensions))) 732 (remove ".elc" completion-ignored-extensions)))
733 (read-file-name "Load file: ")))) 733 (read-file-name "Load file: " nil nil 'lambda))))
734 (load (expand-file-name file) nil nil t)) 734 (load (expand-file-name file) nil nil t))
735 735
736(defun locate-file (filename path &optional suffixes predicate) 736(defun locate-file (filename path &optional suffixes predicate)
@@ -3433,7 +3433,7 @@ DIR is the name of the directory.
3433CLASS is the name of a variable class (a symbol). 3433CLASS is the name of a variable class (a symbol).
3434MTIME is the recorded modification time of the directory-local 3434MTIME is the recorded modification time of the directory-local
3435variables file associated with this entry. This time is a list 3435variables file associated with this entry. This time is a list
3436of two integers (the same format as `file-attributes'), and is 3436of integers (the same format as `file-attributes'), and is
3437used to test whether the cache entry is still valid. 3437used to test whether the cache entry is still valid.
3438Alternatively, MTIME can be nil, which means the entry is always 3438Alternatively, MTIME can be nil, which means the entry is always
3439considered valid.") 3439considered valid.")