diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2021-01-10 15:01:03 +0100 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2021-01-15 06:44:01 -0400 |
| commit | 42d32713be9a23346de09b84983e1dd3b44b3400 (patch) | |
| tree | d3aa2c1a8abde14d54265c04513e393c8b0e1b1b /emacs/notmuch-lib.el | |
| parent | b614ea756316a18d90f5acfa352e82f2ffec8a67 (diff) | |
emacs: define a few variables as automatically buffer-local
Define these variables as automatically buffer-local, meaning that
they always become buffer-local when set unless explicitly told
otherwise using `setq-default' or when using the Custom interface.
Previously they were declared, which keeps the byte-compiler quiet but
is not actually the same as being defined. `notmuch-search-mode' then
made them buffer-local in the current buffer and then set the local
values. This works but is not kosher.
The definitions of the three non-option variables have to be moved up
a bit to enable the change in the next commit, which see.
Diffstat (limited to 'emacs/notmuch-lib.el')
| -rw-r--r-- | emacs/notmuch-lib.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/emacs/notmuch-lib.el b/emacs/notmuch-lib.el index 72549a98..2fd9a27d 100644 --- a/emacs/notmuch-lib.el +++ b/emacs/notmuch-lib.el @@ -101,6 +101,7 @@ search results. Note that any filtered searches created by search." :type 'boolean :group 'notmuch-search) +(make-variable-buffer-local 'notmuch-search-oldest-first) (defcustom notmuch-poll-script nil "[Deprecated] Command to run to incorporate new mail into the notmuch database. |
