From: Mattias EngdegÄrd Date: Tue, 5 Jan 2021 10:27:41 +0000 (+0100) Subject: ; * lisp/subr.el (ctl-x-map): Fix typo in kill-buffer binding. X-Git-Tag: emacs-28.0.90~4369 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=77796eb0142f5d9b616f59f271ef380f099f1cac;p=emacs.git ; * lisp/subr.el (ctl-x-map): Fix typo in kill-buffer binding. --- diff --git a/lisp/subr.el b/lisp/subr.el index 60a77859c43..50acbd27905 100644 --- 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)