diff options
author | Artur Malabarba <am12548@it055607.users.bris.ac.uk> | 2015-03-03 15:15:26 +0000 |
---|---|---|
committer | Artur Malabarba <am12548@it055607.users.bris.ac.uk> | 2015-03-03 15:15:26 +0000 |
commit | bfbcec128a64c8d7d480140874c7bfa50ae803f7 (patch) | |
tree | 6a7c2a16364f3fbb0eab4775edfdc12dbf38bc6d /lisp/emacs-lisp | |
parent | 1903e25c17a0dce03710143659c0fa9e9c6d6494 (diff) | |
download | emacs-bfbcec128a64c8d7d480140874c7bfa50ae803f7.tar.gz emacs-bfbcec128a64c8d7d480140874c7bfa50ae803f7.tar.bz2 emacs-bfbcec128a64c8d7d480140874c7bfa50ae803f7.zip |
emacs-lisp/package.el (package-autoremove): Fix if logic.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/package.el | 4 |
1 files changed, 2 insertions, 2 deletions
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." (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." |