mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 10:28:09 +01:00
emacs/mua: Correct autoload cookies
This is a follow-up to [1:8d06dfce
]. Per Info node '(elisp)Autoload', autoload cookies should start with ';;;###'. 1: 2024-04-048d06dfce17
emacs: Autoload notmuch-user-agent related functions
This commit is contained in:
parent
4e85abda15
commit
2355ff274d
1 changed files with 5 additions and 5 deletions
|
@ -424,7 +424,7 @@ instead of `message-mode' and SWITCH-FUNCTION is mandatory."
|
||||||
(addr (and good-tokens (mapconcat #'identity good-tokens ", "))))
|
(addr (and good-tokens (mapconcat #'identity good-tokens ", "))))
|
||||||
(message-replace-header header addr))))))
|
(message-replace-header header addr))))))
|
||||||
|
|
||||||
;;;#autoload
|
;;;###autoload
|
||||||
(defun notmuch-mua-mail (&optional to subject other-headers _continue
|
(defun notmuch-mua-mail (&optional to subject other-headers _continue
|
||||||
switch-function yank-action send-actions
|
switch-function yank-action send-actions
|
||||||
return-action &rest _ignored)
|
return-action &rest _ignored)
|
||||||
|
@ -646,24 +646,24 @@ unencrypted. Really send? "))))
|
||||||
(message-send-and-exit arg)
|
(message-send-and-exit arg)
|
||||||
(message-send arg)))))
|
(message-send arg)))))
|
||||||
|
|
||||||
;;;#autoload
|
;;;###autoload
|
||||||
(defun notmuch-mua-send-and-exit (&optional arg)
|
(defun notmuch-mua-send-and-exit (&optional arg)
|
||||||
(interactive "P")
|
(interactive "P")
|
||||||
(notmuch-mua-send-common arg t))
|
(notmuch-mua-send-common arg t))
|
||||||
|
|
||||||
;;;#autoload
|
;;;###autoload
|
||||||
(defun notmuch-mua-send (&optional arg)
|
(defun notmuch-mua-send (&optional arg)
|
||||||
(interactive "P")
|
(interactive "P")
|
||||||
(notmuch-mua-send-common arg))
|
(notmuch-mua-send-common arg))
|
||||||
|
|
||||||
;;;#autoload
|
;;;###autoload
|
||||||
(defun notmuch-mua-kill-buffer ()
|
(defun notmuch-mua-kill-buffer ()
|
||||||
(interactive)
|
(interactive)
|
||||||
(message-kill-buffer))
|
(message-kill-buffer))
|
||||||
|
|
||||||
;;; _
|
;;; _
|
||||||
|
|
||||||
;;;#autoload
|
;;;###autoload
|
||||||
(define-mail-user-agent 'notmuch-user-agent
|
(define-mail-user-agent 'notmuch-user-agent
|
||||||
'notmuch-mua-mail
|
'notmuch-mua-mail
|
||||||
'notmuch-mua-send-and-exit
|
'notmuch-mua-send-and-exit
|
||||||
|
|
Loading…
Reference in a new issue