[PATCH] emacs: fix call to nonexistent notmuch--call-process-shell-command

Subject: [PATCH] emacs: fix call to nonexistent notmuch--call-process-shell-command

Date: Sun, 17 Oct 2021 21:30:02 -0700

To: notmuch@notmuchmail.org

Cc: Doug Woos

From: Doug Woos


Looks like a find/replace error in e722b4f4
---
 emacs/notmuch-show.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el
index ea20ddce..4de3e423 100644
--- a/emacs/notmuch-show.el
+++ b/emacs/notmuch-show.el
@@ -2086,7 +2086,7 @@ message."
 	  ;; Use the originating buffer's working directory instead of
 	  ;; that of the pipe buffer.
 	  (cd cwd)
-	  (let ((exit-code (notmuch--call-process-shell-command shell-command nil buf)))
+	  (let ((exit-code (call-process-shell-command shell-command nil buf)))
 	    (goto-char (point-max))
 	    (set-buffer-modified-p nil)
 	    (unless (zerop exit-code)
-- 
2.29.2
_______________________________________________
notmuch mailing list -- notmuch@notmuchmail.org
To unsubscribe send an email to notmuch-leave@notmuchmail.org

Thread: