1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 22:41:06 -08:00

(lisp-mode-shared-map): Undo the change from 2001-01-12. It is not needed,

since backspace is now mapped into DEL.
This commit is contained in:
Eli Zaretskii 2001-01-27 12:20:18 +00:00
parent 8dc5c94d1d
commit c1acacc417
2 changed files with 10 additions and 1 deletions

View file

@ -158,7 +158,10 @@ ine-condition\\|ine-widget\\|face\\)\\s-+'?\\(\\sw\\(\\sw\\|\\s_\\)+\\)")
(let ((map (make-sparse-keymap)))
(define-key map "\e\C-q" 'indent-sexp)
(define-key map "\177" 'backward-delete-char-untabify)
(define-key map [backspace] '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.")