1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-05 11:45:45 +00:00

(tex-compile-commands): Handle tex-start-commands like tex-start-tex does.

This commit is contained in:
Stefan Monnier 2003-06-14 19:56:50 +00:00
parent f5a9b1805c
commit bf4ec22239

View File

@ -1577,10 +1577,12 @@ If NOT-ALL is non-nil, save the `.dvi' file."
(defvar tex-compile-commands
'(((concat "pdf" tex-command
" " (shell-quote-argument tex-start-commands) " %f")
" " (if (< 0 (length tex-start-commands))
(shell-quote-argument tex-start-commands)) " %f")
t "%r.pdf")
((concat tex-command
" " (shell-quote-argument tex-start-commands) " %f")
" " (if (< 0 (length tex-start-commands))
(shell-quote-argument tex-start-commands)) " %f")
t "%r.dvi")
("xdvi %r &" "%r.dvi")
("advi %r &" "%r.dvi")