1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-25 23:10:47 -08:00

(lisp-mode-shared-map): Bind TAB

to lisp-indent-line.
This commit is contained in:
Gerd Moellmann 2001-07-06 15:33:36 +00:00
parent 7677c808b4
commit a25e82a815
2 changed files with 4 additions and 0 deletions

View file

@ -1,5 +1,8 @@
2001-07-06 Gerd Moellmann <gerd@gnu.org> 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 * net/ange-ftp.el (ange-ftp-file-modtime): Ignore 226 responses
from the server. Call encode-time only when we are sure that we from the server. Call encode-time only when we are sure that we
got a 213 response. got a 213 response.

View file

@ -156,6 +156,7 @@ ine-condition\\|ine-widget\\|face\\)\\s-+'?\\(\\sw\\(\\sw\\|\\s_\\)+\\)")
(defvar lisp-mode-shared-map (defvar lisp-mode-shared-map
(let ((map (make-sparse-keymap))) (let ((map (make-sparse-keymap)))
(define-key map "\t" 'lisp-indent-line)
(define-key map "\e\C-q" 'indent-sexp) (define-key map "\e\C-q" 'indent-sexp)
(define-key map "\177" 'backward-delete-char-untabify) (define-key map "\177" 'backward-delete-char-untabify)
;; This gets in the way when viewing a Lisp file in view-mode. As ;; This gets in the way when viewing a Lisp file in view-mode. As