# HG changeset patch # User Stefan Monnier # Date 1012599866 0 # Node ID c9f8fe6e7d284bb85a91cf4fa3bf7ce8ddeb7f79 # Parent 4037178317df2f9850627b287235f7ee793cf2ee (indent-for-tab-command): Remove spurious code. diff -r 4037178317df -r c9f8fe6e7d28 lisp/ChangeLog --- 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 + * indent.el (indent-for-tab-command): Remove spurious code. + * hi-lock.el (hi-lock-find-patterns): Save restriction. 2002-02-01 Eli Zaretskii diff -r 4037178317df -r c9f8fe6e7d28 lisp/indent.el --- 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.