Skip to content

Commit

Permalink
[#2656] Respect message-cite-reply-position customization
Browse files Browse the repository at this point in the history
  • Loading branch information
rrudakov committed Mar 4, 2024
1 parent 1e5a807 commit f779e30
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mu4e/mu4e-compose.el
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,9 @@ Is this address yours?"
(message-goto-to)
(if (not (message-field-value "Subject"))
(message-goto-subject)
(message-goto-body)))
(pcase message-cite-reply-position
((or 'above 'traditional) (message-goto-body))
(_ (when (message-goto-signature) (forward-line -2))))))
;; buffer is not user-modified yet
(set-buffer-modified-p nil)
(undo-boundary))
Expand Down

0 comments on commit f779e30

Please sign in to comment.