summaryrefslogtreecommitdiff
path: root/lisp/bindings.el
diff options
context:
space:
mode:
authorChong Yidong <cyd@gnu.org>2012-04-15 17:16:50 +0800
committerChong Yidong <cyd@gnu.org>2012-04-15 17:16:50 +0800
commit5dd1713eeb99b60b6d4a1b9ed6a64fb3c95a21cd (patch)
treee4d6e3baebc01f40a6f19c81525d8f0e854ba645 /lisp/bindings.el
parente6fd457e010c2ec034a331335530d817852cc11c (diff)
downloademacs-5dd1713eeb99b60b6d4a1b9ed6a64fb3c95a21cd.tar.gz
* bindings.el (goto-map): Bind goto-char to M-g c.
Fixes: debbugs:11240
Diffstat (limited to 'lisp/bindings.el')
-rw-r--r--lisp/bindings.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el
index a87f321c936..8cfeecf5b40 100644
--- a/lisp/bindings.el
+++ b/lisp/bindings.el
@@ -868,6 +868,7 @@ if `inhibit-field-text-motion' is non-nil."
"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)