diff options
| author | David Bremner <david@tethera.net> | 2019-02-10 09:47:47 -0400 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2019-02-10 09:47:47 -0400 |
| commit | 3d0fd40eb0eca54fd05460203ae754c63f633d69 (patch) | |
| tree | d8032fa8493e418b73ca313cae9e9324cf4ca89a | |
| parent | 87eb477ba546c47083f678bb7fa3d433cb591090 (diff) | |
| parent | 3c752b855f900f5251df9997514b4d27d9f38e83 (diff) | |
Merge branch 'release'
| -rw-r--r-- | emacs/notmuch-crypto.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emacs/notmuch-crypto.el b/emacs/notmuch-crypto.el index fc2b5301..353f721e 100644 --- a/emacs/notmuch-crypto.el +++ b/emacs/notmuch-crypto.el @@ -142,7 +142,7 @@ mode." (with-selected-window window (with-current-buffer buffer (goto-char (point-max)) - (call-process epg-gpg-program nil t t "--list-keys" fingerprint)) + (call-process epg-gpg-program nil t t "--batch" "--no-tty" "--list-keys" fingerprint)) (recenter -1)))) (defun notmuch-crypto-sigstatus-error-callback (button) @@ -153,9 +153,9 @@ mode." (with-selected-window window (with-current-buffer buffer (goto-char (point-max)) - (call-process epg-gpg-program nil t t "--recv-keys" keyid) + (call-process epg-gpg-program nil t t "--batch" "--no-tty" "--recv-keys" keyid) (insert "\n") - (call-process epg-gpg-program nil t t "--list-keys" keyid)) + (call-process epg-gpg-program nil t t "--batch" "--no-tty" "--list-keys" keyid)) (recenter -1)) (notmuch-show-refresh-view))) |
