Function: texinfo-quit-job

texinfo-quit-job is an interactive and byte-compiled function defined in texinfo.el.gz.

Signature

(texinfo-quit-job)

Documentation

Quit currently running TeX job, by sending an x to it.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/texinfo.el.gz
(defun texinfo-quit-job ()
  "Quit currently running TeX job, by sending an `x' to it."
  (interactive)
  (if (not (get-process "tex-shell"))
      (error "No TeX shell running"))
  (tex-send-command "x"))