* lisp/recentf.el (recentf-open): Let bind 'completions-sort' to nil.
* etc/NEWS: Announce it.
of the accessibility of remote files can now time out if
'remote-file-name-access-timeout' is set to a positive number.
+---
+*** 'M-x recentf' completion candidates now sorted by recency.
+Emacs now sorts file names in 'M-x recentf' completion by recency,
+with the file you've accessed most recently first.
+
+
** Notifications
+++
"Prompt for FILE in `recentf-list' and visit it.
Enable `recentf-mode' if it isn't already."
(interactive
- (list
- (progn (unless recentf-mode (recentf-mode 1))
- (completing-read (format-prompt "Open recent file" nil)
- recentf-list nil t))))
+ (let ((completions-sort nil))
+ (list
+ (progn (unless recentf-mode (recentf-mode 1))
+ (completing-read (format-prompt "Open recent file" nil)
+ recentf-list nil t)))))
(when file
(funcall recentf-menu-action file)))