]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/help-mode.el (help-mode-map): Bind "l" to help-go-back,
authorJuri Linkov <juri@jurta.org>
Wed, 18 Dec 2013 23:40:12 +0000 (01:40 +0200)
committerJuri Linkov <juri@jurta.org>
Wed, 18 Dec 2013 23:40:12 +0000 (01:40 +0200)
and "r" to help-go-forward for compatibity with Info.

Fixes: debbugs:16178
lisp/ChangeLog
lisp/help-mode.el

index ed95c03d6eacd3384c9ddcb6accd5ccc67b89546..31161057cc8ae4e080cc2666091600131223b38d 100644 (file)
@@ -1,3 +1,8 @@
+2013-12-18  Juri Linkov  <juri@jurta.org>
+
+       * 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  <sdl.web@gmail.com>
 
        * eshell/em-prompt.el (eshell-emit-prompt): Fix last change. (Bug#16186)
index ec60d05f1da77f7eeab8fa7efda1855a0fc9079d..ac52624ba72e15f56a087e6e8a9d7e5462d01004 100644 (file)
@@ -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)