]> git.eshelyaron.com Git - emacs.git/commitdiff
(lisp-mode-shared-map): Bind TAB
authorGerd Moellmann <gerd@gnu.org>
Fri, 6 Jul 2001 15:33:36 +0000 (15:33 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 6 Jul 2001 15:33:36 +0000 (15:33 +0000)
to lisp-indent-line.

lisp/ChangeLog
lisp/emacs-lisp/lisp-mode.el

index 949486c2f91ad1062a3b6b6343163446254dd62c..c2816bd12dd0416b3f66b7fd4ed44f90efcbfdf6 100644 (file)
@@ -1,5 +1,8 @@
 2001-07-06  Gerd Moellmann  <gerd@gnu.org>
 
+       * 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.
index 1992214ccf430d5ee92fc7c077c63e3b04de3944..a66d553d93a194c385cb5c46d1c0f0a6eaef5c06 100644 (file)
@@ -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