diff options
| author | Kenichi Handa | 2012-11-23 23:36:24 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2012-11-23 23:36:24 +0900 |
| commit | 2aaec2d9be5cec44ea3b59cba476fd3e091f2fc9 (patch) | |
| tree | 3711b97807201b7eeaa066003b1c3a4ce929e5bb /lisp/files.el | |
| parent | e1d276cbf9e18f13101328f56bed1a1c0a66e63a (diff) | |
| parent | e7d0e5ee247a155a268ffbf80bedbe25e15b5032 (diff) | |
| download | emacs-2aaec2d9be5cec44ea3b59cba476fd3e091f2fc9.tar.gz emacs-2aaec2d9be5cec44ea3b59cba476fd3e091f2fc9.zip | |
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.") |