Variable: TeX-queue-command

TeX-queue-command is a customizable variable defined in tex.el.

Value

"lpq -P%p"

Documentation

Command used to show the status of a printer queue.

First %p is expanded to the printer name, then ordinary expansion is performed as specified in TeX-expand-list(var)/TeX-expand-list(fun). If this is nil, the printer has no corresponding command.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defcustom TeX-queue-command "lpq -P%p"
  "Command used to show the status of a printer queue.

First `%p' is expanded to the printer name, then ordinary expansion is
performed as specified in `TeX-expand-list'.  If this is nil,
the printer has no corresponding command."
  :group 'TeX-command
  :type '(choice (string :tag "Queue check command")
                 (const :tag "No such command" nil)))