From 512a1e3b0c0a2cb31152478fce536bcde706b9f4 Mon Sep 17 00:00:00 2001 From: syl20bnr Date: Fri, 23 Aug 2019 13:16:39 -0400 Subject: [PATCH] [core] Fix some typos in stable ELPA verification prompts --- core/core-configuration-layer.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/core-configuration-layer.el b/core/core-configuration-layer.el index db01a87f9..9681c7947 100644 --- a/core/core-configuration-layer.el +++ b/core/core-configuration-layer.el @@ -2662,20 +2662,20 @@ continue with the stable ELPA repository installation." (condition-case error (setq context (epg-make-context 'OpenPGP)) (error (setq verification-err - (format "GnuPGP seems not be available (%s)" + (format "GnuPGP doesn't seem to be available. %s" (cdr error))))) (unless verification-err (condition-case error (epg-import-keys-from-file context configuration-layer--stable-elpa-gpg-keyring) (error (setq verification-err - (format "Cannot import public key (%s)" + (format "Cannot import public key. %s" (cdr error))))) (unless verification-err (condition-case error (epg-verify-string context sig-string (buffer-string)) (error (setq verification-err - (format "Error during verification phase (%s)" + (format "Error during verification phase. %s" (cdr error))))) ;; The .sig file may contain multiple signatures. Success if one ;; of the signatures is good.