1
0
mirror of https://github.com/djcb/mu.git synced 2024-06-20 06:46:50 +02:00

Merge pull request #2492 from RuijieYu/fix-more-defcustom-types

Fix more defcustom type errors and reworded docs
This commit is contained in:
Dirk-Jan C. Binnema 2023-05-12 21:46:21 +03:00 committed by GitHub
commit 4a6185bfc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 10 deletions

View File

@ -40,18 +40,19 @@
(defcustom mu4e-compose-reply-recipients 'ask
"Which recipients to use when replying to a message.
May be a symbol `ask', `all', `sender'. Note that that only
applies to non-mailing-list message; for those, mu4e always
asks."
:type '(choice ask
all
sender)
May be a symbol `ask', `all', `sender'. Note that this option
only applies to non-mailing-list message; for mailing-list
messages, mu4e always asks."
:type '(choice (const ask)
(const all)
(const sender))
:group 'mu4e-compose)
(defcustom mu4e-compose-reply-to-address nil
"The Reply-To address.
"When non-nil, the Reply-To address.
Useful when this is not equal to the From: address."
:type 'string
:type '(choice (const :tag "Same as the \"From:\" address" nil)
string)
:group 'mu4e-compose)
(defcustom mu4e-compose-forward-as-attachment nil

View File

@ -53,10 +53,10 @@
:group 'mu4e-headers)
(defcustom mu4e-thread-fold-single-children nil
"If set to t fold even if there is only a single child.
"When non-nil, fold a thread even if there is only a single child.
Otherwise, do not not fold single children since would simply
hide the single child."
:type 'number
:type 'boolean
:group 'mu4e-headers)
(defface mu4e-thread-fold-face