changeset 12682:66b3d052d4fe

(shared-lisp-mode-map): Don't bind TAB, just set indent-line-function.
author Richard M. Stallman <rms@gnu.org>
date Wed, 26 Jul 1995 22:21:02 +0000
parents 3a4ac2729fa5
children 0e9d2009e609
files lisp/emacs-lisp/lisp-mode.el
diffstat 1 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/emacs-lisp/lisp-mode.el	Wed Jul 26 21:48:05 1995 +0000
+++ b/lisp/emacs-lisp/lisp-mode.el	Wed Jul 26 22:21:02 1995 +0000
@@ -114,12 +114,11 @@
     ()
    (setq shared-lisp-mode-map (make-sparse-keymap))
    (define-key shared-lisp-mode-map "\e\C-q" 'indent-sexp)
-   (define-key shared-lisp-mode-map "\177" 'backward-delete-char-untabify)
-   (define-key shared-lisp-mode-map "\t" 'lisp-indent-line))
+   (define-key shared-lisp-mode-map "\177" 'backward-delete-char-untabify))
 
 (defvar emacs-lisp-mode-map ()
   "Keymap for Emacs Lisp mode.
-All commands in shared-lisp-mode-map are inherited by this map.")
+All commands in `shared-lisp-mode-map' are inherited by this map.")
 
 (if emacs-lisp-mode-map
     ()