summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--etc/NEWS14
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/bindings.el1
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 <cyd@gnu.org>
+ * 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 <monnier@iro.umontreal.ca>
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.")