diff options
author | Utkarsh Singh <utkarsh190601@gmail.com> | 2021-06-22 15:07:59 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-06-22 15:08:07 +0200 |
commit | 00501d74d3f9642e69b96bcfdb0cc9228d71aa3b (patch) | |
tree | 249c401132bf0d052a8c3a51c4a85b3a408ecdb1 /lisp | |
parent | 2966e3acbe6ebd59a69fbdbb0cbf76f6f992f21b (diff) | |
download | emacs-00501d74d3f9642e69b96bcfdb0cc9228d71aa3b.tar.gz emacs-00501d74d3f9642e69b96bcfdb0cc9228d71aa3b.tar.bz2 emacs-00501d74d3f9642e69b96bcfdb0cc9228d71aa3b.zip |
Make tex-compile-commands heed tex-start-options
* lisp/textmodes/tex-mode.el (tex-compile-commands): Respect
`tex-start-options' (bug#49018).
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/textmodes/tex-mode.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el index a805c8952fd..8b8108cb97b 100644 --- a/lisp/textmodes/tex-mode.el +++ b/lisp/textmodes/tex-mode.el @@ -2132,6 +2132,7 @@ If NOT-ALL is non-nil, save the `.dvi' file." (defvar tex-compile-commands `(,@(mapcar (lambda (prefix) `((concat ,prefix tex-command + " " tex-start-options " " (if (< 0 (length tex-start-commands)) (shell-quote-argument tex-start-commands)) " %f") |