aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorChong Yidong2012-09-30 16:35:11 +0800
committerChong Yidong2012-09-30 16:35:11 +0800
commitd39d3c8e5f4738a405aa2b36ed7895e92dfa5a4b (patch)
tree8efcc263bd42786704a853167421757ef25e9e19 /lisp
parentc4c0c2dff6a733c411119418de41e2fb3a72b262 (diff)
downloademacs-d39d3c8e5f4738a405aa2b36ed7895e92dfa5a4b.tar.gz
emacs-d39d3c8e5f4738a405aa2b36ed7895e92dfa5a4b.zip
* lisp/bindings.el (goto-map): Bind M-g TAB to move-to-column.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/bindings.el1
2 files changed, 3 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4b1ba1e6606..f9a81c2b7cb 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12012-09-30 Chong Yidong <cyd@gnu.org> 12012-09-30 Chong Yidong <cyd@gnu.org>
2 2
3 * bindings.el (goto-map): Bind M-g TAB to move-to-column.
4
3 * help-fns.el (help-fns--obsolete): Fix last change. 5 * help-fns.el (help-fns--obsolete): Fix last change.
4 6
52012-09-30 Stefan Monnier <monnier@iro.umontreal.ca> 72012-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."
898(define-key goto-map "\M-n" 'next-error) 898(define-key goto-map "\M-n" 'next-error)
899(define-key goto-map "p" 'previous-error) 899(define-key goto-map "p" 'previous-error)
900(define-key goto-map "\M-p" 'previous-error) 900(define-key goto-map "\M-p" 'previous-error)
901(define-key goto-map "\t" 'move-to-column)
901 902
902(defvar search-map (make-sparse-keymap) 903(defvar search-map (make-sparse-keymap)
903 "Keymap for search related commands.") 904 "Keymap for search related commands.")