diff options
| author | Chong Yidong | 2012-09-30 16:35:11 +0800 |
|---|---|---|
| committer | Chong Yidong | 2012-09-30 16:35:11 +0800 |
| commit | d39d3c8e5f4738a405aa2b36ed7895e92dfa5a4b (patch) | |
| tree | 8efcc263bd42786704a853167421757ef25e9e19 /lisp | |
| parent | c4c0c2dff6a733c411119418de41e2fb3a72b262 (diff) | |
| download | emacs-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/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/bindings.el | 1 |
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 @@ | |||
| 1 | 2012-09-30 Chong Yidong <cyd@gnu.org> | 1 | 2012-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 | ||
| 5 | 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca> | 7 | 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." | |||
| 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.") |