mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
* lisp/gnus/message.el (message-bury): Make `buffer' optional.
(message-send-and-exit): Don't pass `buf' so as to hide the buffer. Fixes: debbugs:14085
This commit is contained in:
parent
30c7e54299
commit
998768afd2
2 changed files with 8 additions and 2 deletions
|
|
@ -4047,7 +4047,7 @@ It should typically alter the sending method in some way or other."
|
|||
(actions message-exit-actions))
|
||||
(when (and (message-send arg)
|
||||
(buffer-name buf))
|
||||
(message-bury buf)
|
||||
(message-bury)
|
||||
(if message-kill-buffer-on-exit
|
||||
(kill-buffer buf))
|
||||
(message-do-actions actions)
|
||||
|
|
@ -4095,7 +4095,7 @@ Instead, just auto-save the buffer and then bury it."
|
|||
(message-disassociate-draft)))
|
||||
(message-do-actions actions))))
|
||||
|
||||
(defun message-bury (buffer)
|
||||
(defun message-bury (&optional buffer)
|
||||
"Bury this mail BUFFER."
|
||||
(if message-return-action
|
||||
(progn
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue