]> git.eshelyaron.com Git - emacs.git/commitdiff
* bindings.el (ctl-x-map): There is no 'C-;'.
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 21 Feb 2015 20:54:21 +0000 (12:54 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 21 Feb 2015 20:54:58 +0000 (12:54 -0800)
For now, make do with 'M-;'; this allows 'make bootstrap' to work.
Perhaps some other binding should be chosen.
Fixes: bug#19826
lisp/ChangeLog
lisp/bindings.el

index 64aa3de353933633959af5c88d52007fa90be60e..b78dd7920ae61cd7aaeaa05040e99ec32918c680 100644 (file)
@@ -1,3 +1,10 @@
+2015-02-21  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * 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  <bruce.connor.am@gmail.com>
 
        * bindings.el (ctl-x-map): Fix `comment-line' binding.
index 44a6570117ae4e7ef3b403f1f735850819510c4f..a1f0d987f5c29f7e50761bb0a43183207bc54008 100644 (file)
@@ -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)