* recentf.el (recentf-keep-default-predicate): Adapt call of

`file-remote-p'.
This commit is contained in:
Michael Albinus 2007-07-17 21:08:21 +00:00
parent ac25542d33
commit 4e44b31fb8

View file

@ -103,7 +103,7 @@ must return non-nil to exclude it."
"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))))