src/Pure/Isar/isar_cmd.ML
changeset 24314 665b3ab2dabe
parent 24174 59a5ffec7078
child 24508 c8b82fec6447
--- a/src/Pure/Isar/isar_cmd.ML	Fri Aug 17 23:10:45 2007 +0200
+++ b/src/Pure/Isar/isar_cmd.ML	Fri Aug 17 23:10:46 2007 +0200
@@ -46,7 +46,6 @@
   val exit: Toplevel.transition -> Toplevel.transition
   val quit: Toplevel.transition -> Toplevel.transition
   val touch_child_thys: string -> Toplevel.transition -> Toplevel.transition
-  val touch_all_thys: Toplevel.transition -> Toplevel.transition
   val touch_thy: string -> Toplevel.transition -> Toplevel.transition
   val remove_thy: string -> Toplevel.transition -> Toplevel.transition
   val kill_thy: string -> Toplevel.transition -> Toplevel.transition
@@ -323,7 +322,6 @@
 (* touch theories *)
 
 fun touch_child_thys name = Toplevel.imperative (fn () => ThyInfo.touch_child_thys name);
-val touch_all_thys = Toplevel.imperative ThyInfo.touch_all_thys;
 fun touch_thy name = Toplevel.imperative (fn () => ThyInfo.touch_thy name);
 fun remove_thy name = Toplevel.imperative (fn () => ThyInfo.remove_thy name);
 fun kill_thy name = Toplevel.imperative (fn () => kill_theory name);