From aa46a34408709a6434c8b2bfa438de9b33c04211 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sat, 21 Nov 2009 00:53:27 +0100 Subject: [PATCH 1/1] 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. --- notmuch.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- 2.43.0