Variable: lisp-mode-shared-map

lisp-mode-shared-map is a variable defined in lisp-mode.el.gz.

Value

C-M-q  indent-sexp
C-M-q  prog-indent-sexp
DEL    backward-delete-char-untabify
M-q    prog-fill-reindent-defun

Documentation

Keymap for commands shared by all sorts of Lisp modes.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/lisp-mode.el.gz
(defvar-keymap lisp-mode-shared-map
  :doc "Keymap for commands shared by all sorts of Lisp modes."
  :parent prog-mode-map
  "C-M-q" #'indent-sexp
  "DEL"   #'backward-delete-char-untabify
  ;; This gets in the way when viewing a Lisp file in view-mode.  As
  ;; long as [backspace] is mapped into DEL via the
  ;; function-key-map, this should remain disabled!!
  ;;;"<backspace>" #'backward-delete-char-untabify
  )