Ref: http://lists.gnu.org/archive/html/emacs-devel/2014-01/msg00539.html
* lisp/gnus/message.el (message-bury): Call bury-buffer with no
argument in the message-return-action case too.
+2014-01-09 Ken Olum <kdo@cosmos.phy.tufts.edu> (tiny change)
+
+ * message.el (message-bury): Call bury-buffer with no argument
+ in the message-return-action case too.
+
2014-01-05 Katsumi Yamaoka <yamaoka@jpl.org>
* gnus-sum.el (gnus-article-stop-animations): Declare it before using.
(defun message-bury (buffer)
"Bury this mail BUFFER."
+ (with-current-buffer buffer (bury-buffer))
(if message-return-action
- (progn
- (bury-buffer buffer)
- (apply (car message-return-action) (cdr message-return-action)))
- (with-current-buffer buffer (bury-buffer))))
+ (apply (car message-return-action) (cdr message-return-action))))
(defun message-send (&optional arg)
"Send the message in the current buffer.