[core] Fix some typos in stable ELPA verification prompts

This commit is contained in:
syl20bnr 2019-08-23 13:16:39 -04:00
parent efb2e3b96f
commit 512a1e3b0c
1 changed files with 3 additions and 3 deletions

View File

@ -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.