Variable: TeX-shell-command-option
TeX-shell-command-option is a customizable variable defined in tex.el.
Value
"-c"
Documentation
Shell argument indicating that next argument is the command.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defcustom TeX-shell-command-option
(cond ((memq system-type '(ms-dos emx windows-nt))
shell-command-switch)
(t ;Unix & EMX (Emacs 19 port to OS/2)
"-c"))
"Shell argument indicating that next argument is the command."
:group 'TeX-command
:type 'string)