From 4e44b31fb8ba8af9884657f945b40570760af95b Mon Sep 17 00:00:00 2001 From: Michael Albinus Date: Tue, 17 Jul 2007 21:08:21 +0000 Subject: [PATCH] * recentf.el (recentf-keep-default-predicate): Adapt call of `file-remote-p'. --- lisp/recentf.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/recentf.el b/lisp/recentf.el index aea7528b2ce..5c7472f96d3 100644 --- a/lisp/recentf.el +++ b/lisp/recentf.el @@ -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)))) -- 2.39.2