Function: forward-to-indentation

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

Signature

(forward-to-indentation &optional ARG)

Documentation

Move forward ARG lines and position at first nonblank character.

Probably introduced at or before Emacs version 22.1.

Key Bindings

Source Code

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