unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* [PATCH 1/2] emacs: hello: bugfix: make alphabetically sorted saved searches work
@ 2014-04-12  8:40 Mark Walters
  2014-04-12  8:40 ` [PATCH 2/2] NEWS: document possible breakage from saved-search format change Mark Walters
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Mark Walters @ 2014-04-12  8:40 UTC (permalink / raw)
  To: notmuch

My recent changes to the saved search format broke the alphabetically
sorted saved sort option. This makes it work again.

Also, since the saved-search list is no longer an alist change the
names in the sort function to avoid confusion.
---
Thanks to Jani for pointing out the bug.

Best wishes

Mark

 emacs/notmuch-hello.el |    9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/emacs/notmuch-hello.el b/emacs/notmuch-hello.el
index 4900a24..fca2bcc 100644
--- a/emacs/notmuch-hello.el
+++ b/emacs/notmuch-hello.el
@@ -39,9 +39,12 @@ (defcustom notmuch-show-empty-saved-searches nil
   :type 'boolean
   :group 'notmuch-hello)
 
-(defun notmuch-sort-saved-searches (alist)
-  "Generate an alphabetically sorted saved searches alist."
-  (sort (copy-sequence alist) (lambda (a b) (string< (car a) (car b)))))
+(defun notmuch-sort-saved-searches (saved-searches)
+  "Generate an alphabetically sorted saved searches list."
+  (sort (copy-sequence saved-searches)
+	(lambda (a b)
+	  (string< (notmuch-saved-search-get a :name)
+		   (notmuch-saved-search-get b :name)))))
 
 (defcustom notmuch-saved-search-sort-function nil
   "Function used to sort the saved searches for the notmuch-hello view.
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-04-12 10:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-12  8:40 [PATCH 1/2] emacs: hello: bugfix: make alphabetically sorted saved searches work Mark Walters
2014-04-12  8:40 ` [PATCH 2/2] NEWS: document possible breakage from saved-search format change Mark Walters
2014-04-12  8:51 ` [PATCH] emacs: hello: update docs for saved-search sort defcustom Mark Walters
2014-04-12 10:50 ` [PATCH 1/2] emacs: hello: bugfix: make alphabetically sorted saved searches work Jani Nikula

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).