src/Doc/antiquote_setup.ML
changeset 53045 4c297ee47c28
parent 53044 be27b6be8027
child 53061 417cb0f713e0
--- a/src/Doc/antiquote_setup.ML	Fri Aug 16 22:39:31 2013 +0200
+++ b/src/Doc/antiquote_setup.ML	Fri Aug 16 22:57:16 2013 +0200
@@ -150,13 +150,11 @@
 
 fun check_tool (name, pos) =
   let
-    (* FIXME ISABELLE_TOOLS !? *)
-    val dirs = map Path.explode ["~~/lib/Tools", "~~/src/Tools/jEdit/lib/Tools"];
     fun tool dir =
       let val path = Path.append dir (Path.basic name)
       in if File.exists path then SOME path else NONE end;
   in
-    (case get_first tool dirs of
+    (case get_first tool (Path.split (getenv "ISABELLE_TOOLS")) of
       NONE => false
     | SOME path => (Position.report pos (Markup.path (Path.implode path)); true))
   end;