branch: elpa
commit 81512a2275707731b64e769576f35360a7518ff7
Author: Tassilo Horn <[email protected]>
Commit: Tassilo Horn <[email protected]>
Fix bug#19673
* tex.el (TeX-view-program-list-builtin): Remove "start" as
executable entry because it's no executable but a Windows system
command.
---
ChangeLog | 6 ++++++
tex.el | 2 +-
2 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 4aa8dfd..608d02c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2015-01-27 Tassilo Horn <[email protected]>
+
+ * tex.el (TeX-view-program-list-builtin): Remove "start" as
+ executable entry because it's no executable but a Windows system
+ command.
+
2015-01-25 Tassilo Horn <[email protected]>
* latex.el (LaTeX-section-heading): Use default parameter of
diff --git a/tex.el b/tex.el
index e64af2a..31b77f0 100644
--- a/tex.el
+++ b/tex.el
@@ -1133,7 +1133,7 @@ the requirements are met."
((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"))
- ("start" "start \"\" %o" "start")))
+ ("start" "start \"\" %o")))
((eq system-type 'darwin)
'(("Preview.app" "open -a Preview.app %o" "open")
("Skim" "open -a Skim.app %o" "open")