1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

(indent-for-tab-command): Remove spurious code.

This commit is contained in:
Stefan Monnier 2002-02-01 21:44:26 +00:00
parent 62cec9fefe
commit e30ce0986a
2 changed files with 3 additions and 3 deletions

View file

@ -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>

View file

@ -84,9 +84,7 @@ The function actually called to indent is determined by the value of
;; 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.