diff options
author | Kyle Meyer <kyle@kyleam.com> | 2021-05-26 17:47:34 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2022-01-15 16:39:44 -0500 |
commit | 06cd608538c8f544b8105f9fdf6635aaac70510b (patch) | |
tree | dde405eeac5f0b9b762ceb26c11c9592ab360c3b | |
parent | 1669fdcb02ec86379aeae5a4ff5cfa548a39ffe8 (diff) | |
download | emacs.d-06cd608538c8f544b8105f9fdf6635aaac70510b.tar.gz |
notmuch-search-oldest-first: Set with setq-default
Needed as of Notmuch's 42d32713 (emacs: define a few variables as
automatically buffer-local, 2021-01-15).
-rw-r--r-- | init.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2026,7 +2026,7 @@ (setq notmuch-hello-sections '(notmuch-hello-insert-saved-searches)) (setq notmuch-archive-tags '("-unread")) (setq notmuch-draft-tags '("+draft" "-unread")) - (setq notmuch-search-oldest-first nil) + (setq-default notmuch-search-oldest-first nil) (setq notmuch-show-indent-messages-width 0) |