src/Pure/Isar/skip_proof.ML
changeset 42360 da8817d01e7c
parent 36610 bafd82950e24
child 42409 3e1e80df6a42
--- a/src/Pure/Isar/skip_proof.ML	Sat Apr 16 15:25:25 2011 +0200
+++ b/src/Pure/Isar/skip_proof.ML	Sat Apr 16 15:47:52 2011 +0200
@@ -35,10 +35,10 @@
   (if Goal.future_enabled () then Goal.prove_future else Goal.prove) ctxt xs asms prop
     (fn args => fn st =>
       if ! quick_and_dirty
-      then cheat_tac (ProofContext.theory_of ctxt) st
+      then cheat_tac (Proof_Context.theory_of ctxt) st
       else tac args st);
 
 fun prove_global thy xs asms prop tac =
-  Drule.export_without_context (prove (ProofContext.init_global thy) xs asms prop tac);
+  Drule.export_without_context (prove (Proof_Context.init_global thy) xs asms prop tac);
 
 end;