1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

* bindings.el (goto-map): Bind goto-char to M-g c.

Fixes: debbugs:11240
This commit is contained in:
Chong Yidong 2012-04-15 17:16:50 +08:00
parent e6fd457e01
commit 5dd1713eeb
3 changed files with 7 additions and 0 deletions

View File

@ -47,6 +47,8 @@ prompts for a column number.
** `C-M-f' and `C-M-b' will now move to the path name separator
character when doing minibuffer filename prompts.
** `goto-char' is now bound to `M-g c'.
* Changes in Specialized Modes and Packages in Emacs 24.2

View File

@ -1,3 +1,7 @@
2012-04-15 Chong Yidong <cyd@gnu.org>
* bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
Avoid the use of ((lambda ...) ...) in lexical-binding code.

View File

@ -868,6 +868,7 @@ if `inhibit-field-text-motion' is non-nil."
"Keymap for navigation commands.")
(define-key esc-map "g" goto-map)
(define-key goto-map "c" 'goto-char)
(define-key goto-map "g" 'goto-line)
(define-key goto-map "\M-g" 'goto-line)
(define-key goto-map "n" 'next-error)