Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
f674de6f
Commit
f674de6f
authored
Apr 04, 2015
by
Artur Malabarba
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
emacs-lisp/package.el: Don't overwrite downloads-in-progress.
parent
5824dd5b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
lisp/ChangeLog
lisp/ChangeLog
+6
-0
lisp/emacs-lisp/package.el
lisp/emacs-lisp/package.el
+3
-1
No files found.
lisp/ChangeLog
View file @
f674de6f
2015-04-04 Artur Malabarba <bruce.connor.am@gmail.com>
* emacs-lisp/package.el (package--download-and-read-archives): Add
`package-archives' to `package--downloads-in-progress' instead of
overwriting it.
2015-04-04 Michael Albinus <michael.albinus@gmx.de>
* net/tramp-cache.el (tramp-flush-directory-property): Quote directory
...
...
lisp/emacs-lisp/package.el
View file @
f674de6f
...
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment