diff options
Diffstat (limited to 'lisp/files.el')
| -rw-r--r-- | lisp/files.el | 4 |
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. | |||
| 3433 | CLASS is the name of a variable class (a symbol). | 3433 | CLASS is the name of a variable class (a symbol). |
| 3434 | MTIME is the recorded modification time of the directory-local | 3434 | MTIME is the recorded modification time of the directory-local |
| 3435 | variables file associated with this entry. This time is a list | 3435 | variables file associated with this entry. This time is a list |
| 3436 | of two integers (the same format as `file-attributes'), and is | 3436 | of integers (the same format as `file-attributes'), and is |
| 3437 | used to test whether the cache entry is still valid. | 3437 | used to test whether the cache entry is still valid. |
| 3438 | Alternatively, MTIME can be nil, which means the entry is always | 3438 | Alternatively, MTIME can be nil, which means the entry is always |
| 3439 | considered valid.") | 3439 | considered valid.") |