]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix syntax error in obsolete message function
authorLars Ingebrigtsen <larsi@gnus.org>
Sun, 6 Mar 2022 18:34:54 +0000 (19:34 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 6 Mar 2022 18:34:54 +0000 (19:34 +0100)
* lisp/gnus/message.el (message-send-mail-function): Fix syntax error.

lisp/gnus/message.el

index 800c7dcea031e3c565e81cb4790a5a55d9749b09..a5b3d404671c76636aa1636667f976da69bd3bb8 100644 (file)
@@ -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)))