From: David Edmondson Date: Fri, 6 Jan 2012 10:03:40 +0000 (+0000) Subject: emacs: Mark the quoted region during reply. X-Git-Tag: debian/0.12_rc1-1~223 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=03146f2013fb820d2b7c424d7b8e733147b5eafd emacs: Mark the quoted region during reply. Mark the quoted region of text during a reply, making it easy for the user to delete it quickly. --- diff --git a/emacs/notmuch-mua.el b/emacs/notmuch-mua.el index 7114e48a..32e2e30b 100644 --- a/emacs/notmuch-mua.el +++ b/emacs/notmuch-mua.el @@ -108,7 +108,8 @@ list." (if (re-search-backward message-signature-separator nil t) (forward-line -1) (goto-char (point-max))) - (insert body)) + (insert body) + (push-mark)) (set-buffer-modified-p nil) (message-goto-body))