diff options
author | Eli Zaretskii <eliz@gnu.org> | 2001-01-27 12:20:18 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2001-01-27 12:20:18 +0000 |
commit | c1acacc417d9e56794ec7bef4255d39ee5868579 (patch) | |
tree | e6fda5e09f8a998f45a99a4ad3ccbf9a2f9f66d4 /lisp/emacs-lisp/lisp-mode.el | |
parent | 8dc5c94d1dccd886636c8cb61ee93bb8ee6d6a6a (diff) | |
download | emacs-c1acacc417d9e56794ec7bef4255d39ee5868579.tar.gz emacs-c1acacc417d9e56794ec7bef4255d39ee5868579.tar.bz2 emacs-c1acacc417d9e56794ec7bef4255d39ee5868579.zip |
(lisp-mode-shared-map): Undo the change from 2001-01-12. It is not needed,
since backspace is now mapped into DEL.
Diffstat (limited to 'lisp/emacs-lisp/lisp-mode.el')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index b457fa624f0..adc16ef0833 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -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.") |