Function: TeX-parse-command
TeX-parse-command is a byte-compiled function defined in tex.el.
Signature
(TeX-parse-command ARG REPARSE)
Documentation
We can't parse anything but TeX.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
;;; - Parsers Hooks
;; All this parsers hooks should have the same arguments even though they will
;; be ignored, because `TeX-next-error' can call any of these functions.
(defun TeX-parse-command (_arg _reparse)
"We can't parse anything but TeX."
(error "I cannot parse %s output, sorry"
(if (TeX-active-process)
(process-name (TeX-active-process))
"this")))