Mercurial > emacs
changeset 84652:bfafceb8e3dd
(lisp-mode-shared-map): Use the default TAB binding to obey tab-always-indent.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Wed, 19 Sep 2007 13:44:43 +0000 |
parents | 3bde195a5005 |
children | dbbf6366b2a0 |
files | lisp/ChangeLog lisp/emacs-lisp/lisp-mode.el |
diffstat | 2 files changed, 9 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Wed Sep 19 11:26:57 2007 +0000 +++ b/lisp/ChangeLog Wed Sep 19 13:44:43 2007 +0000 @@ -1,8 +1,13 @@ +2007-09-19 Stefan Monnier <monnier@iro.umontreal.ca> + + * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Use the default TAB + binding, so tab-always-indent works right. + 2007-09-19 Johannes Weiner <hannes@saeurebad.de> * net/browse-url.el (browse-url-elinks-new-window): New function. - (browse-url-elinks): Use browse-url-elinks-new-window. Accept - optional second argument `new-window'. Fix typo in doc-string. + (browse-url-elinks): Use browse-url-elinks-new-window. + Accept optional second argument `new-window'. Fix typo in doc-string. (browse-url-elinks-sentinel): Use browse-url-elinks-new-window. Improve error message. @@ -17,8 +22,8 @@ * net/socks.el (socks-open-network-stream): Signal an explicit error if the port associated with a service string can't be found. - * textmodes/tex-mode.el (tex-terminate-paragraph): Use - backward-paragraph. Leave point at the site of any mismatch. + * textmodes/tex-mode.el (tex-terminate-paragraph): + Use backward-paragraph. Leave point at the site of any mismatch. 2007-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
--- a/lisp/emacs-lisp/lisp-mode.el Wed Sep 19 11:26:57 2007 +0000 +++ b/lisp/emacs-lisp/lisp-mode.el Wed Sep 19 13:44:43 2007 +0000 @@ -261,7 +261,6 @@ (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