From 175476d1d1e5a1014458e505a676a0e4e15ca48c Mon Sep 17 00:00:00 2001 From: Doug Woos Date: Sun, 17 Oct 2021 21:30:02 -0700 Subject: [PATCH] emacs: fix call to nonexistent notmuch--call-process-shell-command 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.43.0