Mercurial > emacs
comparison lisp/emacs-lisp/lisp-mode.el @ 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 | 139991123d49 |
children | a4403e99257a |
comparison
equal
deleted
inserted
replaced
35637:0cd7267c45ae | 35638:0f77c1f47579 |
---|---|
156 | 156 |
157 (defvar lisp-mode-shared-map | 157 (defvar lisp-mode-shared-map |
158 (let ((map (make-sparse-keymap))) | 158 (let ((map (make-sparse-keymap))) |
159 (define-key map "\e\C-q" 'indent-sexp) | 159 (define-key map "\e\C-q" 'indent-sexp) |
160 (define-key map "\177" 'backward-delete-char-untabify) | 160 (define-key map "\177" 'backward-delete-char-untabify) |
161 (define-key map [backspace] 'backward-delete-char-untabify) | 161 ;; This gets in the way when viewing a Lisp file in view-mode. As |
162 ;; long as [backspace] is mapped into DEL via the | |
163 ;; function-key-map, this should remain disabled!! | |
164 ;;;(define-key map [backspace] 'backward-delete-char-untabify) | |
162 map) | 165 map) |
163 "Keymap for commands shared by all sorts of Lisp modes.") | 166 "Keymap for commands shared by all sorts of Lisp modes.") |
164 | 167 |
165 (defvar emacs-lisp-mode-map () | 168 (defvar emacs-lisp-mode-map () |
166 "Keymap for Emacs Lisp mode. | 169 "Keymap for Emacs Lisp mode. |