From: Mark Walters Date: Sat, 14 Sep 2013 20:17:07 +0000 (+0100) Subject: emacs: bugfix unquoted symbol X-Git-Tag: 0.17_rc1~128 X-Git-Url: https://git.notmuchmail.org/git?a=commitdiff_plain;ds=sidebyside;h=302120362e7ce50c8d24544a4ff6254e8aaff6e8;p=notmuch 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. --- 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))))