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. Fixes: debbugs:10385
This commit is contained in:
parent
5063dddc11
commit
c869783d91
4 changed files with 10 additions and 2 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue