* lisp/indent.el (indent-line-to): Fix dedenting of tabs.

This commit is contained in:
Noam Postavsky 2018-07-10 12:07:01 -04:00
parent cc74539a19
commit c249e17324

View file

@ -300,9 +300,11 @@ only if necessary. It leaves point at end of indentation."
(progn (skip-chars-backward " ") (point))))
(indent-to column))
((> cur-col column) ; too far right (after tab?)
(let ((cur-indent (point)))
(delete-region (progn (move-to-column column t) (point))
cur-indent))))))
(delete-region (progn (move-to-column column t) (point))
;; The `move-to-column' call may replace
;; tabs with spaces, so we can't reuse the
;; previous `back-to-indentation' point.
(progn (back-to-indentation) (point)))))))
(defun current-left-margin ()
"Return the left margin to use for this line.