1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-26 07:11:34 -08:00

* 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

@ -1,3 +1,8 @@
2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
* emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
prog-mode-map.
2013-05-29 Leo Liu <sdl.web@gmail.com>
* progmodes/octave.el (octave-indent-comment): Tweak regexps.
@ -24,8 +29,7 @@
2013-05-28 Alan Mackenzie <acm@muc.de>
Handle "capitalised keywords" correctly.
* progmodes/cc-mode.el (c-after-change): bind case-fold-search to
nil.
* progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
2013-05-28 Aidan Gauland <aidalgol@amuri.net>

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