Merge pull request #2657 from rrudakov/fix/2656-cite-reply-position

Respect `message-cite-reply-position` customization
This commit is contained in:
Dirk-Jan C. Binnema 2024-03-04 16:58:36 +02:00 committed by GitHub
commit 4cac4a415c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -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))