mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 10:58:10 +01:00
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.
This commit is contained in:
parent
71521f06b0
commit
302120362e
1 changed files with 1 additions and 1 deletions
|
@ -888,7 +888,7 @@ the configured default sort order."
|
||||||
nil
|
nil
|
||||||
;; Use the default search order (if we're doing a search from a
|
;; Use the default search order (if we're doing a search from a
|
||||||
;; search buffer, ignore any buffer-local overrides)
|
;; 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: ")))
|
(let* ((query (or query (notmuch-read-query "Notmuch search: ")))
|
||||||
(buffer (get-buffer-create (notmuch-search-buffer-title query))))
|
(buffer (get-buffer-create (notmuch-search-buffer-title query))))
|
||||||
|
|
Loading…
Reference in a new issue