diff options
| author | Gerd Moellmann | 2001-07-06 15:33:36 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-07-06 15:33:36 +0000 |
| commit | a25e82a815a067a74ab4b0fef6103d402ac55e29 (patch) | |
| tree | 92d7eb59c4b6e39971a9b190f50a462fb8af425d /lisp | |
| parent | 7677c808b497cd771131e3779350312e23ec8286 (diff) | |
| download | emacs-a25e82a815a067a74ab4b0fef6103d402ac55e29.tar.gz emacs-a25e82a815a067a74ab4b0fef6103d402ac55e29.zip | |
(lisp-mode-shared-map): Bind TAB
to lisp-indent-line.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 949486c2f91..c2816bd12dd 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2001-07-06 Gerd Moellmann <gerd@gnu.org> | 1 | 2001-07-06 Gerd Moellmann <gerd@gnu.org> |
| 2 | 2 | ||
| 3 | * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Bind TAB | ||
| 4 | to lisp-indent-line. | ||
| 5 | |||
| 3 | * net/ange-ftp.el (ange-ftp-file-modtime): Ignore 226 responses | 6 | * net/ange-ftp.el (ange-ftp-file-modtime): Ignore 226 responses |
| 4 | from the server. Call encode-time only when we are sure that we | 7 | from the server. Call encode-time only when we are sure that we |
| 5 | got a 213 response. | 8 | got a 213 response. |
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_\\)+\\)") | |||
| 156 | 156 | ||
| 157 | (defvar lisp-mode-shared-map | 157 | (defvar lisp-mode-shared-map |
| 158 | (let ((map (make-sparse-keymap))) | 158 | (let ((map (make-sparse-keymap))) |
| 159 | (define-key map "\t" 'lisp-indent-line) | ||
| 159 | (define-key map "\e\C-q" 'indent-sexp) | 160 | (define-key map "\e\C-q" 'indent-sexp) |
| 160 | (define-key map "\177" 'backward-delete-char-untabify) | 161 | (define-key map "\177" 'backward-delete-char-untabify) |
| 161 | ;; This gets in the way when viewing a Lisp file in view-mode. As | 162 | ;; This gets in the way when viewing a Lisp file in view-mode. As |