From 5b7ce98ea0fd368aa5a73d5f6e01cf8b0fd253c1 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Sun, 6 Mar 2022 19:34:54 +0100 Subject: [PATCH] Fix syntax error in obsolete message function * lisp/gnus/message.el (message-send-mail-function): Fix syntax error. --- lisp/gnus/message.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))) -- 2.39.2