emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 1cb3428: * bindings.el (ctl-x-map): There is no 'C-


From: Paul Eggert
Subject: [Emacs-diffs] master 1cb3428: * bindings.el (ctl-x-map): There is no 'C-; '.
Date: Sat, 21 Feb 2015 20:55:02 +0000

branch: master
commit 1cb34285463d2b9050a031a7f9a53d376de5b489
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>

    * 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 deletions(-)

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 64aa3de..b78dd79 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,10 @@
+2015-02-21  Paul Eggert  <address@hidden>
+
+       * 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  <address@hidden>
 
        * bindings.el (ctl-x-map): Fix `comment-line' binding.
diff --git a/lisp/bindings.el b/lisp/bindings.el
index 44a6570..a1f0d98 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)
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]