From 27619a22206228e9a5677ebc746147ec00143968 Mon Sep 17 00:00:00 2001 From: Tassilo Horn Date: Thu, 28 Sep 2023 11:52:39 +0200 Subject: [PATCH] Fix defcustom :type of mu4e-headers-leave-behavior The const values of the choice had the wrong order `(const :tag )`. The correct order is `(const :tag )`. --- mu4e/mu4e-mark.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mu4e/mu4e-mark.el b/mu4e/mu4e-mark.el index 7d53b138..2e633c5e 100644 --- a/mu4e/mu4e-mark.el +++ b/mu4e/mu4e-mark.el @@ -45,9 +45,9 @@ Value is one of the following symbols: - `ask' ask user whether to ignore the marks - `apply' automatically apply the marks before doing anything else - `ignore' automatically ignore the marks without asking" - :type '(choice (const :tag ask "ask user whether to ignore marks") - (const :tag apply "apply marks without asking") - (const :tag ignore "ignore marks without asking")) + :type '(choice (const :tag "ask user whether to ignore marks" ask) + (const :tag "apply marks without asking" apply) + (const :tag "ignore marks without asking" ignore)) :group 'mu4e-headers) (defcustom mu4e-mark-execute-pre-hook nil