Function: meta-indent-previous-line

meta-indent-previous-line is a byte-compiled function defined in meta-mode.el.gz.

Signature

(meta-indent-previous-line)

Documentation

Go to the previous line of code, skipping comments.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/meta-mode.el.gz
(defun meta-indent-previous-line ()
  "Go to the previous line of code, skipping comments."
  (skip-chars-backward "\n\t\f ")
  (move-to-column (current-indentation))
  ;; Ignore comments.
  (while (and (looking-at comment-start) (not (bobp)))
    (skip-chars-backward "\n\t\f ")
    (when (not (bobp))
      (move-to-column (current-indentation)))))