diff options
| author | Chong Yidong | 2010-01-17 18:49:27 -0500 |
|---|---|---|
| committer | Chong Yidong | 2010-01-17 18:49:27 -0500 |
| commit | f53a65903cdb66a73b919617054a69ce8042e495 (patch) | |
| tree | 1384519e98ce77a3575747fa829ed6ab3439738d | |
| parent | 9295137d69b5a0494b54c49736bb86ef689ce9b0 (diff) | |
| download | emacs-f53a65903cdb66a73b919617054a69ce8042e495.tar.gz emacs-f53a65903cdb66a73b919617054a69ce8042e495.zip | |
* message.el (message-setup-1): Prefer to save message-reply-buffer as a buffer.
| -rw-r--r-- | lisp/gnus/ChangeLog | 1 | ||||
| -rw-r--r-- | lisp/gnus/message.el | 6 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index e334ef97244..1c1c62bb1b0 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -5,6 +5,7 @@ | |||
| 5 | (message-with-reply-buffer, message-widen-reply) | 5 | (message-with-reply-buffer, message-widen-reply) |
| 6 | (message-yank-original): Handle non-buffer values of | 6 | (message-yank-original): Handle non-buffer values of |
| 7 | message-reply-buffer (Bug#4080). | 7 | message-reply-buffer (Bug#4080). |
| 8 | (message-setup-1): Prefer to save message-reply-buffer as a buffer. | ||
| 8 | 9 | ||
| 9 | 2010-01-17 Juanma Barranquero <lekktu@gmail.com> | 10 | 2010-01-17 Juanma Barranquero <lekktu@gmail.com> |
| 10 | 11 | ||
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index c91bcd77195..7194813422a 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el | |||
| @@ -6320,7 +6320,11 @@ are not included." | |||
| 6320 | (condition-case nil | 6320 | (condition-case nil |
| 6321 | (add-to-list 'message-send-actions | 6321 | (add-to-list 'message-send-actions |
| 6322 | `(apply ',(car action) ',(cdr action))))) | 6322 | `(apply ',(car action) ',(cdr action))))) |
| 6323 | (setq message-reply-buffer yank-action) | 6323 | (setq message-reply-buffer |
| 6324 | (if (and (consp yank-action) | ||
| 6325 | (eq (car yank-action) 'insert-buffer)) | ||
| 6326 | (nth 1 yank-action) | ||
| 6327 | yank-action)) | ||
| 6324 | (goto-char (point-min)) | 6328 | (goto-char (point-min)) |
| 6325 | ;; Insert all the headers. | 6329 | ;; Insert all the headers. |
| 6326 | (mail-header-format | 6330 | (mail-header-format |