diff options
| author | Daiki Ueno | 2014-11-06 15:29:24 +0900 |
|---|---|---|
| committer | Daiki Ueno | 2014-11-06 15:29:24 +0900 |
| commit | 55ea575e131ff6295e64abaa7e766073e3a9b4d1 (patch) | |
| tree | eb0ab8dcb51a7dfbf55cb1d9593f3ac9f6373e59 | |
| parent | 4cd90e0920fd2c7c112d3a098c822934fef444aa (diff) | |
| download | emacs-55ea575e131ff6295e64abaa7e766073e3a9b4d1.tar.gz emacs-55ea575e131ff6295e64abaa7e766073e3a9b4d1.zip | |
package.el: Fix the last commit
| -rw-r--r-- | lisp/emacs-lisp/package.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 436cd1940a9..4e5c397e433 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el | |||
| @@ -853,9 +853,7 @@ GnuPG keyring is located under \"gnupg\" in `package-user-dir'." | |||
| 853 | (setq had-fatal-error t)))) | 853 | (setq had-fatal-error t)))) |
| 854 | (when (and (null good-signatures) had-fatal-error) | 854 | (when (and (null good-signatures) had-fatal-error) |
| 855 | (package--display-verify-error context sig-file) | 855 | (package--display-verify-error context sig-file) |
| 856 | (error "Failed to verify signature %s: %S" | 856 | (error "Failed to verify signature %s" sig-file)) |
| 857 | sig-file | ||
| 858 | )) | ||
| 859 | good-signatures))) | 857 | good-signatures))) |
| 860 | 858 | ||
| 861 | (defun package-install-from-archive (pkg-desc) | 859 | (defun package-install-from-archive (pkg-desc) |