]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/custom.el (custom-available-themes): Return themes in alphabetical order.
authorChong Yidong <cyd@stupidchicken.com>
Tue, 8 Mar 2011 02:49:20 +0000 (21:49 -0500)
committerChong Yidong <cyd@stupidchicken.com>
Tue, 8 Mar 2011 02:49:20 +0000 (21:49 -0500)
lisp/ChangeLog
lisp/custom.el

index 1302bb414b2fc0d0c70d94b1cd393a51a94cef8e..03fbe15a616b7e6dc75a6913a527bfc01f83a590 100644 (file)
@@ -1,3 +1,8 @@
+2011-03-08  Chong Yidong  <cyd@stupidchicken.com>
+
+       * custom.el (custom-available-themes): Return themes in
+       alphabetical order.
+
 2011-03-07  Chong Yidong  <cyd@stupidchicken.com>
 
        * progmodes/cc-cmds.el (c-beginning-of-statement): Fix incorrect
index e41e7c7bdf877e80286ac39f6335d378d2a98803..923321c03c9648d9eb157599a16a6d173309bbdb 100644 (file)
@@ -1219,7 +1219,7 @@ NAME should be a symbol."
               (setq sym (intern (match-string 1 file)))
               (custom-theme-name-valid-p sym)
               (push sym themes)))))
-    (delete-dups themes)))
+    (nreverse (delete-dups themes))))
 
 (defun custom-theme--load-path ()
   (let (lpath)