From d39d3c8e5f4738a405aa2b36ed7895e92dfa5a4b Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Sun, 30 Sep 2012 16:35:11 +0800 Subject: [PATCH] * lisp/bindings.el (goto-map): Bind M-g TAB to move-to-column. --- etc/NEWS | 14 +++++++++----- lisp/ChangeLog | 2 ++ lisp/bindings.el | 1 + 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/etc/NEWS b/etc/NEWS index b2444edcafe..d95c707ba36 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -184,6 +184,15 @@ The PCL-CVS commands are still available via the keyboard. * Editing Changes in Emacs 24.3 +** Navigation command changes + +*** New binding `M-g c' for `goto-char'. + +*** New binding `M-g TAB' for `move-to-column'. + +*** `M-g TAB' (`move-to-column') prompts for a column number if called +interactively with no prefix arg. Previously, it moved to column 1. + +++ ** `C-x 8 RET' is now bound to `insert-char', which is now a command. `ucs-insert' is now an obsolete alias for `insert-char'. @@ -226,11 +235,6 @@ append-to-register and M-x prepend-to-register. ** `C-u M-=' now counts lines/words/characters in the entire buffer. -** New binding `M-g c' for `goto-char'. - -** M-x move-to-column, if called interactively with no prefix arg, now -prompts for a column number. - ** New command `C-x r M-w' (copy-rectangle-as-kill). It copies the region-rectangle as the last rectangle kill. diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4b1ba1e6606..f9a81c2b7cb 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2012-09-30 Chong Yidong + * bindings.el (goto-map): Bind M-g TAB to move-to-column. + * help-fns.el (help-fns--obsolete): Fix last change. 2012-09-30 Stefan Monnier diff --git a/lisp/bindings.el b/lisp/bindings.el index 7ca1bf4719f..b4f9d29fe52 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -898,6 +898,7 @@ if `inhibit-field-text-motion' is non-nil." (define-key goto-map "\M-n" 'next-error) (define-key goto-map "p" 'previous-error) (define-key goto-map "\M-p" 'previous-error) +(define-key goto-map "\t" 'move-to-column) (defvar search-map (make-sparse-keymap) "Keymap for search related commands.") -- 2.39.2