Function: TeX-kill-job

TeX-kill-job is an interactive and byte-compiled function defined in tex.el.

Signature

(TeX-kill-job)

Documentation

Kill the currently running TeX job.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-kill-job ()
  "Kill the currently running TeX job."
  (interactive)
  (let ((process (TeX-active-process)))
    (if process
        (kill-process process)
      ;; Should test for TeX background process here.
      (error "No TeX process to kill"))))