Corrected call of SUBPROOF in coherent_tac that used wrong context.
authorberghofe
Tue, 23 Sep 2008 18:31:33 +0200
changeset 28339 6f6fa16543f5
parent 28338 e58ec46d50bc
child 28340 e8597242f649
Corrected call of SUBPROOF in coherent_tac that used wrong context.
src/Provers/coherent.ML
--- a/src/Provers/coherent.ML	Tue Sep 23 18:11:45 2008 +0200
+++ b/src/Provers/coherent.ML	Tue Sep 23 18:31:33 2008 +0200
@@ -223,7 +223,7 @@
          NONE => no_tac
        | SOME prf =>
            rtac (thm_of_cl_prf (ProofContext.theory_of context) concl [] prf) 1
-    end) ctxt 1) ctxt;
+    end) context 1) ctxt;
 
 fun coherent_meth rules ctxt =
   Method.METHOD (fn facts => coherent_tac (facts @ rules) ctxt 1);