diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-04-04 20:20:21 +0100 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-04-04 20:22:26 +0100 |
commit | f674de6f08e3789fed88f24ffc45bfffc8d60520 (patch) | |
tree | 7d2e84c18de6a8c04c8702d1ebd64c6497e5999d /lisp/emacs-lisp/package.el | |
parent | 5824dd5b6a67b3de83d281049d3694066e1462a7 (diff) | |
download | emacs-f674de6f08e3789fed88f24ffc45bfffc8d60520.tar.gz emacs-f674de6f08e3789fed88f24ffc45bfffc8d60520.tar.bz2 emacs-f674de6f08e3789fed88f24ffc45bfffc8d60520.zip |
emacs-lisp/package.el: Don't overwrite downloads-in-progress.
Diffstat (limited to 'lisp/emacs-lisp/package.el')
-rw-r--r-- | lisp/emacs-lisp/package.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 583598ee10c..3f7784032e4 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -1410,7 +1410,9 @@ This populates `package-archive-contents'. If ASYNC is non-nil, perform the downloads asynchronously." ;; The downloaded archive contents will be read as part of ;; `package--update-downloads-in-progress'. - (setq package--downloads-in-progress package-archives) + (setq package--downloads-in-progress + (append package-archives + package--downloads-in-progress)) (dolist (archive package-archives) (condition-case-unless-debug nil (package--download-one-archive archive "archive-contents" async) |