projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b0eb668
)
Use string> instead of equiv lambda with string<
author
Tassilo Horn
<tsdh@gnu.org>
Fri, 5 Jun 2015 21:58:39 +0000
(23:58 +0200)
committer
Tassilo Horn
<tsdh@gnu.org>
Fri, 5 Jun 2015 21:58:39 +0000
(23:58 +0200)
* lisp/help.el (view-emacs-news): Use string> instead of equivalent
lambda with string<.
lisp/help.el
patch
|
blob
|
history
diff --git
a/lisp/help.el
b/lisp/help.el
index 1411c1aab9a6dd304e285c92b8490f687d3f80fb..fd5cbc66ab27297923ee08e5e502da0c53c46c94 100644
(file)
--- 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)