aboutsummaryrefslogtreecommitdiffhomepage
path: root/emacs/notmuch-mua.el
diff options
context:
space:
mode:
authorGravatar David Edmondson <dme@dme.org>2012-01-06 10:03:40 +0000
committerGravatar David Bremner <bremner@debian.org>2012-01-10 06:31:02 -0400
commit03146f2013fb820d2b7c424d7b8e733147b5eafd (patch)
tree16726628b8bb4e6a947382886a53bd16b014e047 /emacs/notmuch-mua.el
parenta74ec0edd65f46eca097fd7784aaaef88801267e (diff)
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.
Diffstat (limited to 'emacs/notmuch-mua.el')
-rw-r--r--emacs/notmuch-mua.el3
1 files changed, 2 insertions, 1 deletions
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))