]> git.eshelyaron.com Git - emacs.git/commitdiff
Change the binding of "e" in info-mode.
authorGlenn Morris <rgm@gnu.org>
Fri, 6 Jan 2012 08:10:22 +0000 (00:10 -0800)
committerGlenn Morris <rgm@gnu.org>
Fri, 6 Jan 2012 08:10:22 +0000 (00:10 -0800)
* doc/lispref/maps.texi (Standard Keymaps): Refer to Info-edit by name
rather than by keybinding.

* lisp/info.el (Info-mode-map): Bind e to end-of-buffer, rather
than Info-edit.

Fixes: debbugs:10385
doc/lispref/ChangeLog
doc/lispref/maps.texi
lisp/ChangeLog
lisp/info.el

index daa5493ec839bdf0fcf796cd7fd1c3b386ec52e6..883eaf133566de72f399c24e17c90093328a5c38 100644 (file)
@@ -1,3 +1,8 @@
+2012-01-06  Glenn Morris  <rgm@gnu.org>
+
+       * maps.texi (Standard Keymaps): Refer to Info-edit by name
+       rather than by keybinding.
+
 2011-12-29  Juanma Barranquero  <lekktu@gmail.com>
 
        * frames.texi (Font and Color Parameters): Add @pxref.
index 02a3302f64f4d70bb0469ffe5fd70afed47e7f95..24cd64a6b35025c4d6fe5bb2d4a212675db6785c 100644 (file)
@@ -144,7 +144,7 @@ cell.
 
 @item Info-edit-map
 @vindex Info-edit-map
-A sparse keymap used by the @kbd{e} command of Info.
+A sparse keymap used by the @code{Info-edit} command.
 
 @item Info-mode-map
 @vindex Info-mode-map
index 8ec5f49e63443bfbdf3876504043ee34571237cc..186860c2b17f618d5d5e4746fd82137581dff8b8 100644 (file)
@@ -1,5 +1,8 @@
 2012-01-06  Glenn Morris  <rgm@gnu.org>
 
+       * info.el (Info-mode-map): Bind e to end-of-buffer, rather
+       than Info-edit.  (Bug#10385)
+
        * time.el (display-time-load-average, display-time-next-load-average):
        Doc fixes.
 
index c13c20693a76a3806b750dfe9767a9d2f7e4d867..94d295189956b6c3f5082ae5753f78819eea6ff9 100644 (file)
@@ -3706,7 +3706,7 @@ If FORK is non-nil, it is passed to `Info-goto-node'."
     (define-key map "b" 'beginning-of-buffer)
     (put 'beginning-of-buffer :advertised-binding "b")
     (define-key map "d" 'Info-directory)
-    (define-key map "e" 'Info-edit)
+    (define-key map "e" 'end-of-buffer)
     (define-key map "f" 'Info-follow-reference)
     (define-key map "g" 'Info-goto-node)
     (define-key map "h" 'Info-help)