emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r103584: * lisp/custom.el (custom-ava


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r103584: * lisp/custom.el (custom-available-themes): Return themes in alphabetical order.
Date: Mon, 07 Mar 2011 21:49:20 -0500
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 103584
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Mon 2011-03-07 21:49:20 -0500
message:
  * lisp/custom.el (custom-available-themes): Return themes in alphabetical 
order.
modified:
  lisp/ChangeLog
  lisp/custom.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-03-07 20:29:03 +0000
+++ b/lisp/ChangeLog    2011-03-08 02:49:20 +0000
@@ -1,3 +1,8 @@
+2011-03-08  Chong Yidong  <address@hidden>
+
+       * custom.el (custom-available-themes): Return themes in
+       alphabetical order.
+
 2011-03-07  Chong Yidong  <address@hidden>
 
        * progmodes/cc-cmds.el (c-beginning-of-statement): Fix incorrect

=== modified file 'lisp/custom.el'
--- a/lisp/custom.el    2011-02-01 17:34:07 +0000
+++ b/lisp/custom.el    2011-03-08 02:49:20 +0000
@@ -1219,7 +1219,7 @@
               (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)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]