mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
emacs: rename notmuch-address-completion-hook to notmuch-address-post-completion-functions
Apparently it is a (not completely adhered to) emacs convention [1] that only hooks that don't take arguments end in 'hook' [1]: https://www.gnu.org/software/emacs/manual/html_node/elisp/Hooks.html
This commit is contained in:
parent
4d486cf94d
commit
4817005bfc
2 changed files with 3 additions and 3 deletions
|
@ -98,7 +98,7 @@ to know how address selection is made by default."
|
||||||
:group 'notmuch-send
|
:group 'notmuch-send
|
||||||
:group 'notmuch-external)
|
:group 'notmuch-external)
|
||||||
|
|
||||||
(defcustom notmuch-address-completion-hook nil
|
(defcustom notmuch-address-post-completion-functions nil
|
||||||
"Functions called after completing address.
|
"Functions called after completing address.
|
||||||
|
|
||||||
The completed address is passed as an argument to each function.
|
The completed address is passed as an argument to each function.
|
||||||
|
@ -218,7 +218,7 @@ external commands."
|
||||||
(push chosen notmuch-address-history)
|
(push chosen notmuch-address-history)
|
||||||
(delete-region beg end)
|
(delete-region beg end)
|
||||||
(insert chosen)
|
(insert chosen)
|
||||||
(run-hook-with-args 'notmuch-address-completion-hook chosen))
|
(run-hook-with-args 'notmuch-address-post-completion-functions chosen))
|
||||||
(message "No matches.")
|
(message "No matches.")
|
||||||
(ding))))
|
(ding))))
|
||||||
(t nil)))
|
(t nil)))
|
||||||
|
|
|
@ -86,7 +86,7 @@
|
||||||
(match (if (string-match notmuch-company-last-prefix arg)
|
(match (if (string-match notmuch-company-last-prefix arg)
|
||||||
(match-end 0)
|
(match-end 0)
|
||||||
0))
|
0))
|
||||||
(post-completion (run-hook-with-args 'notmuch-address-completion-hook arg))
|
(post-completion (run-hook-with-args 'notmuch-address-post-completion-functions arg))
|
||||||
(no-cache t))))
|
(no-cache t))))
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue