src/Pure/Isar/outer_syntax.ML
changeset 15156 daa9f645a26e
parent 15144 85929e1b307d
child 15224 1bd35fd87963
--- a/src/Pure/Isar/outer_syntax.ML	Mon Aug 23 17:06:18 2004 +0200
+++ b/src/Pure/Isar/outer_syntax.ML	Mon Aug 23 18:31:18 2004 +0200
@@ -296,7 +296,7 @@
     val pos = Path.position path;
     val (name', parents, files) = ThyHeader.scan (src, pos);
     val ml_path = ThyLoad.ml_path name;
-    val ml_file = if ml andalso is_some (ThyLoad.check_file ml_path) then [ml_path] else [];
+    val ml_file = if ml andalso is_some (ThyLoad.check_file None ml_path) then [ml_path] else [];
   in
     if name <> name' then
       error ("Filename " ^ quote (Path.pack path) ^
@@ -315,7 +315,7 @@
     val tr = Toplevel.imperative (fn () => ThyInfo.load_file time path);
     val tr_name = if time then "time_use" else "use";
   in
-    if is_none (ThyLoad.check_file path) then ()
+    if is_none (ThyLoad.check_file None path) then ()
     else Toplevel.excursion [Toplevel.empty |> Toplevel.name tr_name |> tr]
   end;