Function: TeX-parse-all-errors

TeX-parse-all-errors is a byte-compiled function defined in tex.el.

Signature

(TeX-parse-all-errors)

Documentation

Parse TeX output buffer to collect all warnings and errors.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-parse-all-errors ()
  "Parse TeX output buffer to collect all warnings and errors."
  ;; Reset error list.
  (setq TeX-error-list nil)
  (save-excursion
    (goto-char (point-min))
    (while (TeX-parse-error nil t)))
  ;; Reset last visited error.
  (setq TeX-error-last-visited -1))