Function: fill-indent-to-left-margin

fill-indent-to-left-margin is a byte-compiled function defined in fill.el.gz.

Signature

(fill-indent-to-left-margin)

Documentation

Indent current line to the column given by current-left-margin.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/fill.el.gz
(defun fill-indent-to-left-margin ()
  "Indent current line to the column given by `current-left-margin'."
  (let ((beg (point)))
    (indent-line-to (current-left-margin))
    (put-text-property beg (point) 'face 'default)))