Mercurial > emacs
changeset 38315:d34fd7c9092b
(lisp-mode-shared-map): Bind TAB
to lisp-indent-line.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Fri, 06 Jul 2001 15:33:15 +0000 |
parents | 5fa40c87fc5b |
children | 68e7d7aae7a6 |
files | lisp/emacs-lisp/lisp-mode.el |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/lisp-mode.el Fri Jul 06 15:31:47 2001 +0000 +++ b/lisp/emacs-lisp/lisp-mode.el Fri Jul 06 15:33:15 2001 +0000 @@ -156,6 +156,7 @@ (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