# HG changeset patch # User Eli Zaretskii # Date 980597820 0 # Node ID 0f77c1f475790794283ae5e84c69ce18853e1975 # Parent 0cd7267c45ae05eea509f3efb444a309530360a9 (lisp-mode-shared-map): Undo the change from 2001-01-12. It is not needed, since backspace is now mapped into DEL. diff -r 0cd7267c45ae -r 0f77c1f47579 lisp/emacs-lisp/lisp-mode.el --- a/lisp/emacs-lisp/lisp-mode.el Sat Jan 27 12:07:49 2001 +0000 +++ b/lisp/emacs-lisp/lisp-mode.el Sat Jan 27 12:17:00 2001 +0000 @@ -158,7 +158,10 @@ (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.")