From 302120362e7ce50c8d24544a4ff6254e8aaff6e8 Mon Sep 17 00:00:00 2001 From: Mark Walters Date: Sat, 14 Sep 2013 21:17:07 +0100 Subject: [PATCH] emacs: bugfix unquoted symbol In the recent changes for search order handling the default-value of notmuch-search-oldest-first was used. However, default-value needs a symbol so the symbol-name needs to be quoted. This missing quote was causing strange sort-orders in some cases. --- emacs/notmuch.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacs/notmuch.el b/emacs/notmuch.el index 4de6229d..0ff248b9 100644 --- a/emacs/notmuch.el +++ b/emacs/notmuch.el @@ -888,7 +888,7 @@ the configured default sort order." nil ;; Use the default search order (if we're doing a search from a ;; search buffer, ignore any buffer-local overrides) - (default-value notmuch-search-oldest-first))) + (default-value 'notmuch-search-oldest-first))) (let* ((query (or query (notmuch-read-query "Notmuch search: "))) (buffer (get-buffer-create (notmuch-search-buffer-title query)))) -- 2.43.0