diff options
author | Glenn Morris <rgm@gnu.org> | 2012-01-06 00:10:22 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-01-06 00:10:22 -0800 |
commit | c869783d91eade5384116740dca6643d8556b142 (patch) | |
tree | 1b800489e4d9fa2342de12ba3fe1c5bbf489c52e /lisp | |
parent | 5063dddc114937aa17466569515047922730a00e (diff) | |
download | emacs-c869783d91eade5384116740dca6643d8556b142.tar.gz |
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
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 3 | ||||
-rw-r--r-- | lisp/info.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8ec5f49e634..186860c2b17 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -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. 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'." (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) |