diff options
-rw-r--r-- | lisp/gnus/message.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index f6830c13072..be19ccea38d 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el @@ -4099,6 +4099,9 @@ Instead, just auto-save the buffer and then bury it." (defun message-bury (buffer) "Bury this mail BUFFER." + ;; Note that this is not quite the same as (bury-buffer buffer), + ;; since bury-buffer does extra stuff with a nil argument. + ;; Eg http://lists.gnu.org/archive/html/emacs-devel/2014-01/msg00539.html (with-current-buffer buffer (bury-buffer)) (if message-return-action (apply (car message-return-action) (cdr message-return-action)))) |