Variable: tex-start-options
tex-start-options is a customizable variable defined in
tex-mode.el.gz.
Value
""
Documentation
TeX options to use when starting TeX.
These immediately precede the commands in tex-start-commands
and the input file name, with no separating space and are not shell-quoted.
If nil, TeX runs with no options. See the documentation of tex-command.
This variable was added, or its default value changed, in Emacs 22.1.
Probably introduced at or before Emacs version 22.1.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/tex-mode.el.gz
;;;###autoload
(defcustom tex-start-options (purecopy "")
"TeX options to use when starting TeX.
These immediately precede the commands in `tex-start-commands'
and the input file name, with no separating space and are not shell-quoted.
If nil, TeX runs with no options. See the documentation of `tex-command'."
:type 'string
:group 'tex-run
:version "22.1")