emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

emacs-29 8ab6df0c9f 1/2: ; * lisp/epa-ks.el (epa-ks-do-key-to-fetch): Fi


From: Philip Kaludercic
Subject: emacs-29 8ab6df0c9f 1/2: ; * lisp/epa-ks.el (epa-ks-do-key-to-fetch): Fix 'when' usage
Date: Tue, 27 Dec 2022 15:24:01 -0500 (EST)

branch: emacs-29
commit 8ab6df0c9fdcef11170163e68248092ef2742801
Author: Philip Kaludercic <philipk@posteo.net>
Commit: Philip Kaludercic <philipk@posteo.net>

    ; * lisp/epa-ks.el (epa-ks-do-key-to-fetch): Fix 'when' usage
---
 lisp/epa-ks.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lisp/epa-ks.el b/lisp/epa-ks.el
index bb64b61b8f..668cdf9a61 100644
--- a/lisp/epa-ks.el
+++ b/lisp/epa-ks.el
@@ -135,9 +135,9 @@ Keys are marked using `epa-ks-mark-key-to-fetch'."
                 keys))
         (forward-line))
       (when (yes-or-no-p (format "Proceed with fetching all %d key(s)? "
-                                 (length keys))))
-      (dolist (id keys)
-        (epa-ks--fetch-key id))))
+                                 (length keys)))
+        (dolist (id keys)
+          (epa-ks--fetch-key id)))))
   (tabulated-list-clear-all-tags))
 
 (defun epa-ks--query-url (query exact)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]