# HG changeset patch # User Michael Albinus # Date 1184706501 0 # Node ID 66d3383520878f23f3694c441cb016922220a529 # Parent 7a3210e699fe7ab11718967f9fa476115b09ded0 * recentf.el (recentf-keep-default-predicate): Adapt call of `file-remote-p'. diff -r 7a3210e699fe -r 66d338352087 lisp/recentf.el --- 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))))