summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorAndy Moreton <andrewjmoreton@gmail.com>2017-06-06 01:01:55 +0300
committerDmitry Gutov <dgutov@yandex.ru>2017-06-06 01:04:17 +0300
commitf858c585a39e83e062ff33e068b8376e7aecabdf (patch)
treebbec004c93ab03e5b9ec8fb7b41ff743d16e10f8 /lisp/emacs-lisp
parent096eb7d67147e3d7f01e7d08f7da1c6bee947f50 (diff)
downloademacs-f858c585a39e83e062ff33e068b8376e7aecabdf.tar.gz
emacs-f858c585a39e83e062ff33e068b8376e7aecabdf.tar.bz2
emacs-f858c585a39e83e062ff33e068b8376e7aecabdf.zip
Fix check for package-unsigned-archives during retrieval
* lisp/emacs-lisp/package.el (package--download-one-archive): Fix check for package-unsigned-archives.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/package.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el
index cb8e2d60d6d..bebfd18d7a6 100644
--- a/lisp/emacs-lisp/package.el
+++ b/lisp/emacs-lisp/package.el
@@ -1529,7 +1529,7 @@ similar to an entry in `package-alist'. Save the cached copy to
(when (listp (read-from-string content))
(make-directory dir t)
(if (or (not package-check-signature)
- (member archive package-unsigned-archives))
+ (member name package-unsigned-archives))
;; If we don't care about the signature, save the file and
;; we're done.
(progn (write-region content nil local-file nil 'silent)