]> git.eshelyaron.com Git - emacs.git/commitdiff
Also add elisp-eval/byte-compile-buffer to lisp-interaction-mode
authorLars Ingebrigtsen <larsi@gnus.org>
Thu, 30 Jun 2022 12:45:55 +0000 (14:45 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 30 Jun 2022 12:46:04 +0000 (14:46 +0200)
* 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

index 056e87abba65239966bf910452e5c83db958c5fa..fb114ec990e42e697239dbead1263a8a8114651e 100644 (file)
@@ -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)