diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-07-06 15:33:36 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-07-06 15:33:36 +0000 |
commit | a25e82a815a067a74ab4b0fef6103d402ac55e29 (patch) | |
tree | 92d7eb59c4b6e39971a9b190f50a462fb8af425d /lisp/emacs-lisp | |
parent | 7677c808b497cd771131e3779350312e23ec8286 (diff) | |
download | emacs-a25e82a815a067a74ab4b0fef6103d402ac55e29.tar.gz emacs-a25e82a815a067a74ab4b0fef6103d402ac55e29.tar.bz2 emacs-a25e82a815a067a74ab4b0fef6103d402ac55e29.zip |
(lisp-mode-shared-map): Bind TAB
to lisp-indent-line.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index 1992214ccf4..a66d553d93a 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 |