Function: compilation-next-file

compilation-next-file is an interactive and byte-compiled function defined in compile.el.gz.

Signature

(compilation-next-file N)

Documentation

Move point to the next error for a different file than the current one.

Prefix arg N says how many files to move forwards (or backwards, if negative).

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/compile.el.gz
(defun compilation-next-file (n)
  "Move point to the next error for a different file than the current one.
Prefix arg N says how many files to move forwards (or backwards, if negative)."
  (interactive "p")
  (compilation-next-error n t))