X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=emacs%2Fnotmuch-show.el;h=4de3e423bec077ab85b622ac05e40fef2582c494;hb=3eb25c94bd8fe4065d6df6d665ee393cb9a0ad6f;hp=eeb0c54bfeb377f76c72b2b9653a48ca0cc4d726;hpb=ddbf3ffe9bfafa39f2142a7ff9ead202b4b88433;p=notmuch diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el index eeb0c54b..4de3e423 100644 --- a/emacs/notmuch-show.el +++ b/emacs/notmuch-show.el @@ -279,7 +279,7 @@ position of the message in the thread." (let ((buf (generate-new-buffer (concat "*notmuch-msg-" id "*")))) (with-current-buffer buf (let ((coding-system-for-read 'no-conversion)) - (call-process notmuch-command nil t nil "show" "--format=raw" id)) + (notmuch--call-process notmuch-command nil t nil "show" "--format=raw" id)) ,@body) (kill-buffer buf))))) @@ -2034,7 +2034,7 @@ to show, nil otherwise." (pop-to-buffer-same-window buf) (erase-buffer) (let ((coding-system-for-read 'no-conversion)) - (call-process notmuch-command nil t nil "show" "--format=raw" id)) + (notmuch--call-process notmuch-command nil t nil "show" "--format=raw" id)) (goto-char (point-min)) (set-buffer-modified-p nil) (setq buffer-read-only t)