# HG changeset patch # User wenzelm # Date 1004903819 -3600 # Node ID 8c86683597a8af9644f830f9630dced7442842a3 # Parent 1e5c01d5fe041b60e41dfec2ba58839e0118eca8 IsarThy.theorem_i (None, []); diff -r 1e5c01d5fe04 -r 8c86683597a8 src/HOL/Tools/recdef_package.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; diff -r 1e5c01d5fe04 -r 8c86683597a8 src/HOL/Tools/typedef_package.ML --- 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; diff -r 1e5c01d5fe04 -r 8c86683597a8 src/Pure/axclass.ML --- 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;