diff options
-rw-r--r-- | lisp/help.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/help.el b/lisp/help.el index 1411c1aab9a..fd5cbc66ab2 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -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) |