From: Richard M. Stallman Date: Wed, 26 Jul 1995 22:21:02 +0000 (+0000) Subject: (shared-lisp-mode-map): Don't bind TAB, just set indent-line-function. X-Git-Tag: emacs-19.34~3178 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3bdffa9edb8c96707624785a7011fd312ac066f6;p=emacs.git (shared-lisp-mode-map): Don't bind TAB, just set indent-line-function. --- diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 9b59c672ead..f493a615d30 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el @@ -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 ()