mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-24 07:20:37 +00:00
Fix the desired binding for comment-line
* bindings.el (ctl-x-map): Use [?\C-\;] to get the desired binding. Fixes: bug#19826
This commit is contained in:
parent
e846bbf360
commit
34871865de
@ -1,3 +1,9 @@
|
||||
2015-02-23 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
Fix the desired binding for comment-line
|
||||
* bindings.el (ctl-x-map): Use [?\C-\;] to get the desired binding.
|
||||
Fixes: bug#19826
|
||||
|
||||
2015-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* emacs-lisp/macroexp.el (macroexp-parse-body): Handle cl-declare
|
||||
|
@ -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 "\M-;" 'comment-line)
|
||||
(define-key ctl-x-map [?\C-\;] 'comment-line)
|
||||
(define-key ctl-x-map "f" 'set-fill-column)
|
||||
(define-key ctl-x-map "$" 'set-selective-display)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user