diff options
| author | Glenn Morris | 2012-01-06 00:10:22 -0800 |
|---|---|---|
| committer | Glenn Morris | 2012-01-06 00:10:22 -0800 |
| commit | c869783d91eade5384116740dca6643d8556b142 (patch) | |
| tree | 1b800489e4d9fa2342de12ba3fe1c5bbf489c52e | |
| parent | 5063dddc114937aa17466569515047922730a00e (diff) | |
| download | emacs-c869783d91eade5384116740dca6643d8556b142.tar.gz emacs-c869783d91eade5384116740dca6643d8556b142.zip | |
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
| -rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/maps.texi | 2 | ||||
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/info.el | 2 |
4 files changed, 10 insertions, 2 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index daa5493ec83..883eaf13356 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-01-06 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * maps.texi (Standard Keymaps): Refer to Info-edit by name | ||
| 4 | rather than by keybinding. | ||
| 5 | |||
| 1 | 2011-12-29 Juanma Barranquero <lekktu@gmail.com> | 6 | 2011-12-29 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 7 | ||
| 3 | * frames.texi (Font and Color Parameters): Add @pxref. | 8 | * frames.texi (Font and Color Parameters): Add @pxref. |
diff --git a/doc/lispref/maps.texi b/doc/lispref/maps.texi index 02a3302f64f..24cd64a6b35 100644 --- a/doc/lispref/maps.texi +++ b/doc/lispref/maps.texi | |||
| @@ -144,7 +144,7 @@ cell. | |||
| 144 | 144 | ||
| 145 | @item Info-edit-map | 145 | @item Info-edit-map |
| 146 | @vindex Info-edit-map | 146 | @vindex Info-edit-map |
| 147 | A sparse keymap used by the @kbd{e} command of Info. | 147 | A sparse keymap used by the @code{Info-edit} command. |
| 148 | 148 | ||
| 149 | @item Info-mode-map | 149 | @item Info-mode-map |
| 150 | @vindex Info-mode-map | 150 | @vindex Info-mode-map |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8ec5f49e634..186860c2b17 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2012-01-06 Glenn Morris <rgm@gnu.org> | 1 | 2012-01-06 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * info.el (Info-mode-map): Bind e to end-of-buffer, rather | ||
| 4 | than Info-edit. (Bug#10385) | ||
| 5 | |||
| 3 | * time.el (display-time-load-average, display-time-next-load-average): | 6 | * time.el (display-time-load-average, display-time-next-load-average): |
| 4 | Doc fixes. | 7 | Doc fixes. |
| 5 | 8 | ||
diff --git a/lisp/info.el b/lisp/info.el index c13c20693a7..94d29518995 100644 --- a/lisp/info.el +++ b/lisp/info.el | |||
| @@ -3706,7 +3706,7 @@ If FORK is non-nil, it is passed to `Info-goto-node'." | |||
| 3706 | (define-key map "b" 'beginning-of-buffer) | 3706 | (define-key map "b" 'beginning-of-buffer) |
| 3707 | (put 'beginning-of-buffer :advertised-binding "b") | 3707 | (put 'beginning-of-buffer :advertised-binding "b") |
| 3708 | (define-key map "d" 'Info-directory) | 3708 | (define-key map "d" 'Info-directory) |
| 3709 | (define-key map "e" 'Info-edit) | 3709 | (define-key map "e" 'end-of-buffer) |
| 3710 | (define-key map "f" 'Info-follow-reference) | 3710 | (define-key map "f" 'Info-follow-reference) |
| 3711 | (define-key map "g" 'Info-goto-node) | 3711 | (define-key map "g" 'Info-goto-node) |
| 3712 | (define-key map "h" 'Info-help) | 3712 | (define-key map "h" 'Info-help) |