diff options
author | Miles Bader <miles@gnu.org> | 2007-04-10 23:48:06 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2007-04-10 23:48:06 +0000 |
commit | c429815a6b9d271a57eed4956125f6bc89d1d72b (patch) | |
tree | 98de0741f48b29dfd615ff588869e5f211df9258 /lisp/gnus/gnus-msg.el | |
parent | 69c8eea222ac5461ada4bed3828ebc17231e9447 (diff) | |
download | emacs-c429815a6b9d271a57eed4956125f6bc89d1d72b.tar.gz |
Merge from gnus--rel--5.10
Patches applied:
* gnus--rel--5.10 (patch 214-215)
- Merge from emacs--devo--0
- Update from CVS
2007-04-10 Katsumi Yamaoka <yamaoka@jpl.org>
* lisp/gnus/gnus-msg.el (gnus-inews-yank-articles): Use
message-exchange-point-and-mark instead of exchange-point-and-mark.
2007-04-09 Katsumi Yamaoka <yamaoka@jpl.org>
* lisp/gnus/message.el (message-yank-original): Make sure cited text ends with
newline; don't exchange point and mark.
2007-04-07 Chong Yidong <cyd@stupidchicken.com>
* lisp/gnus/tls.el (open-tls-stream): Properly handle case where there
is no associated buffer.
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-697
Diffstat (limited to 'lisp/gnus/gnus-msg.el')
-rw-r--r-- | lisp/gnus/gnus-msg.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/gnus-msg.el b/lisp/gnus/gnus-msg.el index 2e9975f4876..055fc75626a 100644 --- a/lisp/gnus/gnus-msg.el +++ b/lisp/gnus/gnus-msg.el @@ -771,7 +771,7 @@ active, the entire article will be yanked." (nnheader-narrow-to-headers) (nnheader-parse-naked-head))))) (message-yank-original) - (exchange-point-and-mark) ; so that (< mark TEXT point) + (message-exchange-point-and-mark) (setq beg (or beg (mark t)))) (when articles (insert "\n"))) |