summaryrefslogtreecommitdiff
path: root/lisp/bindings.el
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2015-02-21 12:54:21 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2015-02-21 12:54:58 -0800
commit1cb34285463d2b9050a031a7f9a53d376de5b489 (patch)
treecd2aca3f929c0848e5b8ca9325ac173b4192879e /lisp/bindings.el
parente38be5c483ee4b629a4a3ecb27de068a1cb6402c (diff)
downloademacs-1cb34285463d2b9050a031a7f9a53d376de5b489.tar.gz
* bindings.el (ctl-x-map): There is no 'C-;'.
For now, make do with 'M-;'; this allows 'make bootstrap' to work. Perhaps some other binding should be chosen. Fixes: bug#19826
Diffstat (limited to 'lisp/bindings.el')
-rw-r--r--lisp/bindings.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el
index 44a6570117a..a1f0d987f5c 100644
--- a/lisp/bindings.el
+++ b/lisp/bindings.el
@@ -1130,7 +1130,7 @@ if `inhibit-field-text-motion' is non-nil."
(define-key esc-map "j" 'indent-new-comment-line)
(define-key esc-map "\C-j" 'indent-new-comment-line)
(define-key ctl-x-map ";" 'comment-set-column)
-(define-key ctl-x-map "\C-;" 'comment-line)
+(define-key ctl-x-map "\M-;" 'comment-line)
(define-key ctl-x-map "f" 'set-fill-column)
(define-key ctl-x-map "$" 'set-selective-display)