src/HOL/Mirabelle/Tools/mirabelle.ML
changeset 33522 737589bb9bb8
parent 33292 affe60b3d864
child 34035 08d34921b7dd
--- a/src/HOL/Mirabelle/Tools/mirabelle.ML	Sun Nov 08 18:43:22 2009 +0100
+++ b/src/HOL/Mirabelle/Tools/mirabelle.ML	Sun Nov 08 18:43:42 2009 +0100
@@ -60,13 +60,12 @@
 type run_action = int -> run_args -> unit
 type action = init_action * run_action * done_action
 
-structure Actions = TheoryDataFun
+structure Actions = Theory_Data
 (
   type T = (int * run_action * done_action) list
   val empty = []
-  val copy = I
   val extend = I
-  fun merge _ = Library.merge (K true)
+  fun merge data = Library.merge (K true) data  (* FIXME ?!? *)
 )