projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7f16f17
)
; * lisp/subr.el (ctl-x-map): Fix typo in kill-buffer binding.
author
Mattias Engdegård
<mattiase@acm.org>
Tue, 5 Jan 2021 10:27:41 +0000
(11:27 +0100)
committer
Mattias Engdegård
<mattiase@acm.org>
Tue, 5 Jan 2021 10:28:58 +0000
(11:28 +0100)
lisp/subr.el
patch
|
blob
|
history
diff --git
a/lisp/subr.el
b/lisp/subr.el
index 60a77859c432d2265ac57a0480aad87504a3f930..50acbd2790505a180db5e114bc46c88083340212 100644
(file)
--- a/
lisp/subr.el
+++ b/
lisp/subr.el
@@
-1272,7
+1272,7
@@
The normal global definition of the character ESC indirects to this keymap.")
(define-key map "t" tab-prefix-map)
(define-key map "b" #'switch-to-buffer)
- (define-key map "
l
" #'kill-buffer)
+ (define-key map "
k
" #'kill-buffer)
(define-key map "\C-u" #'upcase-region) (put 'upcase-region 'disabled t)
(define-key map "\C-l" #'downcase-region) (put 'downcase-region 'disabled t)
(define-key map "<" #'scroll-left)