summaryrefslogtreecommitdiff
path: root/.emacs.d/init-notmuch.el
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/init-notmuch.el')
-rw-r--r--.emacs.d/init-notmuch.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/.emacs.d/init-notmuch.el b/.emacs.d/init-notmuch.el
index ef1590ee..e8fbdebb 100644
--- a/.emacs.d/init-notmuch.el
+++ b/.emacs.d/init-notmuch.el
@@ -178,7 +178,7 @@ Two ways to read:
;; to minimise what gets committed to ~/lib/nmbug-spw
(defun spw/kill-thread ()
(interactive)
- (case major-mode
+ (cl-case major-mode
(notmuch-show-mode
(notmuch-show-tag '("+spw::killed"))
(notmuch-show-archive-thread-then-next))
@@ -193,7 +193,7 @@ Two ways to read:
(defun spw/spam-message ()
(interactive)
- (case major-mode
+ (cl-case major-mode
(notmuch-show-mode
(notmuch-show-tag '("-unread" "+spam"))
(notmuch-show-archive-message-then-next-or-next-thread))