From: Artur Malabarba Date: Sun, 12 Apr 2015 12:44:43 +0000 (+0100) Subject: * lisp/emacs-lisp/package.el (list-packages): Call refresh in right buffer X-Git-Tag: emacs-25.0.90~2472 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d06eeb85e0445eddedc42480d9a0d9928eed357e;p=emacs.git * lisp/emacs-lisp/package.el (list-packages): Call refresh in right buffer --- diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index ad482e564b0..dac70af9616 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -2943,13 +2943,14 @@ The list is displayed in a buffer named `*Packages*'." (add-hook 'package--post-download-archives-hook #'package-menu--post-refresh) - ;; Fetch the remote list of packages. - (unless no-fetch (package-menu-refresh)) - ;; Generate the Package Menu. (let ((buf (get-buffer-create "*Packages*"))) (with-current-buffer buf (package-menu-mode) + + ;; Fetch the remote list of packages. + (unless no-fetch (package-menu-refresh)) + (package-menu--generate nil t)) ;; The package menu buffer has keybindings. If the user types ;; `M-x list-packages', that suggests it should become current.