mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
Merge branch 'release'
This commit is contained in:
commit
3d0fd40eb0
1 changed files with 3 additions and 3 deletions
|
@ -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)))
|
||||
|
||||
|
|
Loading…
Reference in a new issue