From: Lars Ingebrigtsen Date: Sun, 6 Mar 2022 18:34:54 +0000 (+0100) Subject: Fix syntax error in obsolete message function X-Git-Tag: emacs-29.0.90~1988 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5b7ce98ea0fd368aa5a73d5f6e01cf8b0fd253c1;p=emacs.git Fix syntax error in obsolete message function * lisp/gnus/message.el (message-send-mail-function): Fix syntax error. --- diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index 800c7dcea03..a5b3d404671 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el @@ -716,7 +716,7 @@ The function accepts 1 parameter which is the matched prefix." (defvar sendmail-program) (cond ((executable-find sendmail-program) #'message-send-mail-with-sendmail) - ((bound-and-true-p 'smtpmail-default-smtp-server) + ((bound-and-true-p smtpmail-default-smtp-server) #'message-smtpmail-send-it) (t #'message-send-mail-with-mailclient)))