From: Doug Woos Date: Mon, 18 Oct 2021 04:30:02 +0000 (-0700) Subject: emacs: fix call to nonexistent notmuch--call-process-shell-command X-Git-Tag: archive/debian/0.34-1~5 X-Git-Url: https://git.cworth.org/git?p=notmuch;a=commitdiff_plain;h=175476d1d1e5a1014458e505a676a0e4e15ca48c emacs: fix call to nonexistent notmuch--call-process-shell-command Looks like a find/replace error in e722b4f4 --- 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)