mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
emacs: push mark before signature on reply
We push mark on reply so user can cut the quote. Push the mark before signature, if any, instead of end of buffer so the signature is preserved. This is consistent with message-kill-to-signature.
This commit is contained in:
parent
31fc76b782
commit
d0c4cd7e58
1 changed files with 5 additions and 1 deletions
|
@ -226,8 +226,12 @@ list."
|
|||
;; Quote the original message according to the user's configured style.
|
||||
(message-cite-original))))
|
||||
|
||||
(goto-char (point-max))
|
||||
;; Push mark right before signature, if any.
|
||||
(message-goto-signature)
|
||||
(unless (eobp)
|
||||
(end-of-line -1))
|
||||
(push-mark)
|
||||
|
||||
(message-goto-body)
|
||||
(set-buffer-modified-p nil))
|
||||
|
||||
|
|
Loading…
Reference in a new issue