emacs: fix call to nonexistent notmuch--call-process-shell-command

Looks like a find/replace error in e722b4f4
This commit is contained in:
Doug Woos 2021-10-17 21:30:02 -07:00 committed by David Bremner
parent 0f196b5659
commit 175476d1d1

View file

@ -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)