mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
emacs: Fix some compilation warnings.
Fix missing argumen in declaration of notmuch-search function and add a definition of notmuch-search-continuation to avoid warning about assignment to a free variable.
This commit is contained in:
parent
e9394932f7
commit
4b0994dd25
2 changed files with 2 additions and 1 deletions
|
@ -26,7 +26,7 @@
|
|||
(require 'notmuch-lib)
|
||||
(require 'notmuch)
|
||||
|
||||
(declare-function notmuch-search "notmuch" (query &optional oldest-first target-thread target-line))
|
||||
(declare-function notmuch-search "notmuch" (query &optional oldest-first target-thread target-line continuation))
|
||||
(declare-function notmuch-folder-count "notmuch" (search))
|
||||
|
||||
(defcustom notmuch-hello-recent-searches-max 10
|
||||
|
|
|
@ -233,6 +233,7 @@ For a mouse binding, return nil."
|
|||
(defvar notmuch-search-target-line)
|
||||
(defvar notmuch-search-oldest-first t
|
||||
"Show the oldest mail first in the search-mode")
|
||||
(defvar notmuch-search-continuation)
|
||||
|
||||
(defvar notmuch-search-disjunctive-regexp "\\<[oO][rR]\\>")
|
||||
|
||||
|
|
Loading…
Reference in a new issue