Function: indent-relative-first-indent-point

indent-relative-first-indent-point is an interactive and byte-compiled function defined in indent.el.gz.

Signature

(indent-relative-first-indent-point)

Documentation

Indent the current line like the previous nonblank line.

Indent to the first indentation position in the previous nonblank line if that position is greater than the current column.

See also indent-relative.

View in manual

Key Bindings

Aliases

indent-relative-maybe (obsolete since 26.1)

Source Code

;; Defined in /usr/src/emacs/lisp/indent.el.gz
(defun indent-relative-first-indent-point ()
  "Indent the current line like the previous nonblank line.
Indent to the first indentation position in the previous nonblank
line if that position is greater than the current column.

See also `indent-relative'."
  (interactive)
  (indent-relative t))