restart_loader: reset_path;
authorwenzelm
Mon, 28 Aug 2000 14:09:33 +0200
changeset 9697 c5fc121c2067
parent 9696 5c8acc0282c8
child 9698 f0740137a65d
restart_loader: reset_path;
src/Pure/Interface/proof_general.ML
--- a/src/Pure/Interface/proof_general.ML	Mon Aug 28 14:09:12 2000 +0200
+++ b/src/Pure/Interface/proof_general.ML	Mon Aug 28 14:09:33 2000 +0200
@@ -194,11 +194,14 @@
   tell_clear_response ();
   writeln (Session.welcome ()));
 
+fun restart_loader () =
+  (ThyInfo.touch_all_thys (); ThyLoad.reset_path ());
+
 in
 
 fun isa_start () = restart false;
-fun isa_restart () = (ThyInfo.touch_all_thys (); restart false);
-fun isar_restart () = (ThyInfo.touch_all_thys (); restart true; raise Toplevel.RESTART);
+fun isa_restart () = (restart_loader (); restart false);
+fun isar_restart () = (restart_loader (); restart true; raise Toplevel.RESTART);
 
 end;