diff options
author | Glenn Morris <rgm@gnu.org> | 2012-10-06 16:22:52 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-10-06 16:22:52 -0700 |
commit | 32939005d60a106798ebc8bdd3c4a6180e19902d (patch) | |
tree | 09154ea46cf3bbc25beb9416ced283f767dbcd68 /lisp/ehelp.el | |
parent | addc11ed80db5e01c96ad587c4d848df0abc1cd2 (diff) | |
download | emacs-32939005d60a106798ebc8bdd3c4a6180e19902d.tar.gz emacs-32939005d60a106798ebc8bdd3c4a6180e19902d.tar.bz2 emacs-32939005d60a106798ebc8bdd3c4a6180e19902d.zip |
* lisp/ehelp.el (electric-help-map): Use button-buffer-map.
Fixes: debbugs:10917
Diffstat (limited to 'lisp/ehelp.el')
-rw-r--r-- | lisp/ehelp.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/ehelp.el b/lisp/ehelp.el index 52ac5434ce1..a1bd4d65385 100644 --- a/lisp/ehelp.el +++ b/lisp/ehelp.el @@ -61,6 +61,8 @@ (defvar electric-help-map (let ((map (make-keymap))) + ;; FIXME fragile. Should derive from help-mode-map in a smarter way. + (set-keymap-parent map button-buffer-map) ;; allow all non-self-inserting keys - search, scroll, etc, but ;; let M-x and C-x exit ehelp mode and retain buffer: (suppress-keymap map) |