mirror of
https://git.notmuchmail.org/git/notmuch
synced 2025-01-03 15:21:41 +01:00
emacs: Make saving new saved searches append, not prepend
Append new saved searches at the end of saved searches rather than insert in front. Signed-off-by: Jani Nikula <jani@nikula.org>
This commit is contained in:
parent
e312705d20
commit
a467c5f071
1 changed files with 2 additions and 2 deletions
|
@ -188,8 +188,8 @@ Typically \",\" in the US and UK and \".\" in Europe."
|
|||
collect elem))
|
||||
;; Add the new one.
|
||||
(customize-save-variable 'notmuch-saved-searches
|
||||
(push (cons name search)
|
||||
notmuch-saved-searches))
|
||||
(add-to-list 'notmuch-saved-searches
|
||||
(cons name search) t))
|
||||
(message "Saved '%s' as '%s'." search name)
|
||||
(notmuch-hello-update)))
|
||||
|
||||
|
|
Loading…
Reference in a new issue