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

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 lisp-mode-shared-map
  (let ((map (make-sparse-keymap)))
    (set-keymap-parent map prog-mode-map)
    (define-key map "\e\C-q" 'indent-sexp)
    (define-key map "\177" '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!!
    ;;;(define-key map [backspace] 'backward-delete-char-untabify)
    map)
  "Keymap for commands shared by all sorts of Lisp modes.")