diff options
| author | Stefan Monnier | 2007-09-19 13:44:43 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2007-09-19 13:44:43 +0000 |
| commit | b608e3027e376f2e0db591250a33fc8f6b6b253b (patch) | |
| tree | 2351d67a59f72d2eda5719ba73912beb4ae7cfca | |
| parent | a38de16e8537ee580bb728038df62750dee8622f (diff) | |
| download | emacs-b608e3027e376f2e0db591250a33fc8f6b6b253b.tar.gz emacs-b608e3027e376f2e0db591250a33fc8f6b6b253b.zip | |
(lisp-mode-shared-map): Use the default TAB binding to obey tab-always-indent.
| -rw-r--r-- | lisp/ChangeLog | 13 | ||||
| -rw-r--r-- | lisp/emacs-lisp/lisp-mode.el | 1 |
2 files changed, 9 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 99c564c77a6..adf080ddeab 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,8 +1,13 @@ | |||
| 1 | 2007-09-19 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Use the default TAB | ||
| 4 | binding, so tab-always-indent works right. | ||
| 5 | |||
| 1 | 2007-09-19 Johannes Weiner <hannes@saeurebad.de> | 6 | 2007-09-19 Johannes Weiner <hannes@saeurebad.de> |
| 2 | 7 | ||
| 3 | * net/browse-url.el (browse-url-elinks-new-window): New function. | 8 | * net/browse-url.el (browse-url-elinks-new-window): New function. |
| 4 | (browse-url-elinks): Use browse-url-elinks-new-window. Accept | 9 | (browse-url-elinks): Use browse-url-elinks-new-window. |
| 5 | optional second argument `new-window'. Fix typo in doc-string. | 10 | Accept optional second argument `new-window'. Fix typo in doc-string. |
| 6 | (browse-url-elinks-sentinel): Use browse-url-elinks-new-window. | 11 | (browse-url-elinks-sentinel): Use browse-url-elinks-new-window. |
| 7 | Improve error message. | 12 | Improve error message. |
| 8 | 13 | ||
| @@ -17,8 +22,8 @@ | |||
| 17 | * net/socks.el (socks-open-network-stream): Signal an explicit | 22 | * net/socks.el (socks-open-network-stream): Signal an explicit |
| 18 | error if the port associated with a service string can't be found. | 23 | error if the port associated with a service string can't be found. |
| 19 | 24 | ||
| 20 | * textmodes/tex-mode.el (tex-terminate-paragraph): Use | 25 | * textmodes/tex-mode.el (tex-terminate-paragraph): |
| 21 | backward-paragraph. Leave point at the site of any mismatch. | 26 | Use backward-paragraph. Leave point at the site of any mismatch. |
| 22 | 27 | ||
| 23 | 2007-09-19 Stefan Monnier <monnier@iro.umontreal.ca> | 28 | 2007-09-19 Stefan Monnier <monnier@iro.umontreal.ca> |
| 24 | 29 | ||
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el index b6f6a450791..9b7a1aaeeff 100644 --- a/lisp/emacs-lisp/lisp-mode.el +++ b/lisp/emacs-lisp/lisp-mode.el | |||
| @@ -261,7 +261,6 @@ | |||
| 261 | 261 | ||
| 262 | (defvar lisp-mode-shared-map | 262 | (defvar lisp-mode-shared-map |
| 263 | (let ((map (make-sparse-keymap))) | 263 | (let ((map (make-sparse-keymap))) |
| 264 | (define-key map "\t" 'lisp-indent-line) | ||
| 265 | (define-key map "\e\C-q" 'indent-sexp) | 264 | (define-key map "\e\C-q" 'indent-sexp) |
| 266 | (define-key map "\177" 'backward-delete-char-untabify) | 265 | (define-key map "\177" 'backward-delete-char-untabify) |
| 267 | ;; This gets in the way when viewing a Lisp file in view-mode. As | 266 | ;; This gets in the way when viewing a Lisp file in view-mode. As |