diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-12-17 00:51:30 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-12-17 00:51:30 +0000 |
commit | 396134d7a30fb9cef4ccd4e07d38681b84dc0821 (patch) | |
tree | 511808d38d2de9edaecc883de6940063b11aa85a | |
parent | 56eb270e3b1d9ee8ef6c87748372229b835b37a9 (diff) | |
download | emacs-396134d7a30fb9cef4ccd4e07d38681b84dc0821.tar.gz |
(gnus-mail-reply-using-mail): Don't save point;
yank the original at point.
-rw-r--r-- | lisp/gnusmail.el | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lisp/gnusmail.el b/lisp/gnusmail.el index b8f62346565..293bde54f4a 100644 --- a/lisp/gnusmail.el +++ b/lisp/gnusmail.el @@ -99,11 +99,7 @@ Optional argument YANK means yank original article." (news-mail-reply) (gnus-overload-functions) (if yank - (let ((last (point))) - (goto-char (point-max)) - (mail-yank-original nil) - (goto-char last) - ))) + (mail-yank-original nil))) (defun gnus-mail-forward-using-mail () "Forward the current message to another user using mail." |