From: Lars Ingebrigtsen Date: Thu, 30 Jun 2022 12:45:55 +0000 (+0200) Subject: Also add elisp-eval/byte-compile-buffer to lisp-interaction-mode X-Git-Tag: emacs-29.0.90~1447^2~1348 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a6a92b8e4df551af113fcba5304457168b487cfa;p=emacs.git 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. --- 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)