aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch.el
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-11-21 00:53:27 +0100
committerGravatar Carl Worth <cworth@cworth.org>2009-11-21 00:53:27 +0100
commitaa46a34408709a6434c8b2bfa438de9b33c04211 (patch)
tree7420bbe74b83e73caf59d1f5c92e8f2c04cb659d /notmuch.el
parentd295f50ac7f9c61e7c8e3551f4fca6cd903707fe (diff)
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.
Diffstat (limited to 'notmuch.el')
-rw-r--r--notmuch.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/notmuch.el b/notmuch.el
index fa39da62..0e4c7813 100644
--- a/notmuch.el
+++ b/notmuch.el
@@ -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))