load_thy: try_ml_file unconditionally;
authorwenzelm
Wed, 08 Aug 2007 23:07:47 +0200
changeset 24188 d5960310c4d5
parent 24187 8bdf5ca5871f
child 24189 1fa9852643a3
load_thy: try_ml_file unconditionally;
src/Pure/Isar/outer_syntax.ML
--- a/src/Pure/Isar/outer_syntax.ML	Wed Aug 08 23:07:46 2007 +0200
+++ b/src/Pure/Isar/outer_syntax.ML	Wed Aug 08 23:07:47 2007 +0200
@@ -278,10 +278,10 @@
     val _ = if time then writeln ("**** Finished theory " ^ quote name ^ " ****\n") else ();
   in () end;
 
-fun load_thy dir name pos text ml time =
+fun load_thy dir name pos text time =
  (run_thy dir name pos text time;
   CRITICAL (fn () => ML_Context.set_context (SOME (Context.Theory (ThyInfo.get_theory name))));
-  if ml then try_ml_file dir name time else ());
+  try_ml_file dir name time);
 
 in