Function: TeX-error-overview-next-error
TeX-error-overview-next-error is an interactive and byte-compiled
function defined in tex.el.
Signature
(TeX-error-overview-next-error &optional ARG)
Documentation
Move to the next line and find the associated error.
A prefix ARG specifies how many error messages to move; negative means move back to previous error messages.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-error-overview-next-error (&optional arg)
"Move to the next line and find the associated error.
A prefix ARG specifies how many error messages to move; negative
means move back to previous error messages."
(interactive "p")
(if (= (forward-line arg) 0)
(TeX-error-overview-goto-source)
;; If there are lines left to move we are at the beginning or at the end of
;; the buffer and there are no more errors.
(message "No more errors.")
(beep)))