summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2022-12-05 23:57:18 +0200
committerDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2022-12-06 08:32:17 +0200
commitbc02aaa413728845df8cbe103ce54f39889e7c6a (patch)
tree6bad77138b5adc65e0a023255411b808a7c5f2f7
parent523a458239ead86fc691a790ab08880ae029e3da (diff)
mu4e-headers: fix mu4e-headers-toggle-settingv1.8.12
-rw-r--r--mu4e/mu4e-headers.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/mu4e/mu4e-headers.el b/mu4e/mu4e-headers.el
index 302c60c..f0c7838 100644
--- a/mu4e/mu4e-headers.el
+++ b/mu4e/mu4e-headers.el
@@ -1577,7 +1577,8 @@ last search with the new setting."
(toggles (seq-map
(lambda (cell)
(cons
- (concat (car cell) (format" (%s)" (if (cdr cell) "on" "off")))
+ (concat (car cell) (format" (%s)"
+ (if (symbol-value (cdr cell)) "on" "off")))
(cdr cell))) toggles))
(choice (mu4e-read-option "Toggle setting " toggles)))
(when choice