Function: TeX-error-overview-previous-error
TeX-error-overview-previous-error is an interactive and byte-compiled
function defined in tex.el.
Signature
(TeX-error-overview-previous-error &optional ARG)
Documentation
Move to the previous line and find the associated error.
Prefix ARG says how many error messages to move backward (or forward, if negative).
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-error-overview-previous-error (&optional arg)
"Move to the previous line and find the associated error.
Prefix ARG says how many error messages to move backward (or
forward, if negative)."
(interactive "p")
(TeX-error-overview-next-error (- arg)))