mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
notmuch.el: Fix stale reference to non-existing variable.
We changed from "query" to "thread-id" a while ago, and broke this error message at the time. Fix it now.
This commit is contained in:
parent
d295f50ac7
commit
aa46a34408
1 changed files with 1 additions and 1 deletions
|
@ -694,7 +694,7 @@ thread from that buffer can be show when done with this one)."
|
|||
(let ((proc (get-buffer-process (current-buffer)))
|
||||
(inhibit-read-only t))
|
||||
(if proc
|
||||
(error "notmuch search process already running for query `%s'" query)
|
||||
(error "notmuch search process already running for query `%s'" thread-id)
|
||||
)
|
||||
(erase-buffer)
|
||||
(goto-char (point-min))
|
||||
|
|
Loading…
Reference in a new issue