diff options
author | Thien-Thi Nguyen <ttn@gnuvola.org> | 2007-04-03 23:25:47 +0000 |
---|---|---|
committer | Thien-Thi Nguyen <ttn@gnuvola.org> | 2007-04-03 23:25:47 +0000 |
commit | c345112ee13b28c6745ad33778d859284a6480c0 (patch) | |
tree | 22222edec581d41854d587b4eeb19be3fb7f82ea /lisp/gnus/gnus-msg.el | |
parent | d2b3c7dbb8d7ab39de31e6011b2224183b9110a0 (diff) | |
download | emacs-c345112ee13b28c6745ad33778d859284a6480c0.tar.gz |
(gnus-inews-yank-articles): Fix bug: After
message-yank-original, make sure (< mark TEXT point).
Diffstat (limited to 'lisp/gnus/gnus-msg.el')
-rw-r--r-- | lisp/gnus/gnus-msg.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/gnus/gnus-msg.el b/lisp/gnus/gnus-msg.el index aaf30700e3d..2e9975f4876 100644 --- a/lisp/gnus/gnus-msg.el +++ b/lisp/gnus/gnus-msg.el @@ -771,6 +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) (setq beg (or beg (mark t)))) (when articles (insert "\n"))) |