mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
emacs: fixed (declare-function ...) definitions
Some (declare-function ...) definitions were drifted away from the actual (defun ...)'s. To find the drifts and to verify changes the following command line was used: $ emacs --batch -L emacs --eval '(check-declare-directory "emacs")'
This commit is contained in:
parent
3c5ada48be
commit
8bee3c417c
3 changed files with 2 additions and 3 deletions
|
@ -26,7 +26,7 @@
|
|||
(require 'notmuch-lib)
|
||||
(require 'notmuch-mua)
|
||||
|
||||
(declare-function notmuch-search "notmuch" (query &optional oldest-first target-thread target-line continuation))
|
||||
(declare-function notmuch-search "notmuch" (&optional query oldest-first target-thread target-line continuation))
|
||||
(declare-function notmuch-poll "notmuch" ())
|
||||
|
||||
(defcustom notmuch-hello-recent-searches-max 10
|
||||
|
|
|
@ -38,7 +38,6 @@
|
|||
(require 'notmuch-print)
|
||||
|
||||
(declare-function notmuch-call-notmuch-process "notmuch" (&rest args))
|
||||
(declare-function notmuch-fontify-headers "notmuch" nil)
|
||||
(declare-function notmuch-search-next-thread "notmuch" nil)
|
||||
(declare-function notmuch-search-show-thread "notmuch" nil)
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
|
||||
(require 'coolj)
|
||||
|
||||
(declare-function notmuch-show-insert-bodypart "notmuch-show" (msg part depth))
|
||||
(declare-function notmuch-show-insert-bodypart "notmuch-show" (msg part depth &optional hide))
|
||||
|
||||
;;
|
||||
|
||||
|
|
Loading…
Reference in a new issue