changeset 35638:0f77c1f47579

(lisp-mode-shared-map): Undo the change from 2001-01-12. It is not needed, since backspace is now mapped into DEL.
author Eli Zaretskii <eliz@gnu.org>
date Sat, 27 Jan 2001 12:17:00 +0000
parents 0cd7267c45ae
children 0750f86f8396
files lisp/emacs-lisp/lisp-mode.el
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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.")