aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArtur Malabarba2015-03-03 15:15:26 +0000
committerArtur Malabarba2015-03-03 15:15:26 +0000
commitbfbcec128a64c8d7d480140874c7bfa50ae803f7 (patch)
tree6a7c2a16364f3fbb0eab4775edfdc12dbf38bc6d
parent1903e25c17a0dce03710143659c0fa9e9c6d6494 (diff)
downloademacs-bfbcec128a64c8d7d480140874c7bfa50ae803f7.tar.gz
emacs-bfbcec128a64c8d7d480140874c7bfa50ae803f7.zip
emacs-lisp/package.el (package-autoremove): Fix if logic.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/emacs-lisp/package.el4
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 16206e2b6e1..af7d0d81323 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12015-03-03 Artur Malabarba <bruce.connor.am@gmail.com>
2
3 * emacs-lisp/package.el (package-autoremove): Fix if logic.
4
12015-03-03 Martin Rudalics <rudalics@gmx.at> 52015-03-03 Martin Rudalics <rudalics@gmx.at>
2 6
3 * window.el (window--dump-frame): For pixel height return total 7 * window.el (window--dump-frame): For pixel height return total
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el
index de1158d96a7..885fb00ce75 100644
--- a/lisp/emacs-lisp/package.el
+++ b/lisp/emacs-lisp/package.el
@@ -1611,8 +1611,8 @@ will be deleted."
1611 (mapconcat #'symbol-name removable ", "))) 1611 (mapconcat #'symbol-name removable ", ")))
1612 (mapc (lambda (p) 1612 (mapc (lambda (p)
1613 (package-delete (cadr (assq p package-alist)) t)) 1613 (package-delete (cadr (assq p package-alist)) t))
1614 removable) 1614 removable))
1615 (message "Nothing to autoremove")))))) 1615 (message "Nothing to autoremove")))))
1616 1616
1617(defun package-archive-base (desc) 1617(defun package-archive-base (desc)
1618 "Return the archive containing the package NAME." 1618 "Return the archive containing the package NAME."