mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
Use string> instead of equiv lambda with string<
* lisp/help.el (view-emacs-news): Use string> instead of equivalent lambda with string<.
This commit is contained in:
parent
b0eb66823f
commit
9533ed8d05
1 changed files with 1 additions and 1 deletions
|
|
@ -360,7 +360,7 @@ With argument, display info only for the selected version."
|
|||
(cons "NEWS"
|
||||
(directory-files data-directory nil
|
||||
"^NEWS\\.[0-9][-0-9]*$" nil)))
|
||||
(sort (delete-dups res) (lambda (a b) (string< b a)))))
|
||||
(sort (delete-dups res) #'string>)))
|
||||
(current (car all-versions)))
|
||||
(setq version (completing-read
|
||||
(format "Read NEWS for the version (default %s): " current)
|
||||
|
|
|
|||
Loading…
Reference in a new issue