summaryrefslogtreecommitdiff
path: root/mu4e/mu4e-thread.el
diff options
context:
space:
mode:
authorDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2024-10-28 21:50:49 +0200
committerDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2024-10-28 21:50:49 +0200
commitb4adf328f4e26f729dca10331c647d4e8b36a4d4 (patch)
tree7249aa067dd1b704914464459518c026286c0bc4 /mu4e/mu4e-thread.el
parent0f16b22bf7907769a47d1a525dbe2e22348fd5cf (diff)
mu4e: use if-let*, when-let*
Avoid the silly byte-compilation warning
Diffstat (limited to 'mu4e/mu4e-thread.el')
-rw-r--r--mu4e/mu4e-thread.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/mu4e/mu4e-thread.el b/mu4e/mu4e-thread.el
index c973745..2f093b8 100644
--- a/mu4e/mu4e-thread.el
+++ b/mu4e/mu4e-thread.el
@@ -206,7 +206,7 @@ Reset individual folding states."
"Unfold thread at point and store state unless NO-SAVE is t."
(interactive)
(unless (eq (line-end-position) (point-max))
- (when-let ((overlay (mu4e-thread-is-folded)))
+ (when-let* ((overlay (mu4e-thread-is-folded)))
(unless no-save
(mu4e-thread--save-state 'unfolded))
(delete-overlay overlay))))