generic $ISABELLE_OPEN;
authorwenzelm
Fri, 06 Dec 2013 22:50:47 +0100
changeset 54685 a9c9792e87a5
parent 54684 4820b645e760
child 54686 070d5e856798
generic $ISABELLE_OPEN;
etc/settings
--- a/etc/settings	Fri Dec 06 22:35:51 2013 +0100
+++ b/etc/settings	Fri Dec 06 22:50:47 2013 +0100
@@ -100,21 +100,21 @@
 # Where to look for docs (multiple dirs separated by ':').
 ISABELLE_DOCS="$ISABELLE_HOME/doc"
 
-# PDF file viewer
+# "open" within desktop environment (potentially asynchronous)
 case "$ISABELLE_PLATFORM_FAMILY" in
   linux)
-    PDF_VIEWER="xdg-open"
+    ISABELLE_OPEN="xdg-open"
     ;;
   macos)
-    PDF_VIEWER="open"
+    ISABELLE_OPEN="open"
     ;;
   windows)
-    PDF_VIEWER="cygstart"
+    ISABELLE_OPEN="cygstart"
     ;;
 esac
 
-# DVI file viewer
-DVI_VIEWER="xdvi"
+PDF_VIEWER="$ISABELLE_OPEN"
+DVI_VIEWER="$ISABELLE_OPEN"
 
 
 ###