Function: TeX-command-run-all

TeX-command-run-all is an interactive and byte-compiled function defined in tex.el.

Signature

(TeX-command-run-all ARG)

Documentation

Compile the current document until an error occurs or it is finished.

With a prefix ARG (C-u (universal-argument) M-x TeX-command-run-all (TeX-command-run-all)), compile the current region instead, that is, call TeX-command-run-all-region. With multiple prefix arguments (C-u (universal-argument) C-u (universal-argument) M-x TeX-command-run-all (TeX-command-run-all)), compile the current section instead, that is, call LaTeX-command-run-all-section.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-command-run-all (arg)
  "Compile the current document until an error occurs or it is finished.
With a prefix ARG (`\\[universal-argument] \\[TeX-command-run-all]'),
compile the current region instead, that is, call
`TeX-command-run-all-region'.  With multiple prefix
arguments (`\\[universal-argument] \\[universal-argument] \\[TeX-command-run-all]'),
compile the current section instead, that is, call
`LaTeX-command-run-all-section'."
  (interactive "P")
  (cond
   ((null arg)       (TeX-command-sequence t t))
   ((= 4 (car arg))  (TeX-command-run-all-region))
   (t                (LaTeX-command-run-all-section))))