summaryrefslogtreecommitdiff
path: root/mu4e
diff options
context:
space:
mode:
authorChristophe Troestler <Christophe.Troestler@umons.ac.be>2019-04-13 20:05:35 +0200
committerChristophe Troestler <Christophe.Troestler@umons.ac.be>2019-07-13 14:06:57 +0200
commitc639a939f485b10ff5b5c40a8b7e62024467dafa (patch)
treebac379904295c75fd10422bd6ec7bf3c7ee2f6db /mu4e
parent8ec8ab5380b6ccf7fc1bc5d5ff4aa63343389a17 (diff)
mu4e (ical): Fix indentation & typos
Diffstat (limited to 'mu4e')
-rw-r--r--mu4e/mu4e-draft.el18
-rw-r--r--mu4e/mu4e-vars.el6
2 files changed, 12 insertions, 12 deletions
diff --git a/mu4e/mu4e-draft.el b/mu4e/mu4e-draft.el
index d340d6f..3b7679c 100644
--- a/mu4e/mu4e-draft.el
+++ b/mu4e/mu4e-draft.el
@@ -413,15 +413,15 @@ You can append flags."
Replying-to-self is special; in that case, the To and Cc fields
will be the same as in the original."
(let* ((reply-to-self (mu4e-message-contact-field-matches-me origmsg :from))
- (recipnum
- (+ (length (mu4e~draft-create-to-lst origmsg))
- (length (mu4e~draft-create-cc-lst origmsg t))))
- ;; reply-to-self implies reply-all
- (reply-all (or reply-to-self (mu4e~draft-reply-all-p origmsg)))
- (old-msgid (plist-get origmsg :message-id))
- (subject
- (concat mu4e~draft-reply-prefix
- (message-strip-subject-re (or (plist-get origmsg :subject) "")))))
+ (recipnum
+ (+ (length (mu4e~draft-create-to-lst origmsg))
+ (length (mu4e~draft-create-cc-lst origmsg t))))
+ ;; reply-to-self implies reply-all
+ (reply-all (or reply-to-self (mu4e~draft-reply-all-p origmsg)))
+ (old-msgid (plist-get origmsg :message-id))
+ (subject (concat mu4e~draft-reply-prefix
+ (message-strip-subject-re
+ (or (plist-get origmsg :subject) "")))))
(concat
(mu4e~draft-header "From" (or (mu4e~draft-from-construct) ""))
(mu4e~draft-header "Reply-To" mu4e-compose-reply-to-address)
diff --git a/mu4e/mu4e-vars.el b/mu4e/mu4e-vars.el
index 8704ae8..afae182 100644
--- a/mu4e/mu4e-vars.el
+++ b/mu4e/mu4e-vars.el
@@ -941,9 +941,9 @@ This before new headers are displayed, to clear the current
headers buffer. See `mu4e~proc-filter' for the format.")
(defvar mu4e-compose-func 'mu4e~compose-handler
- "Function called for each comoose message received.
-Ie. the original message that is used as basis for composing a
-new message (ie., either a reply or a forward); the function is
+ "Function called for each compose message received.
+I.e., the original message that is used as basis for composing a
+new message (i.e., either a reply or a forward); the function is
passed msg and a symbol (either reply or forward). See
`mu4e~proc-filter' for the format of <msg-plist>.")