1
0
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:
Artur Malabarba 2015-03-03 15:15:26 +00:00
parent 1903e25c17
commit bfbcec128a
2 changed files with 6 additions and 2 deletions

View File

@ -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

View File

@ -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."