From 1cb34285463d2b9050a031a7f9a53d376de5b489 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 21 Feb 2015 12:54:21 -0800 Subject: [PATCH] * 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 --- lisp/ChangeLog | 7 +++++++ lisp/bindings.el | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 64aa3de3539..b78dd7920ae 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,10 @@ +2015-02-21 Paul Eggert + + * 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 + 2015-02-21 Artur Malabarba * bindings.el (ctl-x-map): Fix `comment-line' binding. 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) -- 2.11.4.GIT