emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r115599: * lisp/help-mode.el (help-mode-map): Bind "


From: Juri Linkov
Subject: [Emacs-diffs] trunk r115599: * lisp/help-mode.el (help-mode-map): Bind "l" to help-go-back,
Date: Wed, 18 Dec 2013 23:40:15 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 115599
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/16178
committer: Juri Linkov <address@hidden>
branch nick: trunk
timestamp: Thu 2013-12-19 01:40:12 +0200
message:
  * lisp/help-mode.el (help-mode-map): Bind "l" to help-go-back,
  and "r" to help-go-forward for compatibity with Info.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/help-mode.el              
helpmode.el-20091113204419-o5vbwnq5f7feedwu-2249
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-12-18 18:38:20 +0000
+++ b/lisp/ChangeLog    2013-12-18 23:40:12 +0000
@@ -1,3 +1,8 @@
+2013-12-18  Juri Linkov  <address@hidden>
+
+       * 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  <address@hidden>
 
        * eshell/em-prompt.el (eshell-emit-prompt): Fix last change. (Bug#16186)

=== modified file 'lisp/help-mode.el'
--- a/lisp/help-mode.el 2013-09-17 17:48:06 +0000
+++ b/lisp/help-mode.el 2013-12-18 23:40:12 +0000
@@ -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)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]