summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/package.el
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2010-10-24 11:46:21 -0400
committerChong Yidong <cyd@stupidchicken.com>2010-10-24 11:46:21 -0400
commit43207249e0170bb9f047d82cbe6f81ecc89cc9a8 (patch)
treed04fef5a45c6019a1f29fe1653fadf01ac8cc597 /lisp/emacs-lisp/package.el
parent484db896faf39f767461b235a44def7e2bcdfcc3 (diff)
downloademacs-43207249e0170bb9f047d82cbe6f81ecc89cc9a8.tar.gz
* package.el (package-menu-mode-map): Inherit from button-buffer-map.
Diffstat (limited to 'lisp/emacs-lisp/package.el')
-rw-r--r--lisp/emacs-lisp/package.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el
index 001b8a23f49..ea4c14e7cda 100644
--- a/lisp/emacs-lisp/package.el
+++ b/lisp/emacs-lisp/package.el
@@ -1187,7 +1187,7 @@ The variable `package-load-list' controls which packages to load."
(defvar package-menu-mode-map
(let ((map (make-keymap))
(menu-map (make-sparse-keymap "Package")))
- (suppress-keymap map)
+ (set-keymap-parent map button-buffer-map)
(define-key map "\C-m" 'package-menu-describe-package)
(define-key map "q" 'quit-window)
(define-key map "n" 'next-line)