since backspace is now mapped into DEL.
+2001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
+
+ * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Undo the change
+ from 2001-01-12. It is not needed, since backspace is mapped into
+ DEL.
+
2001-01-27 Richard M. Stallman <rms@caffeine.ai.mit.edu>
* dabbrev.el (dabbrev--substitute-expansion):
(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.")