]> git.eshelyaron.com Git - emacs.git/commitdiff
Tiny change for message-bury
authorKen Olum <kdo@cosmos.phy.tufts.edu>
Thu, 9 Jan 2014 20:01:15 +0000 (15:01 -0500)
committerGlenn Morris <rgm@gnu.org>
Thu, 9 Jan 2014 20:01:15 +0000 (15:01 -0500)
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.

lisp/gnus/ChangeLog
lisp/gnus/message.el

index bcf26ac9f9c5ba7fa3dc132a83d7024a5db434e2..8f2dc7133760910f440968373154532fb2d2df95 100644 (file)
@@ -1,3 +1,8 @@
+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.
index d1a32d52e06b588f53017e0f0cfd2658f3bb0a8a..f6830c13072915835d022d0c5fdf0c3d16af4808 100644 (file)
@@ -4099,11 +4099,9 @@ Instead, just auto-save the buffer and then bury it."
 
 (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.