branch: externals/auctex commit 4b43c80d0132b448c6b45ce2abecda727e685458 Author: Tassilo Horn <t...@gnu.org> Commit: Tassilo Horn <t...@gnu.org>
Fix bug#19673 (cont.) * tex.el (TeX-view-program-list-builtin): Also remove "start" as executable from the "dvips and start" entry. --- ChangeLog | 2 ++ tex.el | 2 +- 2 files changed, 3 insertions(+), 1 deletions(-) diff --git a/ChangeLog b/ChangeLog index 608d02c..dab2cad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,8 @@ * tex.el (TeX-view-program-list-builtin): Remove "start" as executable entry because it's no executable but a Windows system command. + (TeX-view-program-list-builtin): Also remove "start" as executable + from the "dvips and start" entry. 2015-01-25 Tassilo Horn <t...@gnu.org> diff --git a/tex.el b/tex.el index 31b77f0..a17b8b4 100644 --- a/tex.el +++ b/tex.el @@ -1132,7 +1132,7 @@ the requirements are met." (cond ((eq system-type 'windows-nt) '(("Yap" ("yap -1" (mode-io-correlate " -s %n%b") " %o") "yap") - ("dvips and start" "dvips %d -o && start \"\" %f" ,(list "dvips" "start")) + ("dvips and start" "dvips %d -o && start \"\" %f" "dvips") ("start" "start \"\" %o"))) ((eq system-type 'darwin) '(("Preview.app" "open -a Preview.app %o" "open")