aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris2013-04-26 00:59:32 -0700
committerGlenn Morris2013-04-26 00:59:32 -0700
commit967f2fbb34913c250fc10160953338037b18ac7b (patch)
tree63713f7f8b4bba9a737e7f578c45d2bbb9036146 /lisp
parentaf80458d7e9d2f81a8d13a0b4ad152743c34520c (diff)
downloademacs-967f2fbb34913c250fc10160953338037b18ac7b.tar.gz
emacs-967f2fbb34913c250fc10160953338037b18ac7b.zip
* lisp/gnus/message.el (message-bury): Revert 2013-03-18 change.
Fixes: debbugs:14117
Diffstat (limited to 'lisp')
-rw-r--r--lisp/gnus/ChangeLog4
-rw-r--r--lisp/gnus/message.el8
2 files changed, 9 insertions, 3 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 251e5b1f381..1384df85ca3 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,7 @@
12013-04-26 Glenn Morris <rgm@gnu.org>
2
3 * message.el (message-bury): Revert 2013-03-18 change. (Bug#14117)
4
12013-04-25 Andrew Cohen <cohen@bu.edu> 52013-04-25 Andrew Cohen <cohen@bu.edu>
2 6
3 * gnus-msg.el (gnus-inews-insert-gcc): Re-order conditional to work for 7 * gnus-msg.el (gnus-inews-insert-gcc): Re-order conditional to work for
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el
index 2b2a0a94413..a6638097b47 100644
--- a/lisp/gnus/message.el
+++ b/lisp/gnus/message.el
@@ -4097,9 +4097,11 @@ Instead, just auto-save the buffer and then bury it."
4097 4097
4098(defun message-bury (buffer) 4098(defun message-bury (buffer)
4099 "Bury this mail BUFFER." 4099 "Bury this mail BUFFER."
4100 (bury-buffer buffer) 4100 (if message-return-action
4101 (when message-return-action 4101 (progn
4102 (apply (car message-return-action) (cdr message-return-action)))) 4102 (bury-buffer buffer)
4103 (apply (car message-return-action) (cdr message-return-action)))
4104 (with-current-buffer buffer (bury-buffer))))
4103 4105
4104(defun message-send (&optional arg) 4106(defun message-send (&optional arg)
4105 "Send the message in the current buffer. 4107 "Send the message in the current buffer.