Function: TeX-run-BibTeX
TeX-run-BibTeX is a byte-compiled function defined in tex.el.
Signature
(TeX-run-BibTeX NAME COMMAND FILE)
Documentation
Create a process for NAME using COMMAND to format FILE with BibTeX.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-run-BibTeX (name command file)
"Create a process for NAME using COMMAND to format FILE with BibTeX."
(let ((process (TeX-run-command name command file)))
(setq TeX-sentinel-function #'TeX-BibTeX-sentinel)
(if TeX-process-asynchronous
process
(TeX-synchronous-sentinel name file process))))