mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
emacs: Define notmuch-search-process-filter-data before first use.
To avoid a wraning about a reference to a free variable when compiling.
This commit is contained in:
parent
708c4f46ca
commit
eead238277
1 changed files with 4 additions and 4 deletions
|
@ -563,6 +563,10 @@ This function advances the next thread when finished."
|
|||
(notmuch-search-remove-tag-thread "inbox")
|
||||
(forward-line))
|
||||
|
||||
(defvar notmuch-search-process-filter-data nil
|
||||
"Data that has not yet been processed.")
|
||||
(make-variable-buffer-local 'notmuch-search-process-filter-data)
|
||||
|
||||
(defun notmuch-search-process-sentinel (proc msg)
|
||||
"Add a message to let user know when \"notmuch search\" exits"
|
||||
(let ((buffer (process-buffer proc))
|
||||
|
@ -738,10 +742,6 @@ non-authors is found, assume that all of the authors match."
|
|||
do (notmuch-search-insert-field field date count authors subject tags)))
|
||||
(insert "\n"))
|
||||
|
||||
(defvar notmuch-search-process-filter-data nil
|
||||
"Data that has not yet been processed.")
|
||||
(make-variable-buffer-local 'notmuch-search-process-filter-data)
|
||||
|
||||
(defun notmuch-search-process-filter (proc string)
|
||||
"Process and filter the output of \"notmuch search\""
|
||||
(let ((buffer (process-buffer proc))
|
||||
|
|
Loading…
Reference in a new issue