Mercurial > emacs
changeset 81935:66d338352087
* recentf.el (recentf-keep-default-predicate): Adapt call of
`file-remote-p'.
author | Michael Albinus <michael.albinus@gmx.de> |
---|---|
date | Tue, 17 Jul 2007 21:08:21 +0000 |
parents | 7a3210e699fe |
children | 64c6efb87c40 |
files | lisp/recentf.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/recentf.el Tue Jul 17 21:07:49 2007 +0000 +++ b/lisp/recentf.el Tue Jul 17 21:08:21 2007 +0000 @@ -103,7 +103,7 @@ "Return non-nil if FILE should be kept in the recent list. It handles the case of remote files as well." (cond - ((file-remote-p file t) (file-readable-p file)) + ((file-remote-p file nil t) (file-readable-p file)) ((file-remote-p file)) ((file-readable-p file))))