mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-25 07:28:20 +00:00
emacs-lisp/package.el (package-autoremove): Fix if logic.
This commit is contained in:
parent
1903e25c17
commit
bfbcec128a
@ -1,3 +1,7 @@
|
||||
2015-03-03 Artur Malabarba <bruce.connor.am@gmail.com>
|
||||
|
||||
* emacs-lisp/package.el (package-autoremove): Fix if logic.
|
||||
|
||||
2015-03-03 Martin Rudalics <rudalics@gmx.at>
|
||||
|
||||
* window.el (window--dump-frame): For pixel height return total
|
||||
|
@ -1611,8 +1611,8 @@ will be deleted."
|
||||
(mapconcat #'symbol-name removable ", ")))
|
||||
(mapc (lambda (p)
|
||||
(package-delete (cadr (assq p package-alist)) t))
|
||||
removable)
|
||||
(message "Nothing to autoremove"))))))
|
||||
removable))
|
||||
(message "Nothing to autoremove")))))
|
||||
|
||||
(defun package-archive-base (desc)
|
||||
"Return the archive containing the package NAME."
|
||||
|
Loading…
Reference in New Issue
Block a user