diff options
| author | Doug Woos <doug.woos@gmail.com> | 2021-10-17 21:30:02 -0700 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2021-10-19 08:43:14 -0300 |
| commit | 175476d1d1e5a1014458e505a676a0e4e15ca48c (patch) | |
| tree | 57a8e7f3f9f979232e243683906dff91883103dd | |
| parent | 0f196b5659c8a66af4357fee3d4b3a169044472d (diff) | |
emacs: fix call to nonexistent notmuch--call-process-shell-command
Looks like a find/replace error in e722b4f4
| -rw-r--r-- | emacs/notmuch-show.el | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
