diff lisp/emacs-lisp/lisp-mode.el @ 84652:bfafceb8e3dd

(lisp-mode-shared-map): Use the default TAB binding to obey tab-always-indent.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Wed, 19 Sep 2007 13:44:43 +0000
parents 6499a8de7fcb
children 5039706521c9
line wrap: on
line diff
--- a/lisp/emacs-lisp/lisp-mode.el	Wed Sep 19 11:26:57 2007 +0000
+++ b/lisp/emacs-lisp/lisp-mode.el	Wed Sep 19 13:44:43 2007 +0000
@@ -261,7 +261,6 @@
 
 (defvar lisp-mode-shared-map
   (let ((map (make-sparse-keymap)))
-    (define-key map "\t" 'lisp-indent-line)
     (define-key map "\e\C-q" 'indent-sexp)
     (define-key map "\177" 'backward-delete-char-untabify)
     ;; This gets in the way when viewing a Lisp file in view-mode.  As