From: Juri Linkov Date: Wed, 18 Dec 2013 23:40:12 +0000 (+0200) Subject: * lisp/help-mode.el (help-mode-map): Bind "l" to help-go-back, X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~337 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b216f0a6cf524023eefbedcff3a70c8763e7e3e0;p=emacs.git * lisp/help-mode.el (help-mode-map): Bind "l" to help-go-back, and "r" to help-go-forward for compatibity with Info. Fixes: debbugs:16178 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ed95c03d6ea..31161057cc8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2013-12-18 Juri Linkov + + * help-mode.el (help-mode-map): Bind "l" to help-go-back, + and "r" to help-go-forward for compatibity with Info. (Bug#16178) + 2013-12-18 Leo Liu * eshell/em-prompt.el (eshell-emit-prompt): Fix last change. (Bug#16186) diff --git a/lisp/help-mode.el b/lisp/help-mode.el index ec60d05f1da..ac52624ba72 100644 --- a/lisp/help-mode.el +++ b/lisp/help-mode.el @@ -37,6 +37,8 @@ (set-keymap-parent map (make-composed-keymap button-buffer-map special-mode-map)) (define-key map [mouse-2] 'help-follow-mouse) + (define-key map "l" 'help-go-back) + (define-key map "r" 'help-go-forward) (define-key map "\C-c\C-b" 'help-go-back) (define-key map "\C-c\C-f" 'help-go-forward) (define-key map [XF86Back] 'help-go-back)