Function: tex-show-print-queue
tex-show-print-queue is an interactive and byte-compiled function
defined in tex-mode.el.gz.
Signature
(tex-show-print-queue)
Documentation
Show the print queue that M-x tex-print (tex-print) put your job on.
Runs the shell command defined by tex-show-queue-command.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/tex-mode.el.gz
(defun tex-show-print-queue ()
"Show the print queue that \\[tex-print] put your job on.
Runs the shell command defined by `tex-show-queue-command'."
(interactive)
(if (tex-shell-running)
(tex-kill-job)
(tex-start-shell))
(tex-send-command tex-show-queue-command)
(tex-display-shell))