Function: backward-to-indentation

backward-to-indentation is an interactive and byte-compiled function defined in simple.el.gz.

Signature

(backward-to-indentation &optional ARG)

Documentation

Move backward ARG lines and position at first nonblank character.

View in manual

Probably introduced at or before Emacs version 22.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defun backward-to-indentation (&optional arg)
  "Move backward ARG lines and position at first nonblank character."
  (interactive "^p")
  (forward-line (- (or arg 1)))
  (skip-chars-forward " \t"))