diff options
-rw-r--r-- | emacs/notmuch-mua.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/notmuch-mua.el b/emacs/notmuch-mua.el index cb89db3a..408b49e0 100644 --- a/emacs/notmuch-mua.el +++ b/emacs/notmuch-mua.el @@ -159,7 +159,7 @@ list." ;; Get the reply object as JSON, and parse it into an elisp object. (with-temp-buffer - (apply 'call-process (append (list notmuch-command nil (list t t) nil) args)) + (apply 'call-process (append (list notmuch-command nil (list t nil) nil) args)) (goto-char (point-min)) (let ((json-object-type 'plist) (json-array-type 'list) |