summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-07-26 22:21:02 +0000
committerRichard M. Stallman <rms@gnu.org>1995-07-26 22:21:02 +0000
commit3bdffa9edb8c96707624785a7011fd312ac066f6 (patch)
tree74e4663db5a33f7851d8fbc87fac1f03591c7f87 /lisp/emacs-lisp
parent3a7b95fb58966c89d2fb57e7213b4714b90625a0 (diff)
downloademacs-3bdffa9edb8c96707624785a7011fd312ac066f6.tar.gz
emacs-3bdffa9edb8c96707624785a7011fd312ac066f6.tar.bz2
emacs-3bdffa9edb8c96707624785a7011fd312ac066f6.zip
(shared-lisp-mode-map): Don't bind TAB, just set indent-line-function.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/lisp-mode.el5
1 files changed, 2 insertions, 3 deletions
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
()