* recentf.el (recentf-keep-default-predicate): Adapt call of
authorMichael Albinus <michael.albinus@gmx.de>
Tue, 17 Jul 2007 21:08:21 +0000 (21:08 +0000)
committerMichael Albinus <michael.albinus@gmx.de>
Tue, 17 Jul 2007 21:08:21 +0000 (21:08 +0000)
`file-remote-p'.

lisp/recentf.el

index aea7528..5c7472f 100644 (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))))