Skip to content

Commit

Permalink
Merge pull request #2560 from tsdh/fix-custom-type-in-mu4e-mark
Browse files Browse the repository at this point in the history
Fix defcustom :type of mu4e-headers-leave-behavior
  • Loading branch information
djcb authored Oct 2, 2023
2 parents ee18c02 + 27619a2 commit 964cf0c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mu4e/mu4e-mark.el
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 964cf0c

Please sign in to comment.