[PATCH] emacs: bugfix unquoted symbol
Mark Walters
markwalters1009 at gmail.com
Sat Sep 14 13:17:07 PDT 2013
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.
---
I think this is clearly correct (and what was intended) and it seems
to work as expected.
Best wishes
Mark
emacs/notmuch.el | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/emacs/notmuch.el b/emacs/notmuch.el
index 4de6229..0ff248b 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))))
--
1.7.9.1
More information about the notmuch
mailing list