Mercurial > emacs
changeset 43053:c9f8fe6e7d28
(indent-for-tab-command): Remove spurious code.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Fri, 01 Feb 2002 21:44:26 +0000 |
parents | 4037178317df |
children | cdc1a6112b86 |
files | lisp/ChangeLog lisp/indent.el |
diffstat | 2 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Fri Feb 01 19:31:46 2002 +0000 +++ b/lisp/ChangeLog Fri Feb 01 21:44:26 2002 +0000 @@ -1,5 +1,7 @@ 2002-02-01 Stefan Monnier <monnier@cs.yale.edu> + * indent.el (indent-for-tab-command): Remove spurious code. + * hi-lock.el (hi-lock-find-patterns): Save restriction. 2002-02-01 Eli Zaretskii <eliz@is.elta.co.il>
--- a/lisp/indent.el Fri Feb 01 19:31:46 2002 +0000 +++ b/lisp/indent.el Fri Feb 01 21:44:26 2002 +0000 @@ -84,9 +84,7 @@ ;; so we force it to always insert a tab here. (eq indent-line-function 'indent-to-left-margin) (and (not tab-always-indent) - (> (current-column) (current-indentation))) - (and (not (eq tab-always-indent 'always)) - (eq this-command last-command))) + (> (current-column) (current-indentation)))) (insert-tab arg)) ;; Those functions are meant specifically for tabbing and not for ;; indenting, so we can't pass them to indent-according-to-mode.