diff lisp/recentf.el @ 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 5608c829dbac
children b98604865ea0 a1be62cbd32a
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))))