From a6a92b8e4df551af113fcba5304457168b487cfa Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Thu, 30 Jun 2022 14:45:55 +0200 Subject: [PATCH] Also add elisp-eval/byte-compile-buffer to lisp-interaction-mode * lisp/progmodes/elisp-mode.el (lisp-interaction-mode-map): Also add elisp-eval-buffer and elisp-byte-compile-buffer to this map. --- lisp/progmodes/elisp-mode.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisp/progmodes/elisp-mode.el b/lisp/progmodes/elisp-mode.el index 056e87abba6..fb114ec990e 100644 --- a/lisp/progmodes/elisp-mode.el +++ b/lisp/progmodes/elisp-mode.el @@ -1230,6 +1230,8 @@ All commands in `lisp-mode-shared-map' are inherited by this map." :parent lisp-mode-shared-map "C-M-x" #'eval-defun "C-M-q" #'indent-pp-sexp + "C-c C-e" #'elisp-eval-buffer + "C-c C-b" #'elisp-byte-compile-buffer "M-TAB" #'completion-at-point "C-j" #'eval-print-last-sexp) -- 2.39.5