* lisp/gnus/message.el (message-bury): Minor cleanup.
This commit is contained in:
parent
e477dbfa64
commit
a22b4ca140
2 changed files with 7 additions and 5 deletions
|
@ -1,3 +1,7 @@
|
|||
2013-03-18 Sam Steingold <sds@gnu.org>
|
||||
|
||||
* message.el (message-bury): Minor cleanup.
|
||||
|
||||
2013-03-06 Katsumi Yamaoka <yamaoka@jpl.org>
|
||||
|
||||
* nndir.el (nndir-request-list): Remove 2nd argument passed to
|
||||
|
|
|
@ -4097,11 +4097,9 @@ Instead, just auto-save the buffer and then bury it."
|
|||
|
||||
(defun message-bury (buffer)
|
||||
"Bury this mail BUFFER."
|
||||
(if message-return-action
|
||||
(progn
|
||||
(bury-buffer buffer)
|
||||
(apply (car message-return-action) (cdr message-return-action)))
|
||||
(with-current-buffer buffer (bury-buffer))))
|
||||
(bury-buffer buffer)
|
||||
(when message-return-action
|
||||
(apply (car message-return-action) (cdr message-return-action))))
|
||||
|
||||
(defun message-send (&optional arg)
|
||||
"Send the message in the current buffer.
|
||||
|
|
Loading…
Add table
Reference in a new issue