bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#18790: 24.4; package-install no longer allows interactive updating


From: Nic Ferrier
Subject: bug#18790: 24.4; package-install no longer allows interactive updating
Date: Wed, 22 Oct 2014 10:38:56 +0100


M-x package-install [RET] existing-package [TAB]

used to allow you to upgrade a package without using the slightly
cumbersome package list.

The interactive form now filters the package list for installed
packages:

  (interactive
     (progn
       ;; Initialize the package system to get the list of package
       ;; symbols for completion.
       (unless package--initialized
         (package-initialize t))
       (unless package-archive-contents
         (package-refresh-contents))
       (list (intern (completing-read
                      "Install package: "
                      (delq nil
                            (mapcar (lambda (elt)
                                      (unless (package-installed-p (car elt))
                                        (symbol-name (car elt))))
                                    package-archive-contents))
                      nil t)))))

There isn't a simple equivalent of doing the same thing, say:

  M-x package-upgrade-existing-package

I don't know if this was deliberate or a mistake, it's always useful
being able to do something quickly with a command line when you know
what you're doing.







reply via email to

[Prev in Thread] Current Thread [Next in Thread]