+2003-05-02 Tak Ota <Takaaki.Ota@am.sony.com> (tiny change)
+
+ * recentf.el (recentf-cleanup): Swap tests for exclusion and
+ accessibility.
+
2003-05-01 Eduardo Mu\e,Aq\e(Boz <emufer@terra.es> (tiny change)
* ls-lisp.el (ls-lisp-format-file-size): New function to implement
;; Maintainer: FSF
;; Keywords: files
-(defconst recentf-version "$Revision$")
+(defconst recentf-version "$Revision: 1.23 $")
;; This file is part of GNU Emacs.
(message "Cleaning up the recentf list...")
(let (newlist)
(dolist (f recentf-list)
- (if (and (file-readable-p f) (recentf-include-p f))
+ (if (and (recentf-include-p f) (file-readable-p f))
(push f newlist)
(message "File %s removed from the recentf list" f)))
(setq recentf-list (nreverse newlist))