summaryrefslogtreecommitdiff
path: root/lisp/indent.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2002-02-01 21:44:26 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2002-02-01 21:44:26 +0000
commite30ce0986a2efbb99806a9e9d48315403a7e2c67 (patch)
tree124bf63ab6bbb28b5f2ebe46bf584472e18cb834 /lisp/indent.el
parent62cec9fefe0b0b2e51736aac876011acc967f32c (diff)
downloademacs-e30ce0986a2efbb99806a9e9d48315403a7e2c67.tar.gz
(indent-for-tab-command): Remove spurious code.
Diffstat (limited to 'lisp/indent.el')
-rw-r--r--lisp/indent.el4
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/indent.el b/lisp/indent.el
index 81bc00af63d..a55f9afed8e 100644
--- a/lisp/indent.el
+++ b/lisp/indent.el
@@ -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.