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:
parent
e6fd457e01
commit
5dd1713eeb
2
etc/NEWS
2
etc/NEWS
@ -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
|
||||
|
||||
|
@ -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.
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user