* lisp/emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from

prog-mode-map.
This commit is contained in:
Stefan Monnier 2013-05-29 10:14:16 -04:00
parent 9dbd3bb11a
commit 33e249a259
2 changed files with 7 additions and 2 deletions

View file

@ -266,6 +266,7 @@ font-lock keywords will not be case sensitive."
(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