src/Pure/variable.ML
changeset 42360 da8817d01e7c
parent 42357 3305f573294e
child 42482 42c7ef050bc3
--- a/src/Pure/variable.ML	Sat Apr 16 15:25:25 2011 +0200
+++ b/src/Pure/variable.ML	Sat Apr 16 15:47:52 2011 +0200
@@ -239,7 +239,7 @@
 val declare_prf = Proofterm.fold_proof_terms declare_internal (declare_internal o Logic.mk_type);
 
 val declare_thm = Thm.fold_terms declare_internal;
-fun global_thm_context th = declare_thm th (ProofContext.init_global (Thm.theory_of_thm th));
+fun global_thm_context th = declare_thm th (Proof_Context.init_global (Thm.theory_of_thm th));
 
 
 (* renaming term/type frees *)
@@ -430,7 +430,7 @@
 
 fun importT ths ctxt =
   let
-    val thy = ProofContext.theory_of ctxt;
+    val thy = Proof_Context.theory_of ctxt;
     val (instT, ctxt') = importT_inst (map Thm.full_prop_of ths) ctxt;
     val insts' as (instT', _) = Thm.certify_inst thy (instT, []);
     val ths' = map (Thm.instantiate insts') ths;
@@ -444,7 +444,7 @@
 
 fun import is_open ths ctxt =
   let
-    val thy = ProofContext.theory_of ctxt;
+    val thy = Proof_Context.theory_of ctxt;
     val (insts, ctxt') = import_inst is_open (map Thm.full_prop_of ths) ctxt;
     val insts' = Thm.certify_inst thy insts;
     val ths' = map (Thm.instantiate insts') ths;