]> git.eshelyaron.com Git - emacs.git/commitdiff
(indent-for-tab-command): Remove spurious code.
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 1 Feb 2002 21:44:26 +0000 (21:44 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 1 Feb 2002 21:44:26 +0000 (21:44 +0000)
lisp/ChangeLog
lisp/indent.el

index 099f5334cac1bc90b9425be42bddc5b7cdc39cc0..18d3db9cc90fdc91f2d350a15f93bc6c4231b81a 100644 (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>
index 81bc00af63dba3ef9a04ef593da8b5f37ca566a7..a55f9afed8ee2fe75cec3c97c8cbc631f067131a 100644 (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.