diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2020-08-08 13:49:43 +0200 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2020-08-09 20:52:34 -0300 |
| commit | e1a700067a22214f54064c281219fbbbef87de06 (patch) | |
| tree | fccae9d95e5e63a8a7b346084d3211b55bf36ef8 /emacs/notmuch-lib.el | |
| parent | 09f6533c3781b61ea634790d4bad38aadf89115c (diff) | |
emacs: Use 'when' instead of 'if' when there is no ELSE part
Diffstat (limited to 'emacs/notmuch-lib.el')
| -rw-r--r-- | emacs/notmuch-lib.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/emacs/notmuch-lib.el b/emacs/notmuch-lib.el index 98056eb6..da48bb86 100644 --- a/emacs/notmuch-lib.el +++ b/emacs/notmuch-lib.el @@ -664,11 +664,11 @@ MSG (if it isn't already)." ;; first loading gnus-art, which defines it, resulting in a ;; void-variable error. Hence, we advise `mm-shr' to ensure gnus-art ;; is loaded. -(if (>= emacs-major-version 24) - (defadvice mm-shr (before load-gnus-arts activate) - (require 'gnus-art nil t) - (ad-disable-advice 'mm-shr 'before 'load-gnus-arts) - (ad-activate 'mm-shr))) +(when (>= emacs-major-version 24) + (defadvice mm-shr (before load-gnus-arts activate) + (require 'gnus-art nil t) + (ad-disable-advice 'mm-shr 'before 'load-gnus-arts) + (ad-activate 'mm-shr))) (defun notmuch-mm-display-part-inline (msg part content-type process-crypto) "Use the mm-decode/mm-view functions to display a part in the |
