; * lisp/epa-ks.el (epa-ks-do-key-to-fetch): Fix 'when' usage
This commit is contained in:
parent
2b55a48d3e
commit
8ab6df0c9f
1 changed files with 3 additions and 3 deletions
|
@ -135,9 +135,9 @@ Keys are marked using `epa-ks-mark-key-to-fetch'."
|
||||||
keys))
|
keys))
|
||||||
(forward-line))
|
(forward-line))
|
||||||
(when (yes-or-no-p (format "Proceed with fetching all %d key(s)? "
|
(when (yes-or-no-p (format "Proceed with fetching all %d key(s)? "
|
||||||
(length keys))))
|
(length keys)))
|
||||||
(dolist (id keys)
|
(dolist (id keys)
|
||||||
(epa-ks--fetch-key id))))
|
(epa-ks--fetch-key id)))))
|
||||||
(tabulated-list-clear-all-tags))
|
(tabulated-list-clear-all-tags))
|
||||||
|
|
||||||
(defun epa-ks--query-url (query exact)
|
(defun epa-ks--query-url (query exact)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue