Make message-allow-no-recipients 'always work
* lisp/gnus/message.el (message-send): Make message-allow-no-recipients 'always work.
This commit is contained in:
parent
215f678c72
commit
fd63880540
1 changed files with 3 additions and 3 deletions
|
@ -4247,9 +4247,9 @@ It should typically alter the sending method in some way or other."
|
|||
(let ((fcc (message-fetch-field "Fcc"))
|
||||
(gcc (message-fetch-field "Gcc")))
|
||||
(when (or fcc gcc)
|
||||
(or (eq message-allow-no-recipients 'always)
|
||||
(and (not (eq message-allow-no-recipients 'never))
|
||||
(setq dont-barf-on-no-method
|
||||
(setq dont-barf-on-no-method
|
||||
(or (eq message-allow-no-recipients 'always)
|
||||
(and (not (eq message-allow-no-recipients 'never))
|
||||
(y-or-n-p
|
||||
(format "No receiver, perform %s anyway? "
|
||||
(cond ((and fcc gcc) "Fcc and Gcc")
|
||||
|
|
Loading…
Add table
Reference in a new issue