Mercurial > emacs
changeset 112197:b6c07b465755
* emacs-lisp/package.el (package--list-packages): Use switch-to-buffer.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Wed, 12 Jan 2011 13:57:23 -0500 |
parents | 7440cd13b8bf |
children | 0c7ac8e7d5ee |
files | lisp/ChangeLog lisp/emacs-lisp/package.el |
diffstat | 2 files changed, 14 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Wed Jan 12 17:19:36 2011 +0100 +++ b/lisp/ChangeLog Wed Jan 12 13:57:23 2011 -0500 @@ -1,3 +1,8 @@ +2011-01-12 Chong Yidong <cyd@stupidchicken.com> + + * emacs-lisp/package.el (package--list-packages): Use + switch-to-buffer. + 2011-01-11 Johan Bockgård <bojohan@gnu.org> * emacs-lisp/unsafep.el (unsafep): Handle backquoted forms.
--- a/lisp/emacs-lisp/package.el Wed Jan 12 17:19:36 2011 +0100 +++ b/lisp/emacs-lisp/package.el Wed Jan 12 13:57:23 2011 -0500 @@ -1663,15 +1663,15 @@ Optional PACKAGES is a list of names of packages (symbols) to list; the default is to display everything in `package-alist'." (require 'finder-inf nil t) - (with-current-buffer (get-buffer-create "*Packages*") - (package-menu-mode) - (set (make-local-variable 'package-menu-package-list) packages) - (set (make-local-variable 'package-menu-sort-key) nil) - (package--generate-package-list) - ;; It's okay to use pop-to-buffer here. The package menu buffer - ;; has keybindings, and the user just typed `M-x list-packages', - ;; suggesting that they might want to use them. - (pop-to-buffer (current-buffer)))) + (let ((buf (get-buffer-create "*Packages*"))) + (with-current-buffer buf + (package-menu-mode) + (set (make-local-variable 'package-menu-package-list) packages) + (set (make-local-variable 'package-menu-sort-key) nil) + (package--generate-package-list)) + ;; The package menu buffer has keybindings. If the user types + ;; `M-x list-packages', that suggests it should become current. + (switch-to-buffer buf))) ;;;###autoload (defun list-packages ()