1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-21 05:21:37 -07:00

(gnus-article-reply-with-original)

(gnus-article-followup-with-original): When `transient-mark-mode' is
off, refrain from active-region behavior for followups.
This commit is contained in:
David Kastrup 2007-09-30 21:03:12 +00:00
parent aa5310e43a
commit 1d0df8af2e
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2007-09-30 David Kastrup <dak@gnu.org>
* gnus-art.el (gnus-article-reply-with-original)
(gnus-article-followup-with-original): When `transient-mark-mode' is
off, refrain from active-region behavior for followups.
2007-08-23 Katsumi Yamaoka <yamaoka@jpl.org>
* mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer.

View file

@ -5749,7 +5749,7 @@ the entire article will be yanked."
(interactive "P")
(let ((article (cdr gnus-article-current))
contents)
(if (not (gnus-mark-active-p))
(if (not (gnus-region-active-p))
(with-current-buffer gnus-summary-buffer
(gnus-summary-reply (list (list article)) wide))
(setq contents (buffer-substring (point) (mark t)))
@ -5768,7 +5768,7 @@ the entire article will be yanked."
(interactive)
(let ((article (cdr gnus-article-current))
contents)
(if (not (gnus-mark-active-p))
(if (not (gnus-region-active-p))
(with-current-buffer gnus-summary-buffer
(gnus-summary-followup (list (list article))))
(setq contents (buffer-substring (point) (mark t)))