diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-07-31 11:25:41 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-07-31 11:25:41 +0200 |
commit | f8278a923fd789b8dd0d33584e840e03e4f21c2a (patch) | |
tree | 28e912aa823756ffebfbda740e673b49b91fd894 /lisp/mail | |
parent | 0a0e1ed0e02431827dfd26014d9db9059f1ccc30 (diff) | |
download | emacs-f8278a923fd789b8dd0d33584e840e03e4f21c2a.tar.gz emacs-f8278a923fd789b8dd0d33584e840e03e4f21c2a.tar.bz2 emacs-f8278a923fd789b8dd0d33584e840e03e4f21c2a.zip |
Fix sendmail.el byte-compile warning in loaddefs.el
* lisp/mail/sendmail.el (mail-send-and-exit): Autoload since it's
referred to by autoloaded code in loaddefs.el.
Diffstat (limited to 'lisp/mail')
-rw-r--r-- | lisp/mail/sendmail.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index 8cb079f7fbe..76ef65b3437 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el @@ -820,6 +820,7 @@ If within the headers, this makes the new lines into continuation lines." ;; User-level commands for sending. +;;;###autoload (defun mail-send-and-exit (&optional arg) "Send message like `mail-send', then, if no errors, exit from mail buffer. Prefix arg means don't delete this window." |