Function: TeX-run-shell
TeX-run-shell is a byte-compiled function defined in tex.el.
Signature
(TeX-run-shell NAME COMMAND FILE)
Documentation
Ignore first and third argument, start shell-command with second argument.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-run-shell (_name command _file)
"Ignore first and third argument, start shell-command with second argument."
(let ((default-directory (TeX-master-directory)))
(shell-command command)
(if (eq system-type 'ms-dos)
(redraw-display))))