diff options
| author | Eli Zaretskii | 2011-09-02 20:57:45 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2011-09-02 20:57:45 +0300 |
| commit | 9af32a1a25d9619e17abfb8a21b2938017cf56b3 (patch) | |
| tree | f3643bc4f8d09278beb93c3960526afa40f5fd6c | |
| parent | c33134511b466d746312becbc0e4ef59bb9258ac (diff) | |
| download | emacs-9af32a1a25d9619e17abfb8a21b2938017cf56b3.tar.gz emacs-9af32a1a25d9619e17abfb8a21b2938017cf56b3.zip | |
lisp/gnus/message.el (message-setup-1): Return t (Bug#9392).
| -rw-r--r-- | lisp/gnus/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/gnus/message.el | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 8646f687420..db5ee353c3c 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-09-02 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * message.el (message-setup-1): Return t (Bug#9392). | ||
| 4 | |||
| 1 | 2011-09-01 Andrew Cohen <cohen@andy.bu.edu> | 5 | 2011-09-01 Andrew Cohen <cohen@andy.bu.edu> |
| 2 | 6 | ||
| 3 | * gnus-sum.el: When adding article headers to a summary buffer also | 7 | * gnus-sum.el: When adding article headers to a summary buffer also |
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index 52cef1925a2..194ebf81873 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el | |||
| @@ -6530,7 +6530,9 @@ are not included." | |||
| 6530 | (message-position-point) | 6530 | (message-position-point) |
| 6531 | ;; Allow correct handling of `message-checksum' in `message-yank-original': | 6531 | ;; Allow correct handling of `message-checksum' in `message-yank-original': |
| 6532 | (set-buffer-modified-p nil) | 6532 | (set-buffer-modified-p nil) |
| 6533 | (undo-boundary)) | 6533 | (undo-boundary) |
| 6534 | ;; rmail-start-mail expects message-mail to return t (Bug#9392) | ||
| 6535 | t) | ||
| 6534 | 6536 | ||
| 6535 | (defun message-set-auto-save-file-name () | 6537 | (defun message-set-auto-save-file-name () |
| 6536 | "Associate the message buffer with a file in the drafts directory." | 6538 | "Associate the message buffer with a file in the drafts directory." |