emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r106798: Change the binding of "e" in


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r106798: Change the binding of "e" in info-mode.
Date: Fri, 06 Jan 2012 00:10:22 -0800
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 106798
fixes bug(s): http://debbugs.gnu.org/10385
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Fri 2012-01-06 00:10:22 -0800
message:
  Change the binding of "e" in info-mode.
  
  * 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.
modified:
  doc/lispref/ChangeLog
  doc/lispref/maps.texi
  lisp/ChangeLog
  lisp/info.el
=== modified file 'doc/lispref/ChangeLog'
--- a/doc/lispref/ChangeLog     2012-01-05 09:46:05 +0000
+++ b/doc/lispref/ChangeLog     2012-01-06 08:10:22 +0000
@@ -1,3 +1,8 @@
+2012-01-06  Glenn Morris  <address@hidden>
+
+       * maps.texi (Standard Keymaps): Refer to Info-edit by name
+       rather than by keybinding.
+
 2011-12-29  Juanma Barranquero  <address@hidden>
 
        * frames.texi (Font and Color Parameters): Add @pxref.

=== modified file 'doc/lispref/maps.texi'
--- a/doc/lispref/maps.texi     2012-01-05 09:46:05 +0000
+++ b/doc/lispref/maps.texi     2012-01-06 08:10:22 +0000
@@ -144,7 +144,7 @@
 
 @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

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-01-06 07:45:55 +0000
+++ b/lisp/ChangeLog    2012-01-06 08:10:22 +0000
@@ -1,5 +1,8 @@
 2012-01-06  Glenn Morris  <address@hidden>
 
+       * 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.
 

=== modified file 'lisp/info.el'
--- a/lisp/info.el      2012-01-05 09:46:05 +0000
+++ b/lisp/info.el      2012-01-06 08:10:22 +0000
@@ -3706,7 +3706,7 @@
     (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)


reply via email to

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