Function: TeX-command-buffer

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

Signature

(TeX-command-buffer &optional OVERRIDE-CONFIRM)

Documentation

Run TeX on the current buffer.

Query the user for a command to run on the temporary file specified by the variable TeX-region. The region file will be recreated from the visible part of the buffer.

If a prefix argument OVERRIDE-CONFIRM is given, confirmation will depend on it being positive instead of the entry in TeX-command-list.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-command-buffer (&optional override-confirm)
  "Run TeX on the current buffer.

Query the user for a command to run on the temporary file specified by
the variable `TeX-region'.  The region file will be recreated from the
visible part of the buffer.

If a prefix argument OVERRIDE-CONFIRM is given, confirmation will
depend on it being positive instead of the entry in `TeX-command-list'."
  (interactive "P")
  (let ((TeX-command-region-begin (point-min))
        (TeX-command-region-end (point-max)))
    (TeX-command-region override-confirm)))