emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r107911: * bindings.el (goto-map):


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r107911: * bindings.el (goto-map): Bind goto-char to M-g c.
Date: Fri, 02 Nov 2012 01:48:47 -0000
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 107911
fixes bug: http://debbugs.gnu.org/11240
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Sun 2012-04-15 17:16:50 +0800
message:
  * bindings.el (goto-map): Bind goto-char to M-g c.
modified:
  etc/NEWS
  lisp/ChangeLog
  lisp/bindings.el
=== modified file 'etc/NEWS'
--- a/etc/NEWS  2012-04-14 11:16:17 +0000
+++ b/etc/NEWS  2012-04-15 09:16:50 +0000
@@ -47,6 +47,8 @@
 ** `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
 

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-04-15 07:28:01 +0000
+++ b/lisp/ChangeLog    2012-04-15 09:16:50 +0000
@@ -1,3 +1,7 @@
+2012-04-15  Chong Yidong  <address@hidden>
+
+       * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
+
 2012-04-15  Stefan Monnier  <address@hidden>
 
        Avoid the use of ((lambda ...) ...) in lexical-binding code.

=== modified file 'lisp/bindings.el'
--- a/lisp/bindings.el  2012-01-19 07:21:25 +0000
+++ b/lisp/bindings.el  2012-04-15 09:16:50 +0000
@@ -868,6 +868,7 @@
   "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)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]