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
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 lisp-mode-map
(let ((map (make-sparse-keymap)))
(set-keymap-parent map lisp-mode-shared-map)
(define-key map "\e\C-x" 'lisp-eval-defun)
(define-key map "\C-c\C-z" 'run-lisp)
map)
"Keymap for ordinary Lisp mode.
All commands in `lisp-mode-shared-map' are inherited by this map.")