Skip to content

Commit

Permalink
Merge pull request #2657 from rrudakov/fix/2656-cite-reply-position
Browse files Browse the repository at this point in the history
Respect `message-cite-reply-position` customization
  • Loading branch information
djcb committed Mar 4, 2024
2 parents e9c8ab9 + f779e30 commit 4cac4a4
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 4cac4a4

Please sign in to comment.