Variable: TeX-after-compilation-finished-functions

TeX-after-compilation-finished-functions is a variable defined in tex.el.

Value

nil

Documentation

Hook being run after TeX/LaTeX/ConTeXt finished successfully.

The functions in this hook are run with the DVI/PDF output file given as argument. Using this hook can be useful for updating the viewer automatically after re-compilation of the document.

If you use an emacs-internal viewer such as doc-view-mode or pdf-view-mode, add TeX-revert-document-buffer to this hook.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
;;; Command Hooks

(defvar TeX-after-compilation-finished-functions nil
  "Hook being run after TeX/LaTeX/ConTeXt finished successfully.
The functions in this hook are run with the DVI/PDF output file
given as argument.  Using this hook can be useful for updating
the viewer automatically after re-compilation of the document.

If you use an emacs-internal viewer such as `doc-view-mode' or
`pdf-view-mode', add `TeX-revert-document-buffer' to this hook.")