From 77796eb0142f5d9b616f59f271ef380f099f1cac Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mattias=20Engdeg=C3=A5rd?= Date: Tue, 5 Jan 2021 11:27:41 +0100 Subject: [PATCH] ; * lisp/subr.el (ctl-x-map): Fix typo in kill-buffer binding. --- lisp/subr.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5