From: Tassilo Horn Date: Fri, 5 Jun 2015 21:58:39 +0000 (+0200) Subject: Use string> instead of equiv lambda with string< X-Git-Tag: emacs-25.0.90~1854 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9533ed8d05c347b513f8680ecde8d4120114b2b9;p=emacs.git Use string> instead of equiv lambda with string< * lisp/help.el (view-emacs-news): Use string> instead of equivalent lambda with string<. --- 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)