Variable: lisp-mode-map
lisp-mode-map is a variable defined in lisp-mode.el.gz.
Value
C-M-q indent-sexp
C-M-q prog-indent-sexp
C-M-x lisp-eval-defun
C-c C-a lisp-show-arglist
C-c C-c lisp-compile-defun
C-c C-d lisp-describe-sym
C-c C-e lisp-eval-defun
C-c C-f lisp-show-function-documentation
C-c C-k lisp-compile-file
C-c C-l lisp-load-file
C-c C-n lisp-eval-form-and-next
C-c C-p lisp-eval-paragraph
C-c C-r lisp-eval-region
C-c C-v lisp-show-variable-documentation
C-c C-z switch-to-lisp
C-x C-e lisp-eval-last-sexp
DEL backward-delete-char-untabify
M-q prog-fill-reindent-defun
Documentation
Keymap for ordinary Lisp mode.
All commands in lisp-mode-shared-map are inherited by this map.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/lisp-mode.el.gz
;;; Generic Lisp mode.
(defvar-keymap lisp-mode-map
:doc "Keymap for ordinary Lisp mode.
All commands in `lisp-mode-shared-map' are inherited by this map."
:parent lisp-mode-shared-map
"C-M-x" #'lisp-eval-defun
"C-c C-z" #'run-lisp)