aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2001-07-06 15:33:36 +0000
committerGerd Moellmann <[email protected]>2001-07-06 15:33:36 +0000
commita25e82a815a067a74ab4b0fef6103d402ac55e29 (patch)
tree92d7eb59c4b6e39971a9b190f50a462fb8af425d
parent7677c808b497cd771131e3779350312e23ec8286 (diff)
(lisp-mode-shared-map): Bind TAB
to lisp-indent-line.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/emacs-lisp/lisp-mode.el1
2 files changed, 4 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 949486c2f9..c2816bd12d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
2001-07-06 Gerd Moellmann <[email protected]>
+ * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Bind TAB
+ to lisp-indent-line.
+
* net/ange-ftp.el (ange-ftp-file-modtime): Ignore 226 responses
from the server. Call encode-time only when we are sure that we
got a 213 response.
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el
index 1992214ccf..a66d553d93 100644
--- a/lisp/emacs-lisp/lisp-mode.el
+++ b/lisp/emacs-lisp/lisp-mode.el
@@ -156,6 +156,7 @@ ine-condition\\|ine-widget\\|face\\)\\s-+'?\\(\\sw\\(\\sw\\|\\s_\\)+\\)")
(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