Function: compilation-previous-file

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

Signature

(compilation-previous-file N)

Documentation

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

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

Key Bindings

Source Code

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