]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/subr.el (ctl-x-map): Fix typo in kill-buffer binding.
authorMattias Engdegård <mattiase@acm.org>
Tue, 5 Jan 2021 10:27:41 +0000 (11:27 +0100)
committerMattias Engdegård <mattiase@acm.org>
Tue, 5 Jan 2021 10:28:58 +0000 (11:28 +0100)
lisp/subr.el

index 60a77859c432d2265ac57a0480aad87504a3f930..50acbd2790505a180db5e114bc46c88083340212 100644 (file)
@@ -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)