Variable: compilation-skip-visited
compilation-skip-visited is a customizable variable defined in
compile.el.gz.
Value
nil
Documentation
Compilation motion commands skip visited messages if this is t.
Visited messages are ones for which the file, line and column have been jumped to from the current content in the current compilation buffer, even if it was from a different message.
This variable was added, or its default value changed, in Emacs 22.1.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/compile.el.gz
(defcustom compilation-skip-visited nil
"Compilation motion commands skip visited messages if this is t.
Visited messages are ones for which the file, line and column have been jumped
to from the current content in the current compilation buffer, even if it was
from a different message."
:type 'boolean
:version "22.1")