]> git.cworth.org Git - notmuch/commitdiff
emacs: fix call to nonexistent notmuch--call-process-shell-command
authorDoug Woos <doug.woos@gmail.com>
Mon, 18 Oct 2021 04:30:02 +0000 (21:30 -0700)
committerDavid Bremner <david@tethera.net>
Tue, 19 Oct 2021 11:43:14 +0000 (08:43 -0300)
Looks like a find/replace error in e722b4f4

emacs/notmuch-show.el

index ea20ddcef4d8fdb634c59dcaff3ff44a36dc818f..4de3e423bec077ab85b622ac05e40fef2582c494 100644 (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)