IsarThy.theorem_i (None, []);
authorwenzelm
Sun, 04 Nov 2001 20:56:59 +0100
changeset 12043 8c86683597a8
parent 12042 1e5c01d5fe04
child 12044 d6294ebfff24
IsarThy.theorem_i (None, []);
src/HOL/Tools/recdef_package.ML
src/HOL/Tools/typedef_package.ML
src/Pure/axclass.ML
--- a/src/HOL/Tools/recdef_package.ML	Sun Nov 04 20:56:19 2001 +0100
+++ b/src/HOL/Tools/recdef_package.ML	Sun Nov 04 20:56:59 2001 +0100
@@ -310,7 +310,7 @@
       error ("No termination condition #" ^ string_of_int i ^
         " in recdef definition of " ^ quote name);
   in
-    thy |> IsarThy.theorem_i Drule.internalK None
+    thy |> IsarThy.theorem_i Drule.internalK (None, [])
       (((bname, atts), (HOLogic.mk_Trueprop tc, ([], []))), Comment.none) int
   end;
 
--- a/src/HOL/Tools/typedef_package.ML	Sun Nov 04 20:56:19 2001 +0100
+++ b/src/HOL/Tools/typedef_package.ML	Sun Nov 04 20:56:59 2001 +0100
@@ -244,7 +244,7 @@
       prepare_typedef prep_term true name typ set opt_morphs thy;
     val att = #1 o att_result;
   in
-    thy |> IsarThy.theorem_i Drule.internalK None
+    thy |> IsarThy.theorem_i Drule.internalK (None, [])
       ((("", [att]), (goal, ([goal_pat], []))), comment) int
   end;
 
--- a/src/Pure/axclass.ML	Sun Nov 04 20:56:19 2001 +0100
+++ b/src/Pure/axclass.ML	Sun Nov 04 20:56:59 2001 +0100
@@ -423,7 +423,7 @@
 
 fun inst_proof mk_prop add_thms (sig_prop, comment) int thy =
   thy
-  |> IsarThy.theorem_i Drule.internalK None ((("", [inst_attribute add_thms]),
+  |> IsarThy.theorem_i Drule.internalK (None, []) ((("", [inst_attribute add_thms]),
     (mk_prop (Theory.sign_of thy) sig_prop, ([], []))), comment) int;
 
 val instance_subclass_proof = inst_proof (mk_classrel oo read_classrel) add_classrel_thms;