diff options
| author | David Kastrup | 2007-09-30 21:03:12 +0000 |
|---|---|---|
| committer | David Kastrup | 2007-09-30 21:03:12 +0000 |
| commit | 1d0df8af2e4aecf51282b3b05538640a2d3feb86 (patch) | |
| tree | 60afa5fe05a6a4f012c2f2d2401d1734a6d523a1 | |
| parent | aa5310e43ad28f8955c2c1e10bde32f227950956 (diff) | |
| download | emacs-1d0df8af2e4aecf51282b3b05538640a2d3feb86.tar.gz emacs-1d0df8af2e4aecf51282b3b05538640a2d3feb86.zip | |
(gnus-article-reply-with-original)
(gnus-article-followup-with-original): When `transient-mark-mode' is
off, refrain from active-region behavior for followups.
| -rw-r--r-- | lisp/gnus/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/gnus/gnus-art.el | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 0cf879fd264..03156b7158e 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2007-09-30 David Kastrup <dak@gnu.org> | ||
| 2 | |||
| 3 | * gnus-art.el (gnus-article-reply-with-original) | ||
| 4 | (gnus-article-followup-with-original): When `transient-mark-mode' is | ||
| 5 | off, refrain from active-region behavior for followups. | ||
| 6 | |||
| 1 | 2007-08-23 Katsumi Yamaoka <yamaoka@jpl.org> | 7 | 2007-08-23 Katsumi Yamaoka <yamaoka@jpl.org> |
| 2 | 8 | ||
| 3 | * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer. | 9 | * mml.el (mml-generate-mime): Make sure it uses multibyte temp buffer. |
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el index 696222e0043..a02a7d153bb 100644 --- a/lisp/gnus/gnus-art.el +++ b/lisp/gnus/gnus-art.el | |||
| @@ -5749,7 +5749,7 @@ the entire article will be yanked." | |||
| 5749 | (interactive "P") | 5749 | (interactive "P") |
| 5750 | (let ((article (cdr gnus-article-current)) | 5750 | (let ((article (cdr gnus-article-current)) |
| 5751 | contents) | 5751 | contents) |
| 5752 | (if (not (gnus-mark-active-p)) | 5752 | (if (not (gnus-region-active-p)) |
| 5753 | (with-current-buffer gnus-summary-buffer | 5753 | (with-current-buffer gnus-summary-buffer |
| 5754 | (gnus-summary-reply (list (list article)) wide)) | 5754 | (gnus-summary-reply (list (list article)) wide)) |
| 5755 | (setq contents (buffer-substring (point) (mark t))) | 5755 | (setq contents (buffer-substring (point) (mark t))) |
| @@ -5768,7 +5768,7 @@ the entire article will be yanked." | |||
| 5768 | (interactive) | 5768 | (interactive) |
| 5769 | (let ((article (cdr gnus-article-current)) | 5769 | (let ((article (cdr gnus-article-current)) |
| 5770 | contents) | 5770 | contents) |
| 5771 | (if (not (gnus-mark-active-p)) | 5771 | (if (not (gnus-region-active-p)) |
| 5772 | (with-current-buffer gnus-summary-buffer | 5772 | (with-current-buffer gnus-summary-buffer |
| 5773 | (gnus-summary-followup (list (list article)))) | 5773 | (gnus-summary-followup (list (list article)))) |
| 5774 | (setq contents (buffer-substring (point) (mark t))) | 5774 | (setq contents (buffer-substring (point) (mark t))) |